import type { NextPage } from "next"; import Head from "next/head"; import Link from "next/link"; import styles from "../styles/Errorpage.module.css"; const svg = ` 404 `; const Custom404: NextPage = () => { return <> Error 404 - c0ntroller.de
The site you requested could not be found.
> Back to the main page <
; }; export default Custom404;