File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments