23 lines
613 B
Plaintext
23 lines
613 B
Plaintext
---
|
|
import { HeartIcon } from "@heroicons/react/20/solid"
|
|
import { twMerge } from "tailwind-merge"
|
|
import ExternalLink from "./external-link.astro"
|
|
|
|
export interface Props {
|
|
class?: string
|
|
}
|
|
---
|
|
|
|
<footer class={twMerge("text-xs opacity-75", Astro.props.class)}>
|
|
<address class="not-italic">
|
|
© {new Date().getFullYear()}
|
|
<ExternalLink class="link" href="https://github.com/itsMapleLeaf">
|
|
itsMapleLeaf
|
|
</ExternalLink>
|
|
</address>
|
|
<p>
|
|
Coded with <HeartIcon className="inline w-4 align-sub" /> using{" "}
|
|
<ExternalLink class="link" href="https://astro.build">Astro</ExternalLink>
|
|
</p>
|
|
</footer>
|