Files
folporio/src/components/Footer.astro

36 lines
2.7 KiB
Plaintext
Raw Normal View History

2025-11-25 09:37:22 +01:00
---
---
2026-01-19 20:45:18 +01:00
<footer class="flex flex-col bg-slate-100 py-4 px-6 min-h-48 rounded-t-2xl">
<div class="flex flex-row gap-2">
<ul>
<!-- <h4 class="mx-2 mb-0">Main</h4> -->
<li><a class="my-0 text-sm m-2 text-slate-900 hover:text-text transition-all p-0 text-ctp-subtext0 hover:text-ctp-text hover:scale-105 hover:underline underline-offset-6" href="/">Strona główna</a></li>
<li><a class="my-0 text-sm m-2 text-slate-900 hover:text-text transition-all p-0 text-ctp-subtext0 hover:text-ctp-text hover:scale-105 hover:underline underline-offset-6" href="/uslugi">Usługi</a></li>
<li><a class="my-0 text-sm m-2 text-slate-900 hover:text-text transition-all p-0 text-ctp-subtext0 hover:text-ctp-text hover:scale-105 hover:underline underline-offset-6" href="/portfolio">Portfolio</a></li>
<li><a class="my-0 text-sm m-2 text-slate-900 hover:text-text transition-all p-0 text-ctp-subtext0 hover:text-ctp-text hover:scale-105 hover:underline underline-offset-6" href="/kontakt">Kontakt</a></li>
</ul>
</div>
<hr class="my-1.5 border rounded-full border-slate-300" />
<div class="flex flex-row">
<!-- Credits -->
<div class="flex flex-col grow">
<span class="flex flex-row text-sm text-ctp-subtext0">
Strona stworzona przy użyciu
<a class="my-0 text-sm m-2 text-sky-400 hover:text-purple-400 transition-all text-ctp-subtext0 hover:text-ctp-text hover:scale-105 p-0 hover:underline underline-offset-6" target="_blank" href="https://astro.build/">Astro</a>
i
<a class="my-0 text-sm m-2 text-sky-400 hover:text-purple-400 transition-all text-ctp-subtext0 hover:text-ctp-text hover:scale-105 p-0 hover:underline underline-offset-6" target="_blank" href="https://tailwindcss.com/">Tailwind</a>
przez
<span class="ml-1 font-bold text-ctp-text">Dark Steveneq</span>.
</span>
<span class="flex flex-row text-sm text-ctp-subtext0">
Font:
<a class="my-0 text-sm m-2 text-sky-400 hover:text-purple-400 transition-all text-ctp-subtext0 hover:text-ctp-text hover:scale-105 p-0 hover:underline underline-offset-6" href="https://fonts.google.com/specimen/Montserrat" target="_blank">Montserrat</a>
wydany na licencji
<a class="my-0 text-sm m-2 text-sky-400 hover:text-purple-400 transition-all text-ctp-subtext0 hover:text-ctp-text hover:scale-105 p-0 hover:underline underline-offset-6" href="https://fonts.google.com/specimen/Montserrat/license" target="_blank">Open Font License</a>
</span>
</div>
</div>
</footer>