"use client"; import type { HeroBlock } from "@/types/page"; export default function HeroBlockView({ title, subtitle, backgroundImage, ctaText, ctaLink }: HeroBlock) { return (

{title}

{subtitle &&

{subtitle}

} {ctaText && ( {ctaText} )}
); }