import type { LucideIcon } from "lucide-react" import { Button } from "@/components/ui/button" interface FeatureCardProps { title: string description: string link: string icon: LucideIcon } const FeatureCard = ({ title, description, link, icon: Icon }: FeatureCardProps) => { return (
) } export default FeatureCard