"use client"; import ContentLockup from "./ContentLockup"; import HeroDecor from "./HeroDecor"; const HeroBanner = ({ title, subtitle, description, ctaText, ctaHref }) => { return (
{/* Frame container for content */}
{/* DECORATIONS (behind content) */} {/* Content lockup - Large variant */} {/* Hero Image Container */}
Hero illustration
); }; export default HeroBanner;