aboutsummaryrefslogtreecommitdiff
path: root/app/not-found.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-07-14 18:36:04 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-07-14 18:36:04 -0400
commit189edd99b92244e342a3a7af1d7699525d72d965 (patch)
treee0aec0a977fea387fd0034ed23bbad10b64429df /app/not-found.js
parent3a684e3505b5fb5482961ab63f1590f872b9a9fe (diff)
downloadalure-website-189edd99b92244e342a3a7af1d7699525d72d965.tar.gz
alure-website-189edd99b92244e342a3a7af1d7699525d72d965.tar.bz2
alure-website-189edd99b92244e342a3a7af1d7699525d72d965.zip
New homepage and added exploreralure
Diffstat (limited to 'app/not-found.js')
-rw-r--r--app/not-found.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/not-found.js b/app/not-found.js
new file mode 100644
index 0000000..a3a3571
--- /dev/null
+++ b/app/not-found.js
@@ -0,0 +1,11 @@
+import Link from "next/link";
+
+export default function NotFound() {
+ return (
+ <main className="flex flex-col justify-center context-center text-center p-2">
+ <h1 className="text-2xl font-bold">404</h1>
+ <h1 className="text-2xl font-bold">The page you are looking for does not exist.</h1>
+ <Link href='/'><p className="text-cyan-600 hover:text-cyan-500">Head back to the home page</p></Link>
+ </main>
+ )
+}