Files
online-energieausweis/src/components/design/footer/Footer.astro
Robert Jagtiani cde5661e30 responsiv
2025-02-19 19:30:44 +01:00

22 lines
678 B
Plaintext

---
const currentYear = new Date().getFullYear();
---
<footer class="
grid grid-cols-1 bg-primary lg:px-9 lg:py-1
xs:grid-cols-2
lg:grid-cols-4 lg:px-9 lg:py-1">
<div class="
justify-self-center
md:col-end-2 md:justify-self-start md:px-4">
<a class=" text-white font-bold text-lg no-underline whitespace-nowrap" style="text-shadow:1px 1px 2px #222" href="/">Impressum und Datenschutz</a>
</div>
<div class="
justify-self-center
md:col-end-5 md:justify-self-end md:px-6">
<a class=" text-white font-bold text-lg no-underline whitespace-nowrap" style="text-shadow:1px 1px 2px #222" href="/">© {currentYear} IB Cornelsen Hamburg</a>
</div>
</footer>