link-stack/apps/link/pages/500.tsx
2023-05-24 20:27:57 +00:00

13 lines
245 B
TypeScript

import { FC } from "react";
import Head from "next/head";
import { Layout } from "components/Layout";
const FiveHundred: FC = () => (
<Layout>
<Head>
<title>Link Shell</title>
</Head>
</Layout>
);
export default FiveHundred;