1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-27 16:33:44 +01:00

15 lines
344 B
TypeScript
Raw Normal View History

2023-07-22 16:37:53 +05:30
import React from "react";
export function DonateButton({}) {
return (
2023-07-23 12:02:22 +05:30
<div className="flex flex-col gap-2 text-sm font-medium">
2023-07-22 16:37:53 +05:30
<p>If you like what we do :)</p>
2023-07-23 12:02:22 +05:30
<a
href="https://buymeacoffee.com/fossisthefuture"
target="_blank"
className="btn-primary btn">
Donate
2023-07-22 16:37:53 +05:30
</a>
</div>
);
}