import { ChipLink } from '@sim/emcn' import type { Metadata } from 'next' import { LogoShell } from '@/app/(landing)/components' export const metadata: Metadata = { title: 'Page Not Found', robots: { index: false, follow: true }, } export default function NotFound() { return (

Page not found

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

Return home
) }