/** * Hero Section * Main hero section with headline, subheadline, CTAs, and gradient background */ 'use client'; import { Link } from '@/lib/i18n/routing'; import { motion } from 'framer-motion'; import { ArrowRight, Play } from 'lucide-react'; import { Button } from '@/components/ui/button'; interface HeroSectionProps { onOpenDemoModal: () => void; } export function HeroSection({ onOpenDemoModal }: HeroSectionProps) { return (
{/* Gradient Background */}
); }