All checks were successful
Generate a build and push to Cloudflare Pages / Build and Deploy to Cloudflare Pages (push) Successful in 1m24s
28 lines
1.0 KiB
Plaintext
28 lines
1.0 KiB
Plaintext
---
|
|
import { SOCIAL_LINKS } from '@/consts'
|
|
import Link from './Link.astro'
|
|
import SocialIcons from './SocialIcons.astro'
|
|
---
|
|
|
|
<footer class="py-4" aria-label="Footer" role="contentinfo" id="footer">
|
|
<div
|
|
class="mx-auto flex max-w-5xl flex-col items-center justify-center gap-y-2 px-4 sm:flex-row sm:justify-between"
|
|
>
|
|
<SocialIcons links={SOCIAL_LINKS} />
|
|
<div class="flex flex-wrap items-center justify-center gap-x-2 text-center">
|
|
<span class="text-muted-foreground text-sm" aria-label="copyright">
|
|
2025 - {new Date().getFullYear()} © All rights reserved.
|
|
</span>
|
|
<div class="bg-border hidden h-4 w-px shrink-0 sm:block" role="separator" aria-orientation="vertical"></div>
|
|
<p class="text-muted-foreground text-sm" aria-label="open-source description">
|
|
<Link
|
|
href="https://git.jaroszew.ski/patrick/portfolio"
|
|
class="text-foreground"
|
|
external
|
|
underline>Open-source</Link
|
|
> under MIT license
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|