Files
nguyencongpc_nextjs/src/components/layout/home/index.tsx
2025-12-22 17:30:27 +07:00

26 lines
593 B
TypeScript

import React from 'react';
import SliderHome from './SliderHome';
import BoxProductDeal from './BoxDeal';
import CategoryFeature from './CategoryFeature';
import BoxListCategory from './BoxCategory';
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 />
</div>
</div>
);
};
export default Home;