Files
aurora/src/components/Footer.astro
2023-05-22 12:34:55 +02:00

46 lines
893 B
Plaintext

---
const currentDateYear = new Date().getFullYear();
---
<footer>
<div class="container">
<ul>
<li>
<a href="mailto:thilo@thilohohlt.com">Contact</a>
</li>
<li>
<a href="https://github.com/thiloho/aurora">GitHub</a>
</li>
</ul>
<p>
<small>Copyright &copy; {currentDateYear} Your Name<br><a href="https://aurora.thilohohlt.com/">Astro aurora theme</a></small>
</p>
</div>
</footer>
<style>
footer {
padding-block: var(--size-3);
margin-block-start: var(--size-9);
background-image: linear-gradient(
0deg,
var(--tertiary-background-color) 0%,
var(--background-color) 100%
);
text-align: center;
}
.container {
display: grid;
place-items: center;
}
ul {
padding: 0;
display: flex;
flex-wrap: wrap;
list-style: none;
gap: var(--size-3);
}
</style>