Files
nguyencongpc_nextjs/src/components/layout/home/index.tsx

38 lines
938 B
TypeScript
Raw Normal View History

2025-12-19 11:13:03 +07:00
import React from 'react';
import SliderHome from './SliderHome';
2025-12-19 13:42:52 +07:00
import BoxProductDeal from './BoxDeal';
2025-12-22 17:30:27 +07:00
import CategoryFeature from './CategoryFeature';
import BoxListCategory from './BoxCategory';
2025-12-23 15:29:31 +07:00
import BoxArticle from './BoxArticle';
import BoxArticleVideo from './BoxArticleVideo';
import BoxReviewCustomer from './BoxReviewCustomer';
2025-12-22 17:30:27 +07:00
2025-12-19 11:13:03 +07:00
const Home = () => {
return (
<div className="page-hompage mt-4">
<div className="container">
{/* slider */}
<SliderHome />
{/* deal */}
<BoxProductDeal />
2025-12-22 17:30:27 +07:00
{/* box danh mục nổi bật */}
<CategoryFeature />
{/* DANH SÁCH DANH MỤC */}
<BoxListCategory />
2025-12-23 15:29:31 +07:00
{/* tin tức công nghệ */}
<BoxArticle />
{/* tin tức video */}
<BoxArticleVideo />
{/* đánh giá từa khách hàng */}
<BoxReviewCustomer />
2025-12-19 11:13:03 +07:00
</div>
</div>
);
};
export default Home;