mirror of
https://github.com/upscayl/upscayl.git
synced 2024-12-01 02:27:16 +01:00
d721e7ae7f
MOD: All necessary strings to match
21 lines
531 B
TypeScript
21 lines
531 B
TypeScript
import { translationAtom } from "@/atoms/translations-atom";
|
|
import { useAtomValue } from "jotai";
|
|
import React from "react";
|
|
|
|
export function DonateButton() {
|
|
const t = useAtomValue(translationAtom);
|
|
|
|
return (
|
|
<div className="flex flex-col gap-2 text-sm font-medium">
|
|
<p>{t("SETTINGS.DONATE.DESCRIPTION")}</p>
|
|
<a
|
|
href="https://buymeacoffee.com/fossisthefuture"
|
|
target="_blank"
|
|
className="btn btn-primary"
|
|
>
|
|
{t("SETTINGS.DONATE.BUTTON_TITLE")}
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|