import type { Metadata } from "next" import Link from "next/link" // A 404 already returns the right status code, but without its own title it // would surface the site-wide default title in tabs, share previews and logs. // Next.js emits its own `noindex` for not-found, so no robots field here — // adding one only produces a second, redundant . export const metadata: Metadata = { title: "Page not found", } export default function NotFound() { return (

404

Page not found

Go home
) }