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. + +
+ + +
+
+
+
+ +
+ ); +}