aboutsummaryrefslogtreecommitdiff
path: root/pages/404.js
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-04-11 23:23:29 +0700
committerFactiven <[email protected]>2023-04-11 23:23:29 +0700
commit1fcdd9f7d859b925bf92265f441655d5522e351c (patch)
tree86391522f6fcc70d105f7e796a9f91d132ee4a29 /pages/404.js
parentInitial commit (diff)
downloadmoopa-1fcdd9f7d859b925bf92265f441655d5522e351c.tar.xz
moopa-1fcdd9f7d859b925bf92265f441655d5522e351c.zip
initial commit
Diffstat (limited to 'pages/404.js')
-rw-r--r--pages/404.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/pages/404.js b/pages/404.js
new file mode 100644
index 0000000..8b91a69
--- /dev/null
+++ b/pages/404.js
@@ -0,0 +1,25 @@
+import Head from "next/head";
+import Footer from "../components/footer";
+import Navbar from "../components/navbar";
+
+export default function Custom404() {
+ return (
+ <>
+ <Head>
+ <title>Not Found</title>
+ <meta name="about" content="About this web" />
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <link rel="icon" href="/c.svg" />
+ </Head>
+ <Navbar className="dark:bg-black" />
+ <div className="flex h-[800px] w-screen items-center justify-center gap-10 bg-slate-50 text-2xl dark:bg-[#121212]">
+ <div className="flex items-center gap-8 font-karla font-semibold">
+ <h1>404</h1>
+ <div className="h-[45px] w-[2px] bg-black dark:bg-white" />
+ <h1>Nothing to see here.</h1>
+ </div>
+ </div>
+ <Footer />
+ </>
+ );
+}