update
This commit is contained in:
37
src/app/pages/Home/index.tsx
Normal file
37
src/app/pages/Home/index.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user