Files
iten.pro/src/components/Footer.astro
Eduard Iten fd5dc46b97
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 9s
Fixed header link... again
2026-03-31 14:09:19 +02:00

23 lines
653 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
// src/components/Footer.astro
import { getPath } from '../utils/paths';
const currentYear = new Date().getFullYear();
const startYear = 2026;
const displayYear = currentYear > startYear ? `${startYear}${currentYear}` : startYear;
---
<footer class="main-footer">
<div class="footer-container">
<div class="footer-copy">
&copy;{displayYear} Eduard Iten
</div>
<nav>
<ul class="footer-links">
<li><a href={getPath("/impressum")} class="footer-link-item">Impressum</a></li>
<li><a href={getPath("/datenschutz")} class="footer-link-item">Datenschutz</a></li>
</ul>
</nav>
</div>
</footer>