import Video from "../components/Video"; import Link from "../components/Link"; import type { Metadata } from "next"; import notFoundVideo from "./not-found.mp4"; export const metadata: Metadata = { title: "Page Not Found", description: null, openGraph: {}, alternates: { canonical: null, }, }; const Page = () => { return (
); }; export default Page;