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

16 lines
452 B
Svelte
Raw Normal View History

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