import { Zap, Shield, Rocket } from "lucide-react" interface Feature { icon: React.ReactNode; titel: string; beschrijving: string; } const features: Feature[] = [ { icon: , titel: "Supersnel", beschrijving: "Bouw componenten in seconden met AI-powered code generation." }, { icon: , titel: "Betrouwbaar", beschrijving: "TypeScript en ESLint zorgen voor foutloze, veilige code." }, { icon: , titel: "Deploy Direct", beschrijving: "Push naar GitHub en je site is live op Vercel binnen minuten." } ]; export default function FeatureCards() { return (

Waarom Dit Project?

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

{feature.titel}

{feature.beschrijving}

))}
); }