From 2f98ea1f4797c129bbb3abc732412b38144bc63e Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:18:38 +0000 Subject: [PATCH] Update components/features.tsx --- components/features.tsx | 56 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 components/features.tsx 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} + +
+
+ ))} +
+
+
+ ); +}