Files
site-saralebens/src/components/Footer.astro
2026-04-09 20:41:06 -05:00

15 lines
676 B
Plaintext

---
const year = new Date().getFullYear();
---
<footer>
<div class="center">
<ul class="footer">
<li class="icon__btn"><a class="icon__link" href="#" target="_blank"><span class="git-icon">GitHub</span></a></li>
<li class="icon__btn"><a class="icon__link" href="mailto: #@gmail.com"><span class="mail-icon">Email</span></a></li>
<li class="icon__btn"><a class="icon__link" href="#" target="_blank"><span class="linked-in">LinkedIn</span></a></li>
</ul>
<small>&copy; {year} Milky-Way by <a class="footer__link" href="https://github.com/ttomczak3">ttomczak</a>. All Rights Reserved.</small>
</div>
</footer>