1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-28 09:20:52 +01:00
upscayl/renderer/components/Footer.tsx

36 lines
733 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>
Copyright © 2022 -{" "}
<a
className="font-bold"
href="https://github.com/upscayl/upscayl"
2023-04-12 15:25:24 +02:00
target="_blank">
2022-11-11 21:39:28 +01:00
Upscayl
</a>
</p>
<p>
By{" "}
<a
href="https://github.com/TGS963"
className="font-bold"
2023-04-12 15:25:24 +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-12 15:25:24 +02:00
target="_blank">
2022-11-11 21:39:28 +01:00
Nayam Amarshe
</a>
</p>
</div>
);
}
export default Footer;