Files
pantosite/src/components/Footer.astro

25 lines
433 B
Plaintext
Raw Normal View History

2024-12-08 21:35:59 +01:00
---
const today = new Date();
2026-02-23 01:58:27 +01:00
import Socials from "./Socials.astro";
2024-12-08 21:35:59 +01:00
---
<footer>
2024-12-27 22:05:12 +01:00
&copy; {today.getFullYear()} <a href="/about">Anton Pogrebnjak</a>. All rights reserved.
2026-02-23 01:58:27 +01:00
<Socials />
2024-12-08 21:35:59 +01:00
</footer>
<style>
footer {
2025-02-16 17:25:40 +01:00
background-color: var(--background-soft);
2024-12-27 22:05:12 +01:00
padding: 1rem 1rem 2rem;
width: 100%;
2024-12-08 21:35:59 +01:00
}
2024-12-27 22:05:12 +01:00
2024-12-08 21:35:59 +01:00
.social-links a {
text-decoration: none;
2024-12-27 22:05:12 +01:00
color: var(--text);
2024-12-08 21:35:59 +01:00
}
.social-links a:hover {
2024-12-27 22:05:12 +01:00
color: var(--text);
2024-12-08 21:35:59 +01:00
}
</style>