import { Link } from 'react-router-dom'; import { useTranslation } from 'react-i18next'; import { Helmet } from 'react-helmet-async'; import { Home } from 'lucide-react'; export default function NotFoundPage() { const { t } = useTranslation(); return ( <> 404 — {t('common.appName')}

404

Page Not Found

The page you're looking for doesn't exist or has been moved.

{t('common.home')}
); }