import { motion } from 'framer-motion'; interface FeatureCardProps { title: string; description: string; imageSrc: string; imageAlt: string; href: string; } export const FeatureCard = ({ title, description, imageSrc, imageAlt, href }: FeatureCardProps) => { return (
{imageAlt}

{title}

{description}

); };