33 lines
938 B
TypeScript
33 lines
938 B
TypeScript
export function Footer() {
|
|||
|
|
const year = new Date().getFullYear();
|
||
|
|
|
||
|
|
return (
|
||
|
|
<footer className="mx-auto w-full max-w-6xl px-4 py-6">
|
||
|
|
<div className="flex flex-col items-center gap-1 text-center text-xs text-muted-foreground">
|
||
|
|
<p>
|
||
|
|
Made with <span aria-hidden="true">💜</span> by{" "}
|
||
|
|
<a
|
||
|
|
href="https://dev.pivoine.art/valknar/sexy"
|
||
|
|
target="_blank"
|
||
|
|
rel="noreferrer noopener"
|
||
|
|
className="underline underline-offset-2 hover:text-foreground"
|
||
|
|
>
|
||
|
|
Valknar
|
||
|
|
</a>
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
© {year} Sexy · Powered by{" "}
|
||
|
|
<a
|
||
|
|
href="https://buttplug.io/"
|
||
|
|
target="_blank"
|
||
|
|
rel="noreferrer noopener"
|
||
|
|
className="underline underline-offset-2 hover:text-foreground"
|
||
|
|
>
|
||
|
|
Buttplug.io
|
||
|
|
</a>
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
</footer>
|
||
|
|
);
|
||
|
|
}
|