Files
mehraein-front/app/home/Home.tsx
T
hamid zarghami a3626a5684 category section
2026-07-18 11:10:34 +03:30

16 lines
324 B
TypeScript

import BannerSection from "./components/BannerSection";
import CategorySection from "./components/CategorySection";
import StepSection from "./components/StepSection";
const Home = () => {
return (
<div>
<BannerSection />
<StepSection />
<CategorySection />
</div>
);
};
export default Home;