forked from railwayapp/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.tsx
More file actions
32 lines (28 loc) · 721 Bytes
/
Copy path404.tsx
File metadata and controls
32 lines (28 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import React from "react";
import "twin.macro";
import { Link } from "../components/Link";
import { SEO } from "../components/SEO";
const NotFoundPage: React.FC = () => (
<>
<SEO title="Not Found" />
<div tw="prose">
<h1>Page not found</h1>
<p>Maybe you were looking for one of the following</p>
<ul>
<li>
<Link href="/">Home</Link>
</li>
<li>
<Link href="/getting-started">Getting Started</Link>
</li>
<li>
<Link href="/develop/cli">CLI Quick Start</Link>
</li>
<li>
<Link href="/deploy/railway-up">Railway Up</Link>
</li>
</ul>
</div>
</>
);
export default NotFoundPage;