import { motion } from 'framer-motion'; import { LucideIcon } from 'lucide-react'; interface FeatureCardProps { title: string; description: string; icon: LucideIcon; delay?: number; } export function FeatureCard({ title, description, icon: Icon, delay = 0 }: FeatureCardProps) { return (

{title}

{description}

); }