import React from 'react'; import { LucideIcon } from 'lucide-react'; interface ServiceCardProps { title: string; description: string; Icon: LucideIcon; } export const ServiceCard: React.FC = ({ title, description, Icon }) => { return (

{title}

{description}

); };