diff --git a/components/features.tsx b/components/features.tsx new file mode 100644 index 0000000..909e176 --- /dev/null +++ b/components/features.tsx @@ -0,0 +1,56 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; +import { CheckCircle, ShieldCheck, ShoppingBag, Users } from "lucide-react"; + +const features = [ + { + title: "Verified Sellers", + description: "Every seller is manually verified by our admin team to ensure quality and authenticity.", + icon: , + }, + { + title: "Support Local", + description: "Directly support housewives and independent women artists in your community.", + icon: , + }, + { + title: "Unique Products", + description: "Discover one-of-a-kind handmade items that you won't find in big-box stores.", + icon: , + }, + { + title: "Secure Platform", + description: "Safe and secure transactions for both buyers and sellers with dedicated support.", + icon: , + }, +]; + +export function Features() { + return ( + + + + Why Choose HerCraft? + + We bridge the gap between talented women creators and conscious consumers who want to make a difference. + + + + {features.map((feature, index) => ( + + + {feature.icon} + {feature.title} + + {feature.description} + + + + ))} + + + + ); +}