import { NextPage } from "next"; import { NextSeo } from "next-seo"; import Box from "@mui/material/Box"; import Typography from "@mui/material/Typography"; import Layout from "@components/Layout"; const NotFound: NextPage = () => { return ( <> Page not found The page may have been moved or deleted. ); }; export default NotFound;