'use client' import { motion } from 'framer-motion' import { Language } from '@/lib/types' import { t } from '@/lib/i18n' import { ArrowRight } from 'lucide-react' import GradientText from '../ui/GradientText' import BrandName from '../ui/BrandName' interface CoverSlideProps { lang: Language onNext: () => void } export default function CoverSlide({ lang, onNext }: CoverSlideProps) { const i = t(lang) return (
{/* Logo / Brand */}
{/* Company Name */} BreakPilot{' '} {/* Tagline */} {i.cover.tagline} {/* Subtitle */} {i.cover.subtitle} {/* CTA */} {i.cover.cta}
) }