@@ -2,41 +2,49 @@ import Link from 'next/link';
22
33export function Footer ( ) {
44 return (
5- < footer className = "mt-12 border-t border-black/10 dark:border-white/5 pt-8 text-sm text-zinc-600 dark: text-white/30 transition-colors" >
6- < div className = "flex flex-col items-center justify-between gap-6 md:flex-row" >
5+ < footer className = "mt-14 border-t border-black/15 dark:border-white/10 bg-transparent pt-10 pb-4 text-sm transition-colors" >
6+ < div className = "mx-auto flex max-w-7xl flex-col items-start justify-between gap-8 px -6 md:flex-row" >
77 { /* LEFT */ }
8- < p className = "text-center md:text-left" >
9- © 2026 CommitPulse. Designed for the elite builder community.
10- </ p >
8+ < div className = "text-center md:text-left" >
9+ < h2 className = "text-lg font-semibold text-black dark:text-white" > CommitPulse</ h2 >
10+
11+ < p className = "mt-1 text-zinc-600 dark:text-zinc-400" >
12+ Designed for the elite builder community.
13+ </ p >
14+ </ div >
1115
1216 { /* RIGHT */ }
13- < div className = "flex items-center gap-8" >
17+ < div className = "flex items-start gap-6 text-sm font-medium text-zinc-600 dark:text-zinc-400" >
18+ { ' ' }
1419 < Link
1520 href = "/contributors"
16- className = "transition-colors hover:text-black dark:hover:text-white"
21+ className = "transition-colors duration-200 hover:text-black dark:hover:text-white"
1722 >
1823 Contributors
1924 </ Link >
20-
2125 < a
2226 href = "https://github.com/JhaSourav07/commitpulse/blob/main/README.md"
2327 target = "_blank"
2428 rel = "noreferrer"
25- className = "transition-colors hover:text-black dark:hover:text-white"
29+ className = "transition-colors duration-200 hover:text-black dark:hover:text-white"
2630 >
2731 Documentation
2832 </ a >
29-
3033 < a
3134 href = "https://github.com/jhasourav07"
3235 target = "_blank"
3336 rel = "noreferrer"
34- className = "transition-colors hover:text-white"
37+ className = "transition-colors duration-200 hover:text-black dark: hover:text-white"
3538 >
3639 Creator
3740 </ a >
3841 </ div >
3942 </ div >
43+
44+ { /* BOTTOM */ }
45+ < div className = "mt-6 border-t border-black/5 pt-3 text-center text-xs text-zinc-500 dark:border-white/5 dark:text-zinc-500" >
46+ © 2026 CommitPulse. All rights reserved.
47+ </ div >
4048 </ footer >
4149 ) ;
4250}
0 commit comments