import { ArrowRight } from "lucide-react"; import { ImageWithFallback } from "./figma/ImageWithFallback"; import { BrandedTag } from "./about/BrandedTag"; import { PrimaryCTAButton } from "./PrimaryCTAButton"; import { navigateTo } from "./Router"; export function CTABannerSection() { return (
{/* Background Image */}
{/* Subtle dark overlay for overall image */}
{/* Gradient overlay for better text readability */}
{/* Content Container */}
{/* CTA Content Block */}
{/* Branded Tag */} {/* Main Headline */}

Ready to transform your leadership? {" "}Get in touch{" "} to start your development journey now.

{/* CTA Button - Updated to redirect to contact page */} navigateTo('/contact?topic=consulting')} ariaLabel="Schedule a consultation with our leadership experts" className="cta-banner-yellow" /> {/* Supporting Text */}

Connect with our leadership experts to discuss your organization's specific development needs.

); }