import { useUITranslation } from '../../i18n/index.js'; interface NotFoundViewProps { } export function NotFoundView({ }: NotFoundViewProps) { const { t } = useUITranslation(); return (
{t('layout.pageNotFound')}