26 lines
810 B
TypeScript
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;
|