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

Page not found

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

Back to Home
); }