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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -527,6 +527,9 @@
.invisible {
visibility: hidden;
}
.visible {
visibility: visible;
}
.absolute {
position: absolute;
}
@ -728,6 +731,10 @@
.rounded-sm {
border-radius: var(--radius-sm);
}
.rounded-t-lg {
border-top-left-radius: var(--radius-lg);
border-top-right-radius: var(--radius-lg);
}
.rounded-b-lg {
border-bottom-right-radius: var(--radius-lg);
border-bottom-left-radius: var(--radius-lg);

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>
);
}