import { Helmet } from "react-helmet-async"; import { useTranslation } from "react-i18next"; import { Button } from "@/components/buttons/Button"; import { Icons } from "@/components/Icon"; import { IconPill } from "@/components/layout/IconPill"; import { Navigation } from "@/components/layout/Navigation"; import { Title } from "@/components/text/Title"; import { Paragraph } from "@/components/utils/Text"; import { ErrorContainer, ErrorLayout } from "@/pages/layouts/ErrorLayout"; export function NotFoundPart() { const { t } = useTranslation(); return (
{t("notFound.badge")}
{t("notFound.badge")} {t("notFound.title")} {t("notFound.message")}
); }