product item + product section

This commit is contained in:
hamid zarghami
2026-07-19 12:03:21 +03:30
parent 7bb9240f21
commit 9a58990cae
6 changed files with 81 additions and 3 deletions
+3 -1
View File
@@ -1,13 +1,15 @@
import BannerSection from "./components/BannerSection";
import CategorySection from "./components/CategorySection";
import ProductSection from "./components/ProductSection";
import StepSection from "./components/StepSection";
const Home = () => {
return (
<div>
<div className="pb-[120px]">
<BannerSection />
<StepSection />
<CategorySection />
<ProductSection />
</div>
);
};