18 lines
430 B
TypeScript
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;
|