import { Check } from "lucide-react" import { Card, CardContent } from "@/components/ui/card" interface FeatureCardProps { title: string description: string } export function FeatureCard({ title, description }: FeatureCardProps) { return (

{title}

{description}

) }