1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 09:25:22 -04:00
jarv.is/app/not-found.tsx

35 lines
851 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
style={{ maxWidth: 480, aspectRatio: "16/11" }}
/>
<div style={{ textAlign: "center", marginTop: "1.5em" }}>
<h1 style={{ margin: "0.5em 0", fontSize: "2.2em", fontWeight: 500, lineHeight: 1 }}>Page Not Found</h1>
<Link href="/" style={{ fontSize: "1.2em", fontWeight: 500 }}>
Go home?
</Link>
</div>
</>
);
};
export default Page;