import Link from 'next/link'; import Image from 'next/image'; import { Button } from '@/components/ui/button'; interface HeroProps { title: string; subtitle: string; ctaText: string; ctaHref: string; imageSrc: string; imageAlt: string; reverse?: boolean; } export function Hero({ title, subtitle, ctaText, ctaHref, imageSrc, imageAlt, reverse = false, }: HeroProps) { return (
Book Your Consultation

{title}

{subtitle}

Learn more
{imageAlt}
); }