import Image from "next/image"; interface ContactHeroProps { title: string; subtitle?: string; image?: string; } export function ContactHero({ title, subtitle, image = "/img/6.png" }: ContactHeroProps) { return (
Partner With Us

{title}

{subtitle && (

{subtitle}

)}
); }