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

13 lines
243 B
TypeScript

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