FPSMS-frontend
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

20 wiersze
583 B

  1. import { getServerI18n } from "@/i18n";
  2. import { Stack, Typography, Link } from "@mui/material";
  3. import NextLink from "next/link";
  4. export default async function NotFound() {
  5. const { t } = await getServerI18n("qcItem", "common");
  6. return (
  7. <Stack spacing={2}>
  8. <Typography variant="h4">{t("Not Found")}</Typography>
  9. <Typography variant="body1">
  10. {t("The edit qc item page was not found!")}
  11. </Typography>
  12. <Link href="/settings/qcItems" component={NextLink} variant="body2">
  13. {t("Return to all qc items")}
  14. </Link>
  15. </Stack>
  16. );
  17. }