import { Card, CardContent } from '@/components/ui/card' import { LucideIcon } from 'lucide-react' interface ServiceCardProps { icon: LucideIcon title: string description: string } export function ServiceCard({ icon: Icon, title, description }: ServiceCardProps) { return (

{title}

{description}

) }