14 lines
243 B
TypeScript
14 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;
|