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

32 lines
667 B
TypeScript

import Link from "../components/Link";
import Video from "../components/Video";
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "404 Not Found",
description: null,
openGraph: {},
alternates: {
canonical: null,
},
};
export default async function Page() {
return (
<div style={{ textAlign: "center" }}>
<Video
src={["/static/not-found/angry-panda.webm", "/static/not-found/angry-panda.mp4"]}
autoplay
responsive={false}
style={{
maxWidth: "400px",
}}
/>
<h1>404: Page Not Found 😢</h1>
<Link href="/">Go home?</Link>
</div>
);
}