Skip to content

Commit 0d3b5a5

Browse files
committed
Update not-found
1 parent c01405d commit 0d3b5a5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

app/not-found.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import Link from 'next/link'
22

33
export default function NotFound() {
4-
return <div>
4+
return <div className="flex flex-col items-center justify-center h-screen">
55
<h1>Not found - 404</h1>
6-
<div>
7-
<Link href="/">Go back to Home</Link>
6+
<p>Sorry, the page you are looking for does not exist.</p>
7+
<div className="mt-4">
8+
<Link href="/">Click here to go back to the main page</Link>
89
</div>
910
</div>
1011
}

0 commit comments

Comments
 (0)