import { motion } from "framer-motion"; import { Wrench, Shield, Zap } from "lucide-react"; import { GridPattern } from "./GridPattern"; const features = [ { icon: Wrench, title: "24+ Years of Product Engineering", description: "Deep expertise in building scalable, production-ready solutions" }, { icon: Shield, title: "100% Project Ownership & IP Transfer", description: "Complete intellectual property rights and full project ownership" }, { icon: Zap, title: "Agile, Transparent, and Outcome-Driven", description: "Fast delivery with clear communication and measurable results" }, ]; const FeatureCard = ({ feature, index }: { feature: typeof features[0]; index: number }) => { const Icon = feature.icon; return (

{feature.title}

{feature.description}

); }; export const WhyChooseWDI = () => { return (

Why Leading Startups Choose WDI

{features.map((feature, index) => ( ))}
); };