We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c01405d commit 0d3b5a5Copy full SHA for 0d3b5a5
app/not-found.js
@@ -1,10 +1,11 @@
1
import Link from 'next/link'
2
3
export default function NotFound() {
4
- return <div>
+ return <div className="flex flex-col items-center justify-center h-screen">
5
<h1>Not found - 404</h1>
6
- <div>
7
- <Link href="/">Go back to Home</Link>
+ <p>Sorry, the page you are looking for does not exist.</p>
+ <div className="mt-4">
8
+ <Link href="/">Click here to go back to the main page</Link>
9
</div>
10
11
}
0 commit comments