@@ -35,11 +35,11 @@ const footerNav = {
3535
3636export function Footer ( ) {
3737 return (
38- < footer className = "bg-neutral-100 dark:bg-neutral-900 pt-16 pb-10 sm:pt-20 md:pt-24 xl:pt-28" >
38+ < footer className = "bg-neutral-100 pt-16 pb-10 sm:pt-20 md:pt-24 xl:pt-28 dark:bg-neutral-900 " >
3939 < div className = "mx-auto max-w-screen-xl px-4 sm:px-6 md:px-8" >
4040 { /* Navigation Links */ }
41- < div className = "grid grid-cols-2 sm :grid-cols-2 md:grid-cols-3 lg:grid-cols-6 gap-8 pb-14 sm:pb-20 text-sm font-medium " >
42- < div className = "flex flex-col items-start col-span-2 sm:col-span-2 gap-y-6 " >
41+ < div className = "grid grid-cols-2 gap-8 pb-14 text-sm font-medium sm :grid-cols-2 sm:pb-20 md:grid-cols-3 lg:grid-cols-6" >
42+ < div className = "col-span-2 flex flex-col items-start gap-y-6 sm:col-span-2" >
4343 < Logo className = "h-8 w-auto" />
4444 < p className = "text-muted-foreground" >
4545 High quality Java coding education maintained by an open source
@@ -49,34 +49,34 @@ export function Footer() {
4949 < Link
5050 href = "https://github.com/javaistic/javaistic"
5151 aria-label = "GitHub"
52- className = "transition-colors duration-200 ease-in-out text-muted-foreground hover:text-[#181717] dark:hover:text-white"
52+ className = "text-muted-foreground transition-colors duration-200 ease-in-out hover:text-[#181717] dark:hover:text-white"
5353 >
5454 < GitHubIcon className = "h-5 w-5" />
5555 </ Link >
5656 < Link
5757 href = "/discord"
5858 aria-label = "Discord"
59- className = "transition-colors duration-200 ease-in-out text-muted-foreground hover:text-[#5865F2]"
59+ className = "text-muted-foreground transition-colors duration-200 ease-in-out hover:text-[#5865F2]"
6060 >
6161 < DiscordIcon className = "h-5 w-5" />
6262 </ Link >
6363 < Link
6464 href = "https://x.com/javaistic"
6565 aria-label = "X (formerly Twitter)"
66- className = "transition-colors duration-200 ease-in-out text-muted-foreground hover:text-foreground "
66+ className = "text-muted-foreground hover:text-foreground transition-colors duration-200 ease-in-out"
6767 >
6868 < TwitterIcon className = "h-5 w-5" />
6969 </ Link >
7070 < Link
7171 href = "https://opencollective.com/javaistic"
7272 aria-label = "Open Collective"
73- className = "transition-colors duration-200 ease-in-out text-muted-foreground hover:text-[#7FADF2]"
73+ className = "text-muted-foreground transition-colors duration-200 ease-in-out hover:text-[#7FADF2]"
7474 >
7575 < OpenCollectiveIcon className = "h-5 w-5" />
7676 </ Link >
7777 </ div >
7878
79- < div className = "text-sm text-neutral-500 flex items-center space-x-1" >
79+ < div className = "flex items-center space-x-1 text-sm text-neutral-500 " >
8080 < span > Made by</ span >
8181 < Link
8282 href = "https://arghya.dev?ref=javaistic"
@@ -90,15 +90,15 @@ export function Footer() {
9090 </ div >
9191 { Object . entries ( footerNav ) . map ( ( [ section , items ] ) => (
9292 < div key = { section } >
93- < h2 className = "text-lg font-bold text-foreground mb-4 " >
93+ < h2 className = "text-foreground mb-4 text-lg font-bold " >
9494 { section }
9595 </ h2 >
9696 < ul className = "space-y-3" >
9797 { items . map ( ( item ) => (
9898 < li key = { item . title } >
9999 < Link
100100 href = { item . href }
101- className = "transition-colors duration-200 ease-in-out text-muted-foreground hover:text-foreground "
101+ className = "text-muted-foreground hover:text-foreground transition-colors duration-200 ease-in-out"
102102 >
103103 { item . title }
104104 </ Link >
@@ -110,7 +110,7 @@ export function Footer() {
110110 </ div >
111111
112112 { /* Legal and Badge */ }
113- < div className = "flex flex-col gap-y-2 sm:flex-row items-center justify-between text-sm text-neutral-500" >
113+ < div className = "flex flex-col items-center justify-between gap-y-2 text-sm text-neutral-500 sm:flex-row " >
114114 < h4 >
115115 © 2021 - { new Date ( ) . getFullYear ( ) } Javaistic. All rights
116116 reserved.
0 commit comments