This commit is contained in:
2025-12-30 16:47:24 +07:00
parent 9fa4b50b68
commit 15240ff81f
65 changed files with 6550 additions and 217 deletions

View File

@@ -0,0 +1,37 @@
import React from 'react';
import SliderHome from './SliderHome';
import BoxProductDeal from './Deal';
import CategoryFeature from './CategoryFeature';
import BoxListCategory from './Category';
import BoxArticle from './Article';
import BoxArticleVideo from './ArticleVideo';
import BoxReviewCustomer from './ReviewCustomer';
const Home = () => {
return (
<div className="page-hompage mt-4">
<div className="container">
{/* slider */}
<SliderHome />
{/* deal */}
<BoxProductDeal />
{/* box danh mục nổi bật */}
<CategoryFeature />
{/* DANH SÁCH DANH MỤC */}
<BoxListCategory />
{/* tin tức công nghệ */}
<BoxArticle />
{/* tin tức video */}
<BoxArticleVideo />
{/* đánh giá từa khách hàng */}
<BoxReviewCustomer />
</div>
</div>
);
};
export default Home;