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
31 lines (27 loc) · 727 Bytes
/
Copy path404.tsx
File metadata and controls
31 lines (27 loc) · 727 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
import React from "react";
import { Page } from "../layouts/Page";
import "twin.macro";
import { Link } from "../components/Link";
const NotFoundPage: React.FC = () => (
<Page 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="/cli/quick-start">CLI Quick Start</Link>
</li>
<li>
<Link href="/deployment/up">Railway Up</Link>
</li>
</ul>
</div>
</Page>
);
export default NotFoundPage;