mirror of
https://github.com/maciejpedzich/maciejpedzi.ch.git
synced 2025-04-05 22:31:11 +02:00
36 lines
854 B
Plaintext
36 lines
854 B
Plaintext
---
|
|
import NavLink from './NavLink.astro';
|
|
---
|
|
|
|
<footer>
|
|
<span>
|
|
© {new Date().getFullYear()} <span lang="pl">Maciej Pędzich</span>
|
|
</span>
|
|
<nav class="cmr2-text" aria-label="Social media links">
|
|
<NavLink href="https://github.com/maciejpedzich">GitHub</NavLink>
|
|
<NavLink href="https://notacult.social/@macindahaus">Mastodon</NavLink>
|
|
<NavLink href="https://twitter.com/maciejpedzich">Twitter</NavLink>
|
|
</nav>
|
|
</footer>
|
|
|
|
<style>
|
|
footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
margin-top: 1.5rem;
|
|
padding: 1rem 0;
|
|
border-top: 1px solid #fff;
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
@media only screen and (max-width: 625px) {
|
|
footer {
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
}
|
|
</style>
|