chore: adjust ProjectCard and tag Badge design

This commit is contained in:
enscribe 2024-12-25 21:08:47 -08:00
parent f42e8eed89
commit 86312d32ee
No known key found for this signature in database
GPG key ID: 9BBD5C4114E25322
9 changed files with 116 additions and 42 deletions

View file

@ -1,6 +1,8 @@
---
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'
---
@ -9,9 +11,18 @@ import SocialIcons from './SocialIcons.astro'
<div
class="flex flex-col items-center justify-center gap-y-2 sm:flex-row sm:justify-between"
>
<div class="flex items-center">
<p class="text-center text-sm text-muted-foreground">
<div class="flex items-center gap-x-2">
<span class="text-center text-sm text-muted-foreground">
&copy; {new Date().getFullYear()} All rights reserved.
</span>
<Separator orientation="vertical" className="h-4" />
<p class="text-center text-sm text-muted-foreground">
Made with 🤍 by <Link
href="https://github.com/jktrn"
class="text-foreground"
external
underline>enscribe</Link
>!
</p>
</div>
<SocialIcons links={SOCIAL_LINKS} />