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"
|
2023-04-15 05:43:15 +02:00
|
|
|
target="_blank"
|
|
|
|
>
|
2022-11-11 21:39:28 +01:00
|
|
|
Upscayl
|
2023-04-15 06:35:06 +02:00
|
|
|
</a>{" "}
|
2023-04-15 07:27:27 +02:00
|
|
|
(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"
|
2023-04-15 05:43:15 +02:00
|
|
|
target="_blank"
|
|
|
|
>
|
2022-11-11 21:39:28 +01:00
|
|
|
TGS963
|
|
|
|
</a>{" "}
|
|
|
|
and{" "}
|
|
|
|
<a
|
|
|
|
href="https://github.com/NayamAmarshe"
|
|
|
|
className="font-bold"
|
2023-04-15 05:43:15 +02:00
|
|
|
target="_blank"
|
|
|
|
>
|
2022-11-11 21:39:28 +01:00
|
|
|
Nayam Amarshe
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Footer;
|