'use client' import { useLanguage } from '@/lib/LanguageContext' import { WebsiteContent } from '@/lib/content-types' import Link from 'next/link' import PricingSection from './PricingSection' interface LandingContentProps { content: WebsiteContent } export default function LandingContent({ content }: LandingContentProps) { const { t, isRTL } = useLanguage() return ( <> {/* Hero Section */}
{t('hero_badge')}

{t('hero_title')}{' '} {t('hero_highlight1')},
{t('hero_highlight2')}

{t('hero_subtitle')}

{t('hero_cta_primary')} {t('hero_cta_secondary')}

{t('hero_cta_hint')}

{/* Social Proof */}

Vertraut von Lehrkraeften an ueber 50 Schulen

Gymnasium A
Realschule B
Gesamtschule C
Berufsschule D
{/* Features Section */}

{t('features_title')}

{t('features_subtitle')}

{/* AI Feature */}
✏️

{t('feature_ai_title')}

{t('feature_ai_desc')}

{/* Templates Feature */}
📄

{t('feature_templates_title')}

{t('feature_templates_desc')}

{/* Analytics Feature */}
📊

{t('feature_analytics_title')}

{t('feature_analytics_desc')}

{/* GDPR Feature */}
🔒

{t('feature_gdpr_title')}

{t('feature_gdpr_desc')}

{/* Team Feature */}
👥

{t('feature_team_title')}

{t('feature_team_desc')}

{/* Mobile Feature */}
📱

{t('feature_mobile_title')}

{t('feature_mobile_desc')}

{/* How it Works */}

{t('how_title')}

{t('how_subtitle')}

{/* Step 1 */}
1

{t('how_step1_title')}

{t('how_step1_desc')}

{/* Step 2 */}
2

{t('how_step2_title')}

{t('how_step2_desc')}

{/* Step 3 */}
3

{t('how_step3_title')}

{t('how_step3_desc')}

{/* Testimonial */}
{content.testimonial.quote}
👩‍🏫
{content.testimonial.author}
{content.testimonial.role}
{/* Pricing Section */} {/* Foerderantrag Section */}

{t('fa_section_title')}

{t('fa_section_subtitle')}

{t('fa_preset_basic_name')}

{t('fa_preset_basic_desc')}

{t('fa_preset_basic_budget')}

{t('fa_preset_cluster_name')}

{t('fa_preset_cluster_desc')}

{t('fa_preset_cluster_budget')}

{t('fa_preset_custom_name')}

{t('fa_preset_custom_desc')}

{t('fa_preset_custom_budget')}

{t('fa_section_cta')}
{/* Trust Section */}
{t('trust_gdpr')}
{t('trust_gdpr_label')}
{t('trust_trial')}
{t('trust_trial_label')}
{t('trust_made')}
{t('trust_made_label')}
{/* FAQ Section */}

{t('faq_title')}

{content.faq.slice(0, 4).map((item, index) => (

{item.question}

{item.answer.map((paragraph, pIndex) => (

{paragraph}

))}
))}
{t('faq_show_all')} {isRTL ? '←' : '→'}
{/* Final CTA */}

{t('cta_title')}

{t('cta_subtitle')}

{t('cta_button')}
) }