mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 08:25:21 -04:00
35 lines
780 B
TypeScript
35 lines
780 B
TypeScript
import Video from "../components/Video";
|
|
import Link from "../components/Link";
|
|
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Page Not Found",
|
|
description: null,
|
|
openGraph: {},
|
|
alternates: {
|
|
canonical: null,
|
|
},
|
|
};
|
|
|
|
const Page = () => {
|
|
return (
|
|
<>
|
|
<Video
|
|
src="https://ijyxfbpcm3itvdly.public.blob.vercel-storage.com/not-found-SAtLyNyc7gVhveYxr6o1ITd9CSXo5X.mp4"
|
|
autoPlay
|
|
className="aspect-[16/11] max-w-[480px]"
|
|
/>
|
|
|
|
<div className="mt-6 text-center">
|
|
<h1 className="my-2 text-3xl font-medium">Page Not Found</h1>
|
|
|
|
<p className="mt-4 mb-0 text-xl font-medium">
|
|
<Link href="/">Go home?</Link>
|
|
</p>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Page;
|