Skip to content

Commit 5c91608

Browse files
committed
feat: Enhance Footer component styling for improved readability and user experience
1 parent 73072ce commit 5c91608

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/components/Footer.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,37 @@ export function Footer() {
55
const currentYear = new Date().getFullYear();
66

77
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">
1010
<div className="flex flex-col md:flex-row justify-between items-center space-y-4 md:space-y-0">
1111
<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">
1313
© 2020-{currentYear} Optional Rule Games.
1414
</p>
1515
</div>
1616

17-
<div className="flex items-center space-x-6">
17+
<div className="flex items-center space-x-4">
1818
<Link
1919
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"
2121
>
2222
About
2323
</Link>
2424
<Link
2525
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"
2727
>
2828
Tags
2929
</Link>
3030
<a
3131
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"
3333
>
3434
RSS
3535
</a>
3636
<a
3737
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"
3939
>
4040
Sitemap
4141
</a>

0 commit comments

Comments
 (0)