change theme and cleanup added favicon

This commit is contained in:
will
2026-04-03 16:45:28 +01:00
parent 4020cb239c
commit 6ed27569d6
15 changed files with 538 additions and 564 deletions

View File

@@ -2,15 +2,23 @@ import { GITEA_URL, GITEA_USERNAME } from '@/lib/config';
export default function Footer() {
return (
<footer className="border-t border-white/[0.05] py-8 px-6">
<div className="max-w-5xl mx-auto flex items-center justify-between flex-wrap gap-4
text-xs text-white/20 font-mono">
<footer className="border-t border-slate-200/80 py-8 px-6">
<div
className="max-w-5xl mx-auto flex items-center justify-between flex-wrap gap-4
text-xs text-slate-600 font-mono"
>
<span>© {new Date().getFullYear()} William March</span>
<a href={`${GITEA_URL}/${GITEA_USERNAME}`} target="_blank" rel="noopener noreferrer"
className="hover:text-white/40 transition-colors">
<a
href={`${GITEA_URL}/${GITEA_USERNAME}`}
target="_blank"
rel="noopener noreferrer"
className="hover:text-slate-900 transition-colors"
>
{GITEA_URL.replace(/^https?:\/\//, '')}/{GITEA_USERNAME}
</a>
<span>williammarch.xyz</span>
<span className="text-slate-500">williammarch.xyz</span>
</div>
</footer>
);