15 lines
428 B
Plaintext
15 lines
428 B
Plaintext
---
|
|
import { HeartIcon } from "@heroicons/react/20/solid"
|
|
import ExternalLink from "./external-link.astro"
|
|
---
|
|
|
|
<footer class="container text-xs opacity-75">
|
|
<address class="not-italic">
|
|
© {new Date().getFullYear()} itsMapleLeaf
|
|
</address>
|
|
<p>
|
|
Coded with <HeartIcon className="inline w-4 align-sub" /> using{" "}
|
|
<ExternalLink class="link" href="https://astro.build">Astro</ExternalLink>
|
|
</p>
|
|
</footer>
|