Azzy-Blog/src/components/Footer.astro

22 lines
463 B
Text

---
const year = new Date().getFullYear();
---
<footer class="footer">
<p>&copy; {year}, Ahyan Zaman and his content/publications.</p>
<p><a href="https://azzyaz.net">Main Site</a>
</footer>
<style>
.footer {
margin-top: var(--space-2xl);
padding: var(--space-lg) 0;
border-top: 1px solid var(--color-border);
}
.footer p {
font-family: var(--font-heading);
font-size: 0.75rem;
color: var(--color-text-tertiary);
}
</style>