1- import { Bai_Jamjuree , Inter } from 'next/font/google' ;
1+ import { Bai_Jamjuree } from 'next/font/google' ;
22import NebulaLogo from 'src/app/nebula-logo' ;
33
44const baiJamjuree = Bai_Jamjuree ( { subsets : [ 'latin' ] , weight : '700' } ) ;
55
66export default function Footer ( ) {
7- return (
8- < footer className = "w-full border-none bg-orange-400 rounded-t-3xl py-4 text-center flex flex-col gap-10" >
9- < div className = "flex flex-row justify-center items-center gap-4 mb-2" >
10- < NebulaLogo className = "w-14 h-14" />
11- < div className = { `text-4xl text-white align-bottom ${ baiJamjuree . className } ` } > NEBULA LABS NOTEBOOK</ div >
12- </ div >
13- < div className = "flex flex-row justify-center items-center gap-30 mb-2 ml-20" >
14- < a href = ""
15- className = "text-white text-decoration-underline cursor-pointer text-2xl font-bold" > About Us
16- </ a >
7+ return (
8+ < footer className = "flex w-full flex-col gap-10 rounded-t-3xl border-none bg-orange-400 py-4 text-center" >
9+ < div className = "mb-2 flex flex-row items-center justify-center gap-4" >
10+ < NebulaLogo className = "h-14 w-14" />
11+ < div
12+ className = { `align-bottom text-4xl text-white ${ baiJamjuree . className } ` }
13+ >
14+ NEBULA LABS NOTEBOOK
15+ </ div >
16+ </ div >
17+ < div className = "mb-2 ml-20 flex flex-row items-center justify-center gap-30" >
18+ < a
19+ href = ""
20+ className = "text-decoration-underline cursor-pointer text-2xl font-bold text-white"
21+ >
22+ About Us
23+ </ a >
1724
18- < a href = "https://github.com/UTDNebula/utd-notebook"
19- className = "text-white text-decoration-underline cursor-pointer text-2xl font-bold" target = "_blank" rel = "noopener noreferrer" > GitHub
20- </ a >
25+ < a
26+ href = "https://github.com/UTDNebula/utd-notebook"
27+ className = "text-decoration-underline cursor-pointer text-2xl font-bold text-white"
28+ target = "_blank"
29+ rel = "noopener noreferrer"
30+ >
31+ GitHub
32+ </ a >
2133
22- < a href = "https://www.utdnebula.com/contact"
23- className = "text-white text-decoration-underline cursor-pointer text-2xl font-bold" target = "_blank" rel = "noopener noreferrer" > Contact
24- </ a >
25- </ div >
26- < div className = "bg-white h-0.5 w-6/13 mx-auto rounded-full" > </ div >
27- < div className = "text-white text-sm mb-2" > © 2023-2025 Nebula Labs Maintainers. Open-source under the MIT License.</ div >
28- </ footer >
29- ) ;
30- }
34+ < a
35+ href = "https://www.utdnebula.com/contact"
36+ className = "text-decoration-underline cursor-pointer text-2xl font-bold text-white"
37+ target = "_blank"
38+ rel = "noopener noreferrer"
39+ >
40+ Contact
41+ </ a >
42+ </ div >
43+ < div className = "mx-auto h-0.5 w-6/13 rounded-full bg-white" > </ div >
44+ < div className = "mb-2 text-sm text-white" >
45+ © 2023-2025 Nebula Labs Maintainers. Open-source under the MIT License.
46+ </ div >
47+ </ footer >
48+ ) ;
49+ }
0 commit comments