import { ReactNode } from "react"; import { useTranslation } from "react-i18next"; import { IconPatch } from "@/components/buttons/IconPatch"; import { Icons } from "@/components/Icon"; import { Navigation } from "@/components/layout/Navigation"; import { ArrowLink } from "@/components/text/ArrowLink"; import { Title } from "@/components/text/Title"; function NotFoundWrapper(props: { children?: ReactNode }) { return (
{props.children}
); } export function NotFoundMedia() { const { t } = useTranslation(); return (
{t("notFound.media.title")}

{t("notFound.media.description")}

); } export function NotFoundProvider() { const { t } = useTranslation(); return (
{t("notFound.provider.title")}

{t("notFound.provider.description")}

); } export function NotFoundPage() { const { t } = useTranslation(); return ( {t("notFound.page.title")}

{t("notFound.page.description")}

); }