mirror of
https://github.com/Pantonius/pantosite-astro.git
synced 2026-04-30 18:34:37 +00:00
25 lines
422 B
Plaintext
25 lines
422 B
Plaintext
---
|
|
const today = new Date();
|
|
import Socials from "./Socials.astro";
|
|
---
|
|
|
|
<footer>
|
|
© {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>
|