1
0
Fork 0
mirror of https://github.com/Radiquum/photos.git synced 2025-04-10 10:14:31 +00:00

feat\generator: add some links to footer

This commit is contained in:
Kentai Radiquum 2025-02-23 05:42:17 +05:00
parent f88efb6816
commit 9ef71ad245
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -1,11 +1,21 @@
export default function Footer() {
return (
<div className="bg-[#262626] text-white w-full rounded-t-lg">
<div className="container mx-auto p-4 flex flex-col md:flex-row md:items-center">
<div className="container mx-auto p-4 flex flex-col gap-4">
<a href="https://creativecommons.org/licenses/by-sa/4.0/" className="flex gap-2 items-center">
<p>Licensed Under CC BY-SA 4.0</p>
<img alt="CC BY-SA 4.0" src="https://licensebuttons.net/l/by-sa/4.0/88x31.png" className="w-24" />
</a>
<a href="./feed.xml" className="flex gap-2 items-center">
<p> {'>'} RSS Feed</p>
</a>
<a href="https://t.me/photowah" className="flex gap-2 items-center">
<p> {'>'} Photo Telegram Channel</p>
</a>
<a href="https://pixey.org/radiquum" className="flex gap-2 items-center">
<p> {'>'} Pixey.org</p>
</a>
</div>
</div>
)