Files
sukr/src/components/Footer.astro
2022-12-09 14:22:01 -07:00

18 lines
613 B
Plaintext

---
import { SITE } from '$/config'
import ModeLabel from './ModeLabel.svelte'
import NetlifyIdentity from './NetlifyIdentity.svelte'
---
<footer class="footer">
<nav class="nav">
<div>2021 &copy; Copyright notice | <a href={ SITE.githubUrl } title={`${ SITE.ghUser }'s Github URL'`}>{ SITE.name }</a>
<ModeLabel client:load/> built with <a href="https://astro.build/">Astro</a> | <a href=https://github.com/nrdxp/nrd.sh title=source-code>src</a></div>
<NetlifyIdentity client:load/>
</nav>
</footer>
<style>
.footer {
@apply py-6 border-t
}
</style>