import * as React from 'react'; import type { Metadata } from 'next'; import RouterLink from 'next/link'; import Box from '@mui/material/Box'; import Button from '@mui/material/Button'; import Stack from '@mui/material/Stack'; import Typography from '@mui/material/Typography'; import { ArrowLeftIcon } from '@phosphor-icons/react/dist/ssr/ArrowLeft'; import { config } from '@/config'; import { paths } from '@/paths'; export const metadata = { title: `Not found | Errors | ${config.site.name}` } satisfies Metadata; export default function NotFound(): React.JSX.Element { return ( 404: The page you are looking for isn't here You either tried some shady route or you came here by mistake. Whichever it is, try using the navigation ); }