Skip to content

Commit faa5332

Browse files
authored
Create not-found.tsx (#168)
* Create not-found.tsx * Update not-found.tsx
1 parent 1faf34c commit faa5332

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

apps/web/src/app/not-found.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import Link from 'next/link'
2+
3+
// TODO: make this look better
4+
5+
export default function NotFound() {
6+
return (
7+
<div>
8+
<h2>Not Found</h2>
9+
<p>Could not find requested resource</p>
10+
<Link href="/">Return Home</Link>
11+
</div>
12+
)
13+
}
14+
15+
export const runtime = "edge";

0 commit comments

Comments
 (0)