@creit.tech/stellar-wallets-kit
Version:
A kit to handle all Stellar Wallets at once
15 lines (14 loc) • 451 B
JavaScript
import { html } from "htm/preact";
import { tw } from "../twind.js";
export function Footer() {
return html `
<footer class="${tw("w-full text-center p-2 border-t-1 border-t-border")}">
<p class="${tw("text-xs text-foreground")}">
Powered by
<a target="_blank" href="https://stellarwalletskit.dev/" class="${tw("font-semibold underline ml-1")}">
Stellar Wallets Kit
</a>
</p>
</footer>
`;
}