import { getPublicBranding } from "@/server/branding/runtime"; import { resolveRootLocale } from "@/server/i18n/resolver"; import { createTranslator } from "@/server/i18n/translator"; import Link from "next/link"; import { Button, Typography } from "poyraz-ui/atoms"; export default async function NotFoundPage() { const locale = await resolveRootLocale(); const t = createTranslator(locale.locale, ["common"]).t; const branding = getPublicBranding(); return (
404
{t("common.notFound.title")} {t("common.notFound.description")}
); }