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

404

{t('layout.pageNotFound')}

) }