23 lines
529 B
TypeScript
23 lines
529 B
TypeScript
|
|
import Slider from "./Slider";
|
||
|
|
import Deal from "./Deal";
|
||
|
|
import FeaturedProductCategories from "./Category";
|
||
|
|
import ProductCategories from "./Product";
|
||
|
|
import Article from "./Article";
|
||
|
|
|
||
|
|
export default function Home() {
|
||
|
|
return(
|
||
|
|
<div className="home-page !-mt-5 pt-6">
|
||
|
|
<div className="container">
|
||
|
|
<Slider />
|
||
|
|
|
||
|
|
<Deal />
|
||
|
|
|
||
|
|
<FeaturedProductCategories />
|
||
|
|
|
||
|
|
<ProductCategories />
|
||
|
|
|
||
|
|
<Article />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|