import { Link } from "react-router-dom"; import { useTranslation } from "@/contexts/i18n-context"; export function NotFoundPage() { const { t } = useTranslation(); return (

404

{t.common.pageNotFound}

{t.common.pageNotFoundDescription}

{t.common.goHome}
); }