import { getServerI18n } from "@/i18n"; import { Stack, Typography, Link } from "@mui/material"; import NextLink from "next/link"; export default async function NotFound() { const { t } = await getServerI18n("qcItem", "common"); return ( {t("Not Found")} {t("The edit qc item page was not found!")} {t("Return to all qc items")} ); }