Files
mehraein-front/app/home/Home.tsx
T
hamid zarghami 8ce8400902 step section
2026-07-14 16:53:04 +03:30

14 lines
238 B
TypeScript

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