Files
pantosite/src/components/Footer.astro
Anton Pogrebnjak bd814e06ce Updated minor stuff
2026-02-23 02:10:34 +01:00

25 lines
422 B
Plaintext

---
const today = new Date();
import Socials from "./Socials.astro";
---
<footer>
&copy; {today.getFullYear()} <a href="/about">Anton</a>. All rights reserved.
<Socials />
</footer>
<style>
footer {
background-color: var(--background-soft);
padding: 1rem 1rem 2rem;
width: 100%;
}
.social-links a {
text-decoration: none;
color: var(--text);
}
.social-links a:hover {
color: var(--text);
}
</style>