import Link from "next/link"; import type { Metadata } from "next"; export const metadata: Metadata = { title: "Page Not Found", }; export default function NotFound() { return (

Page not found

The page you’re looking for doesn’t exist or has been moved.

Go home
); }