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>
|
2026-02-23 02:10:34 +01:00
|
|
|
© {today.getFullYear()} <a href="/about">Anton</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>
|