Files
mehraein-front/app/home/Home.tsx
T
hamid zarghami 36763aace0 home blog section
2026-07-19 15:35:37 +03:30

26 lines
810 B
TypeScript

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