29 lines
770 B
TypeScript
29 lines
770 B
TypeScript
/**
|
|
* Copyright (c) 2025 miwa
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer class="section typewriting">
|
|
<p class="alt alt-font">
|
|
Made with <span class="highlight">❤</span> · Source code available at
|
|
{" "}
|
|
<a href="https://kyu.re/~web">git.acpi.at</a> under the{" "}
|
|
<a href="https://spdx.org/licenses/AGPL-3.0-or-later.html">
|
|
GNU Affero General Public License v3.0
|
|
</a>
|
|
, with all site content licensed under{" "}
|
|
<a href="https://creativecommons.org/licenses/by-sa/4.0/">
|
|
CC BY-SA 4.0
|
|
</a>
|
|
.
|
|
</p>
|
|
<br />
|
|
<p class="alt alt-font">
|
|
© 2025 <span class="highlight">miwa</span>{" "}
|
|
• Powered by FreeBSD and autism
|
|
</p>
|
|
</footer>
|
|
);
|
|
}
|