protogen.social-temp/src/lib/components/Footer.svelte

16 lines
437 B
Svelte
Raw Normal View History

2025-01-25 17:46:08 +02:00
<script lang="ts">
</script>
<footer class="footer">
2025-01-25 18:03:35 +02:00
<p>Logo art by <a href="https://bsky.app/profile/did:plc:sqwkomf6gkzbhnctiqexepzx">Aegiscarr</a></p>
<p>&copy; {new Date().getFullYear()} <a href="https://laratheprotogen.dev">Lara The Protogen</a>. All rights reserved.</p>
2025-01-25 17:46:08 +02:00
</footer>
<style lang="scss">
.footer {
@apply w-full text-center p-4 text-white;
position: absolute;
bottom: 0;
z-index: 10;
}
</style>