import { Center, Stack, Text, Title } from "@mantine/core"; import { getScopedI18n } from "@homarr/translation/server"; export default async function NotFound() { const t = await getScopedI18n("management.notFound"); return (
{t("title")} {t("text")}
); }