"use client"; import { CheckCircle } from "lucide-react"; import { getWaitlistConfig } from "../../config/waitlist.config"; import { WaitlistForm } from "../forms/WaitlistForm"; export function WaitlistHeroSection() { const config = getWaitlistConfig(); return (
{/* Left Column - Content */}
{config.heroTitle && (

{config.heroTitle}

)} {config.heroSubtitle && (

{config.heroSubtitle}

)} {config.heroDescription &&

{config.heroDescription}

}
{/* Benefits */} {config.benefits && config.benefits.length > 0 && (
    {config.benefits.map((benefit, index) => (
  • {benefit}
  • ))}
)}
{/* Right Column - Form */}
); }