@@ -5,37 +5,37 @@ export function Footer() {
5
5
const currentYear = new Date ( ) . getFullYear ( ) ;
6
6
7
7
return (
8
- < footer className = "bg-[var(--surface)] border-t border-[var(--border)]" >
9
- < div className = "container mx-auto px-4 py-8 max-w-4xl" >
8
+ < footer className = "bg-gradient-to-l from- [var(--surface)] to-[var(--surface-2)] border-t border-[var(--border)] shadow-lg " >
9
+ < div className = "container mx-auto px-4 py-6 max-w-4xl" >
10
10
< div className = "flex flex-col md:flex-row justify-between items-center space-y-4 md:space-y-0" >
11
11
< div className = "text-center md:text-left" >
12
- < p className = "text-[var(--muted-2 )] text-sm" >
12
+ < p className = "text-[var(--text-tertiary )] text-sm font-medium " >
13
13
© 2020-{ currentYear } Optional Rule Games.
14
14
</ p >
15
15
</ div >
16
16
17
- < div className = "flex items-center space-x-6 " >
17
+ < div className = "flex items-center space-x-4 " >
18
18
< Link
19
19
href = { urlPaths . staticPage ( 'about' ) }
20
- className = "text-[var(--muted-2 )] hover:text-[var(--foreground)] text-sm transition-colors "
20
+ className = "text-[var(--muted)] hover:text-[var(--foreground)] text-sm font-semibold transition-all duration-300 hover:scale-105 "
21
21
>
22
22
About
23
23
</ Link >
24
24
< Link
25
25
href = { urlPaths . tags ( ) }
26
- className = "text-[var(--muted-2 )] hover:text-[var(--foreground)] text-sm transition-colors "
26
+ className = "text-[var(--muted)] hover:text-[var(--foreground)] text-sm font-semibold transition-all duration-300 hover:scale-105 "
27
27
>
28
28
Tags
29
29
</ Link >
30
30
< a
31
31
href = { urlPaths . rss ( ) }
32
- className = "text-[var(--muted-2 )] hover:text-[var(--foreground)] text-sm transition-colors "
32
+ className = "text-[var(--muted)] hover:text-[var(--foreground)] text-sm font-semibold transition-all duration-300 hover:scale-105 "
33
33
>
34
34
RSS
35
35
</ a >
36
36
< a
37
37
href = { urlPaths . sitemap ( ) }
38
- className = "text-[var(--muted-2 )] hover:text-[var(--foreground)] text-sm transition-colors "
38
+ className = "text-[var(--muted)] hover:text-[var(--foreground)] text-sm font-semibold transition-all duration-300 hover:scale-105 "
39
39
>
40
40
Sitemap
41
41
</ a >
0 commit comments