From 1e3b82844308b9e5dbb0cb79f6b7cdd09633d1ba Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:18:22 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 52 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..50d7938 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,52 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { motion } from "framer-motion"; + +export function Hero() { + return ( +
+
+
+
+
+ +
+ + + Empowering Women Through Creativity + + + + + A dedicated marketplace for housewives and women artists to showcase their talent, sell unique products, and grow their local brands. + + + + + + +
+
+
+ ); +}