'use client'; import { motion } from 'framer-motion'; import { Language } from '@/lib/types'; import GradientText from '../ui/GradientText'; import FadeInView from '../ui/FadeInView'; interface AppendixSlideProps { lang: Language; } export default function AppendixSlide({ lang }: AppendixSlideProps) { const content = { de: { title: 'Appendix', subtitle: 'Deep Dive — Technologie, Compliance & Strategie', detailInfo: '14 Detailfolien für Investoren', }, en: { title: 'Appendix', subtitle: 'Deep Dive — Technology, Compliance & Strategy', detailInfo: '14 detail slides for investors', }, }; const t = content[lang]; return (