From 021983e7542f2c9526d3397ceacd6b76bf9a594a Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:18:33 +0000 Subject: [PATCH] Update app/page.tsx --- app/page.tsx | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 app/page.tsx diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..061cce6 --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,45 @@ +import { Hero } from "@/components/hero"; +import { Features } from "@/components/features"; +import { ProductGrid } from "@/components/product-grid"; +import { Footer } from "@/components/footer"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; + +export default function Home() { + return ( +
+ + + + + {/* Seller CTA Section */} +
+
+ + + +
+ +
+ Ready to share your talent with the world? + + Join hundreds of women who are turning their passion into a business. Our admin team will help you get verified and set up your shop in no time. + +
+ + +
+
+
+
+ +
+ ); +}