mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-12 01:40:53 +01:00
15 lines
344 B
TypeScript
15 lines
344 B
TypeScript
import React from "react";
|
|
export function DonateButton({}) {
|
|
return (
|
|
<div className="flex flex-col gap-2 text-sm font-medium">
|
|
<p>If you like what we do :)</p>
|
|
<a
|
|
href="https://buymeacoffee.com/fossisthefuture"
|
|
target="_blank"
|
|
className="btn-primary btn">
|
|
Donate
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|