This commit is contained in:
Chiayi (Aiden) Wu 2025-01-06 14:05:37 -08:00
parent c5e56a73b4
commit 82db701ee1

View file

@ -1,7 +1,22 @@
---
import Layout from "../layouts/Layout.astro";
import Link from "next/link";
---
<Layout>
<div>404 ERROR</div>
<div class = "w-fit h-screen flex flex-col items-center relative">
<img src = "/404.png" alt = "404 shing" class = "mr-[11%]">
<div class = "flex flex-col items-center absolute bottom-[27%]">
<p class = "font-extralight text-[1.2vw]">
Oops! You're Lost in the Circuit! 🔌⚡
</p>
<Link href = "/" className = "border-white/80 border-[0.12vw] rounded-[0.7vw] px-[8.5vw] py-[3%] font-extralight text-[1.2vw] mt-[3%] hover:text-ieee-yellow hover:border-ieee-yellow duration-300">
Go Back Home
</Link>
</div>
</div>
</Layout>