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 { .invisible {
visibility: hidden; visibility: hidden;
} }
.visible {
visibility: visible;
}
.absolute { .absolute {
position: absolute; position: absolute;
} }
@ -728,6 +731,10 @@
.rounded-sm { .rounded-sm {
border-radius: var(--radius-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 { .rounded-b-lg {
border-bottom-right-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg);
border-bottom-left-radius: var(--radius-lg); border-bottom-left-radius: var(--radius-lg);

View file

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