import { useTranslations } from "next-intl"; import Image from "next/image"; import Link from "next/link"; export const runtime = "edge"; export default function NotFoundPage() { const t = useTranslations("NotFoundPage"); return (
TARDIS

{t("h1_490-590_404NotFound")}

{t("p_601-665_TARDISERROR")}

{t("Link_676-775_Doctor")}
); }