Skip to content

Commit 06036d4

Browse files
committed
feat(app): Added 404 Page
1 parent 1791c6b commit 06036d4

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

src/pages/404.astro

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
import Head from "../components/Head.astro";
3+
import Navbar from "../components/Navbar.astro";
4+
import CUNE_LOGO from "../assets/cune-logo.png";
5+
import { Image } from "astro:assets";
6+
---
7+
8+
<!DOCTYPE html>
9+
<html lang="en">
10+
<Head title="CPT - Uh Oh.">
11+
<meta name="description" content="Looks like you're in the wrong place" />
12+
</Head>
13+
<body class="bg-primary">
14+
<Navbar />
15+
<main class="grid w-full h-[85vh] place-content-center text-light">
16+
<Image
17+
src={CUNE_LOGO}
18+
alt="CUNE Logo"
19+
width={CUNE_LOGO.width}
20+
height={CUNE_LOGO.height}
21+
/>
22+
<h1 class="text-6xl font-bold tracking-wide text-center italic">
23+
Uh Oh.
24+
</h1>
25+
<p class="text-6xl font-bold tracking-wide text-center">
26+
Looks like you found a page that's not ready yet. <br /><br /> Check
27+
back later!
28+
</p>
29+
<a
30+
class="bg-light text-dark py-3 px-5 rounded hover:bg-accent active:scale-95 transition-all duration-200 mx-auto text-6xl text-center font-bold tracking-wide mt-5"
31+
href="/">Back</a
32+
>
33+
</main>
34+
</body>
35+
</html>

0 commit comments

Comments
 (0)