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

40 lines
891 B
TypeScript
Raw Normal View History

2022-11-11 21:39:28 +01:00
import React from "react";
function Footer() {
return (
2023-04-12 15:25:24 +02:00
<div className="p-2 text-center text-xs text-base-content/50">
2022-11-11 21:39:28 +01:00
<p>
2023-04-15 07:15:58 +02:00
Copyright © {new Date().getFullYear()} -{" "}
2022-11-11 21:39:28 +01:00
<a
className="font-bold"
href="https://github.com/upscayl/upscayl"
target="_blank"
>
2022-11-11 21:39:28 +01:00
Upscayl
</a>{" "}
(v<span className="font-bold">{navigator?.userAgent?.match(/Upscayl\/([\d\.]+\d+)/)[1]}</span>)
2022-11-11 21:39:28 +01:00
</p>
<p>
By{" "}
<a
href="https://github.com/TGS963"
className="font-bold"
target="_blank"
>
2022-11-11 21:39:28 +01:00
TGS963
</a>{" "}
and{" "}
<a
href="https://github.com/NayamAmarshe"
className="font-bold"
target="_blank"
>
2022-11-11 21:39:28 +01:00
Nayam Amarshe
</a>
</p>
</div>
);
}
export default Footer;