import * as React from 'react'; import Link from 'next/link'; import { Reveal } from '../Reveal'; interface ServiceCardProps { title: string; description: string; linkHref?: string; linkLabel?: string; delay?: number; } export const ServiceCard: React.FC = ({ title, description, linkHref, linkLabel, delay = 0, }) => { return (
{/* Decorative Corner */}
{/* Decorative background text */}
{title.charAt(0)}

{title}

{description}

{linkHref && linkLabel && ( {linkLabel}
)}
); };