1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<script> export let name = "Jeanine White"; </script> <footer> © {new Date().getFullYear()} {name} <small>🚀 Built with Astro</small> </footer> <style> footer { text-align: center; padding: 8rem 2rem 4rem; } small { display: block; margin-top: 1rem; color: var(--t-subdue); font-size: var(--f-d2); text-transform: uppercase; } </style>