import Link from 'next/link'; import Image from 'next/image'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { ArrowRight } from 'lucide-react'; interface ServiceCardProps { title: string; description: string; image: string; imageAlt: string; href: string; features?: string[]; } export function ServiceCard({ title, description, image, imageAlt, href, features }: ServiceCardProps) { return (
{imageAlt}
{title} {description} {features && ( )}
); }