This commit is contained in:
2025-12-22 17:30:27 +07:00
parent 82b718bea2
commit 194de99b62
20 changed files with 2706 additions and 47 deletions

View File

@@ -1,6 +1,9 @@
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">
@@ -9,6 +12,11 @@ const Home = () => {
<SliderHome />
{/* deal */}
<BoxProductDeal />
{/* box danh mục nổi bật */}
<CategoryFeature />
{/* DANH SÁCH DANH MỤC */}
<BoxListCategory />
</div>
</div>
);