mirror of
https://github.com/wah-su/wahs.wah.su.git
synced 2025-09-14 18:33:50 +05:00
add Footer
This commit is contained in:
parent
5b60b2c611
commit
be77294d73
7 changed files with 100 additions and 2 deletions
36
src/templates/Components/Footer.tsx
Normal file
36
src/templates/Components/Footer.tsx
Normal file
|
@ -0,0 +1,36 @@
|
|||
export default function Footer() {
|
||||
return (
|
||||
<div className="container mx-auto px-4 sm:px-8 mb-4">
|
||||
<div className="flex flex-wrap items-center gap-4 mx-auto">
|
||||
<a
|
||||
className="flex items-center gap-2 text-lg"
|
||||
href="https://wah.su/radiquum"
|
||||
>
|
||||
<span>by @radiquum</span>{" "}
|
||||
<img
|
||||
className="object-contain w-8 rounded-full aspect-square"
|
||||
src="https://radiquum.wah.su/static/avatar_512.jpg"
|
||||
alt=""
|
||||
/>
|
||||
</a>
|
||||
<div className="flex items-center gap-2">
|
||||
<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"
|
||||
src="/static/github-mark-white.png"
|
||||
alt="github"
|
||||
/>
|
||||
</a>
|
||||
<a href="https://wah.su">
|
||||
<img
|
||||
className="object-contain w-8 rounded-full aspect-square"
|
||||
src="/static/captive_portal_24dp_E8EAED_FILL0_wght400_GRAD0_opsz24.png"
|
||||
alt="website"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue