import React from 'react'; import { YStack } from '@tamagui/stacks'; import { SizableText as Text } from '@tamagui/text'; import { useTranslation } from '@/guest/i18n/useTranslation'; export default function NotFoundScreen() { const { t } = useTranslation(); return ( {t('notFound.title', 'Seite nicht gefunden')} {t('notFound.description', 'Die Seite konnte nicht gefunden werden.')} ); }