mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-24 07:30:19 +01:00
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import { newsAtom, showNewsModalAtom } from "@/atoms/newsAtom";
|
|
import { translationAtom } from "@/atoms/translations-atom";
|
|
import { useAtomValue, useSetAtom } from "jotai";
|
|
import React from "react";
|
|
|
|
function Footer() {
|
|
const setShowNewsModal = useSetAtom(showNewsModalAtom);
|
|
const news = useAtomValue(newsAtom);
|
|
const t = useAtomValue(translationAtom);
|
|
|
|
return (
|
|
<div className="p-2 text-center text-xs text-base-content/50">
|
|
{news && !news?.data?.dontShow && (
|
|
<button
|
|
className="badge badge-neutral mb-2"
|
|
onClick={() => setShowNewsModal(true)}
|
|
>
|
|
{t("APP.FOOTER.NEWS_TITLE")}
|
|
</button>
|
|
)}
|
|
<p>
|
|
{t("APP.FOOTER.COPYRIGHT")} {new Date().getFullYear()} -{" "}
|
|
<a
|
|
className="font-bold"
|
|
href="https://github.com/upscayl/upscayl"
|
|
target="_blank"
|
|
>
|
|
{t("APP.TITLE")}
|
|
</a>
|
|
</p>
|
|
<p>
|
|
{t("APP.FOOTER.BY")}
|
|
<a
|
|
href="https://github.com/upscayl"
|
|
className="font-bold"
|
|
target="_blank"
|
|
>
|
|
{t("APP.FOOTER.APP_TEAM")}
|
|
</a>
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Footer;
|