31 lines
985 B
Text
31 lines
985 B
Text
---
|
|
import Container from '@/components/Container.astro'
|
|
import { Separator } from '@/components/ui/separator'
|
|
import { SOCIAL_LINKS } from '@/consts'
|
|
import Link from './Link.astro'
|
|
import SocialIcons from './SocialIcons.astro'
|
|
---
|
|
|
|
<footer class="py-4">
|
|
<Container>
|
|
<div
|
|
class="flex flex-col items-center justify-center gap-y-2 sm:flex-row sm:justify-between"
|
|
>
|
|
<div class="flex items-center gap-x-2">
|
|
<span class="text-muted-foreground text-center text-sm">
|
|
© {new Date().getFullYear()} All rights reserved.
|
|
</span>
|
|
<Separator orientation="vertical" className="h-4" />
|
|
<p class="text-muted-foreground text-center text-sm">
|
|
Made with 🤍 by <Link
|
|
href="https://github.com/jktrn"
|
|
class="text-foreground"
|
|
external
|
|
underline>enscribe</Link
|
|
>!
|
|
</p>
|
|
</div>
|
|
<SocialIcons links={SOCIAL_LINKS} />
|
|
</div>
|
|
</Container>
|
|
</footer>
|