16 lines
452 B
Svelte
16 lines
452 B
Svelte
|
<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>© {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>
|