Guest PWA vollständig lokalisiert

This commit is contained in:
Codex Agent
2025-10-17 15:00:07 +02:00
parent bd38decc23
commit 25e8f0511b
26 changed files with 1464 additions and 588 deletions

View File

@@ -1,11 +1,12 @@
import React from 'react';
import { Page } from './_util';
import { useTranslation } from '../i18n/useTranslation';
export default function NotFoundPage() {
const { t } = useTranslation();
return (
<Page title="Nicht gefunden">
<p>Die Seite konnte nicht gefunden werden.</p>
<Page title={t('notFound.title')}>
<p>{t('notFound.description')}</p>
</Page>
);
}