18 lines
541 B
Plaintext
18 lines
541 B
Plaintext
---
|
|
import { SITE } from '$/config'
|
|
import ModeLabel from './ModeLabel.svelte'
|
|
import NetlifyIdentity from './NetlifyIdentity.svelte'
|
|
---
|
|
<footer class="footer">
|
|
<nav class="nav">
|
|
<div>2021 © Copyright notice | <a href={ SITE.githubUrl } title={`${ SITE.name }'s Github URL'`}>{ SITE.name }</a>
|
|
<ModeLabel client:load/> theme on <a href="https://astro.build/">Astro</a></div>
|
|
<NetlifyIdentity client:load/>
|
|
</nav>
|
|
</footer>
|
|
<style>
|
|
.footer {
|
|
@apply py-6 border-t
|
|
}
|
|
</style>
|