import { Metadata } from 'next'; import Link from 'next/link'; import React from 'react'; export const metadata: Metadata = { title: 'Error 404', }; const NotFound = () => { return (
404 404

The page you requested was not found!

Home
); }; export default NotFound;