import type { Metadata } from 'next'; import Link from 'next/link'; export const metadata: Metadata = { title: 'Page Not Found – Spanglish', description: 'The page you are looking for could not be found.', robots: { index: false, follow: true, }, }; export default function NotFound() { return (

404

Page Not Found

The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.

Go Home View Events
); }