Skip to content

Commit 9becf67

Browse files
committed
Implement not found page (#64)
Signed-off-by: Dae❤️ <74119677+daeisbae@users.noreply.github.com>
1 parent a56ad5c commit 9becf67

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { JSX } from 'react'
2+
import React from 'react'
3+
4+
export default function NotFound() {
5+
6+
return (
7+
<div>
8+
<h1>The repository is not created yet</h1>
9+
</div>
10+
)
11+
}

src/app/not-found.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export default function NotFound() {
2+
return (
3+
<div>
4+
<h1>
5+
404 - Page Not Found
6+
</h1>
7+
</div>
8+
)
9+
}

0 commit comments

Comments
 (0)