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

29 lines
616 B
TypeScript

import Image from "../components/Image";
import Link from "../components/Link";
import type { Metadata } from "next";
import notFoundGif from "./not-found.gif";
export const metadata: Metadata = {
title: "Page Not Found",
description: null,
openGraph: {},
alternates: {
canonical: null,
},
};
const Page = () => {
return (
<div style={{ textAlign: "center" }}>
<Image src={notFoundGif} alt="Angry panda" placeholder="empty" unoptimized />
<h1 style={{ margin: "0.2em auto" }}>Page Not Found 😢</h1>
<Link href="/">Go home?</Link>
</div>
);
};
export default Page;