'use client'; import { motion } from 'framer-motion'; import { ChevronRight } from 'lucide-react'; import { ReactNode } from 'react'; interface ServiceCardProps { title: string; description: string; bullets: string[]; index: number; children?: ReactNode; } export const ServiceCard = ({ title, description, bullets, index, children }: ServiceCardProps) => { return (

{title}

{description}

{children &&
{children}
}
); };