Services: Admin-Lehrer, Backend-Lehrer, Studio v2, Website, Klausur-Service, School-Service, Voice-Service, Geo-Service, BreakPilot Drive, Agent-Core Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
110 lines
3.9 KiB
TypeScript
110 lines
3.9 KiB
TypeScript
'use client'
|
|
|
|
import Link from 'next/link'
|
|
import { useLanguage } from '@/lib/LanguageContext'
|
|
import { useTheme } from '@/lib/ThemeContext'
|
|
import { Footer } from '@/components/Footer'
|
|
|
|
export default function ImpressumPage() {
|
|
const { t } = useLanguage()
|
|
const { isDark } = useTheme()
|
|
|
|
return (
|
|
<div className={`min-h-screen flex flex-col ${
|
|
isDark
|
|
? 'bg-gradient-to-br from-indigo-900 via-purple-900 to-pink-800'
|
|
: 'bg-gradient-to-br from-slate-100 via-blue-50 to-indigo-100'
|
|
}`}>
|
|
<div className="flex-1 p-8">
|
|
<div className="max-w-4xl mx-auto">
|
|
{/* Back Link */}
|
|
<Link
|
|
href="/"
|
|
className={`inline-flex items-center gap-2 mb-8 transition-colors ${
|
|
isDark ? 'text-white/60 hover:text-white' : 'text-slate-600 hover:text-slate-900'
|
|
}`}
|
|
>
|
|
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 19l-7-7 7-7" />
|
|
</svg>
|
|
{t('back_to_selection')}
|
|
</Link>
|
|
|
|
{/* Content Card */}
|
|
<div className={`backdrop-blur-xl border rounded-3xl p-8 ${
|
|
isDark
|
|
? 'bg-white/10 border-white/20'
|
|
: 'bg-white/70 border-black/10 shadow-lg'
|
|
}`}>
|
|
<h1 className={`text-3xl font-bold mb-8 ${isDark ? 'text-white' : 'text-slate-900'}`}>
|
|
{t('imprint')}
|
|
</h1>
|
|
|
|
<div className={`space-y-6 ${isDark ? 'text-white/80' : 'text-slate-700'}`}>
|
|
<section>
|
|
<h2 className={`text-xl font-semibold mb-3 ${isDark ? 'text-white' : 'text-slate-900'}`}>
|
|
Angaben gemäß § 5 TMG
|
|
</h2>
|
|
<p>
|
|
BreakPilot GmbH<br />
|
|
Musterstraße 123<br />
|
|
12345 Musterstadt<br />
|
|
Deutschland
|
|
</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className={`text-xl font-semibold mb-3 ${isDark ? 'text-white' : 'text-slate-900'}`}>
|
|
Kontakt
|
|
</h2>
|
|
<p>
|
|
Telefon: +49 (0) 123 456789<br />
|
|
E-Mail: info@breakpilot.de
|
|
</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className={`text-xl font-semibold mb-3 ${isDark ? 'text-white' : 'text-slate-900'}`}>
|
|
Vertretungsberechtigte Geschäftsführer
|
|
</h2>
|
|
<p>Max Mustermann</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className={`text-xl font-semibold mb-3 ${isDark ? 'text-white' : 'text-slate-900'}`}>
|
|
Registereintrag
|
|
</h2>
|
|
<p>
|
|
Eintragung im Handelsregister<br />
|
|
Registergericht: Amtsgericht Musterstadt<br />
|
|
Registernummer: HRB 12345
|
|
</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className={`text-xl font-semibold mb-3 ${isDark ? 'text-white' : 'text-slate-900'}`}>
|
|
Umsatzsteuer-ID
|
|
</h2>
|
|
<p>
|
|
Umsatzsteuer-Identifikationsnummer gemäß § 27 a Umsatzsteuergesetz:<br />
|
|
DE 123456789
|
|
</p>
|
|
</section>
|
|
|
|
<div className={`mt-8 p-4 rounded-2xl ${
|
|
isDark ? 'bg-yellow-500/20 border border-yellow-500/30' : 'bg-yellow-50 border border-yellow-200'
|
|
}`}>
|
|
<p className={`text-sm ${isDark ? 'text-yellow-200' : 'text-yellow-800'}`}>
|
|
Hinweis: Dies ist ein Platzhalter. Bitte ersetzen Sie diese Angaben durch Ihre tatsächlichen Unternehmensdaten.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|