import { personalConfig } from '../config/personal'; import { useLanguage } from '../contexts/LanguageContext'; import { PageSeo } from '../components/PageSeo'; export default function ImprintPage() { const { texts: allTexts } = useLanguage(); const texts = allTexts.imprint; return (

{texts.title}

{texts.subtitle}

{texts.companyInfoTitle}

Name: {personalConfig.name}

Adresse:

{texts.address.street}

{texts.address.city}

{texts.address.country}

{texts.umsatzsteuerID || texts.vatID}

{texts.businessRegistrationTitle}

{texts.businessRegistration.title}

Datum der Erteilung: {texts.businessRegistration.dateIssued}

Erteilt von: {texts.businessRegistration.issuedBy}

{texts.businessRegistration.authority}

{texts.contactTitle}

E-Mail: {personalConfig.email.full}

Telefon: {texts.contact.phone}

{texts.responsibilityTitle}

{personalConfig.name}

{texts.address.street}

{texts.address.city}

{texts.disclaimerTitle}

{texts.contentLiabilityTitle}

{texts.contentLiabilityText.map((text: string) => (

{text}

))}

{texts.copyrightTitle}

{texts.copyrightText.map((text: string) => (

{text}

))}
); }