1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-24 15:40:21 +01:00
upscayl/renderer/components/Footer.tsx
2024-01-15 19:19:25 +05:30

41 lines
1005 B
TypeScript

import { newsAtom, showNewsModalAtom } from "@/atoms/newsAtom";
import { useAtomValue, useSetAtom } from "jotai";
import React from "react";
function Footer() {
const setShowNewsModal = useSetAtom(showNewsModalAtom);
const news = useAtomValue(newsAtom);
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)}>
UPSCAYL NEWS
</button>
)}
<p>
Copyright © {new Date().getFullYear()} -{" "}
<a
className="font-bold"
href="https://github.com/upscayl/upscayl"
target="_blank">
Upscayl
</a>
</p>
<p>
By{" "}
<a
href="https://github.com/upscayl"
className="font-bold"
target="_blank">
The Upscayl Team
</a>
</p>
</div>
);
}
export default Footer;