Files
mehraein-front/app/home/Home.tsx
T
2026-07-19 12:03:21 +03:30

18 lines
430 B
TypeScript

import BannerSection from "./components/BannerSection";
import CategorySection from "./components/CategorySection";
import ProductSection from "./components/ProductSection";
import StepSection from "./components/StepSection";
const Home = () => {
return (
<div className="pb-[120px]">
<BannerSection />
<StepSection />
<CategorySection />
<ProductSection />
</div>
);
};
export default Home;