23 lines
866 B
Plaintext
23 lines
866 B
Plaintext
---
|
|
import { Icon } from 'astro-icon/components';
|
|
---
|
|
|
|
<div class="mx-auto w-full max-w-7xl px-8">
|
|
<div
|
|
class="flex flex-col items-center justify-center border-t border-zinc-50 py-4 dark:border-zinc-900 md:flex-row md:justify-between">
|
|
<p
|
|
class="mb-4 text-center text-sm font-normal text-zinc-900 antialiased dark:text-zinc-100 md:mb-0">
|
|
© 2024
|
|
<a href="/" class="hover:text-blue-500">Astro Deploy</a>. All Rights Reserved.
|
|
</p>
|
|
<div class="flex gap-4 text-zinc-900 dark:text-zinc-100 sm:justify-center">
|
|
<a
|
|
href="https://github.com/deployn/astro-deploy"
|
|
class="block text-base font-light leading-relaxed text-inherit antialiased opacity-80 transition-opacity hover:opacity-100"
|
|
aria-label="GitHub Repository">
|
|
<Icon name="line-md:github" class="size-5" fill="currentColor" aria-hidden="true" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|