update footer

This commit is contained in:
Kentai Radiquum 2025-02-03 00:13:35 +05:00
parent 04e272ac61
commit b766442484
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
4 changed files with 17 additions and 10 deletions

View file

@ -1,6 +1,7 @@
export default function Footer() {
return (
<div className="container mx-auto px-4 sm:px-8 mb-4">
<footer className="bg-orange-950 text-[#f9ebeb] rounded-t-lg">
<div className="container mx-auto px-4 sm:px-8 py-4">
<div className="flex flex-wrap items-center gap-4 mx-auto">
<a
className="flex items-center gap-2 text-lg"
@ -17,21 +18,20 @@ export default function Footer() {
<p className="text-lg">Find us on:</p>
<a href="https://github.com/wah-su">
<img
className="object-contain w-8 rounded-full aspect-square block dark:hidden"
src="/static/github-mark.png"
alt="github"
/>
<img
className="object-contain w-8 rounded-full aspect-square hidden dark:block"
className="object-contain w-8 rounded-full aspect-square"
src="/static/github-mark-white.png"
alt="github"
/>
</a>
<a href="https://wah.su" className="flex items-center justify-center">
<div className="material-symbols--globe w-8 h-8 dark:text-white text-slate-700"></div>
<a
href="https://wah.su"
className="flex items-center justify-center"
>
<div className="material-symbols--globe w-8 h-8"></div>
</a>
</div>
</div>
</div>
</div>
</footer>
);
}