chore: cleanup, shadcn

This commit is contained in:
enscribe 2024-09-10 14:24:09 -07:00
parent 230dca64ca
commit ea68d4f02f
No known key found for this signature in database
GPG key ID: 9BBD5C4114E25322
38 changed files with 1073 additions and 1378 deletions

View file

@ -1,21 +1,17 @@
---
import Container from '@components/Container.astro'
import { SITE } from '@consts'
import BackToTop from '@components/BackToTop.astro'
import SocialIcons from './SocialIcons.astro'
import { ModeToggle } from '@components/ui/mode-toggle'
---
<footer>
<footer class="py-8">
<Container>
<div class="my-2 flex justify-between">
<SocialIcons icon_size={'text-xl'} />
<BackToTop />
</div>
<div class="flex items-center justify-between">
<div>
&copy; {new Date().getFullYear()} • {SITE.TITLE} 👀<br />
Built with Astro
<div class="flex justify-between items-center">
<div class="flex items-center space-x-4">
<ModeToggle client:load />
<p class="text-sm text-muted-foreground">&copy; {new Date().getFullYear()} All rights reserved.</p>
</div>
<SocialIcons />
</div>
</Container>
</footer>