Files
hoanghapc_nextJs/src/components/home/index.tsx

24 lines
547 B
TypeScript
Raw Normal View History

2026-01-14 17:31:59 +07:00
import Slider from "./slider";
import Deal from "./deal";
2026-01-15 17:30:04 +07:00
import FeaturedProductCategories from "./featured-category";
2026-01-14 17:31:59 +07:00
import ProductCategories from "./product";
import Article from "./article";
2025-12-29 17:43:31 +07:00
2026-01-14 17:31:59 +07:00
export default function HomePage() {
2025-12-29 17:43:31 +07:00
return(
<div className="home-page !-mt-5 pt-6">
<div className="container">
<Slider />
<Deal />
<FeaturedProductCategories />
<ProductCategories />
<Article />
</div>
</div>
)
}