'use client' import { motion } from 'framer-motion' import { Play, MessageCircle, Pause } from 'lucide-react' import { Language } from '@/lib/types' import GradientText from '../ui/GradientText' interface IntroPresenterSlideProps { lang: Language onStartPresenter?: () => void isPresenting?: boolean } export default function IntroPresenterSlide({ lang, onStartPresenter, isPresenting }: IntroPresenterSlideProps) { const isDE = lang === 'de' return (
{isDE ? 'Ihr persoenlicher KI-Guide durch das BreakPilot ComplAI Pitch Deck. 15 Minuten, alle Fakten, jederzeit unterbrechbar.' : 'Your personal AI guide through the BreakPilot ComplAI pitch deck. 15 minutes, all facts, interruptible at any time.'}