Files
upscayl/renderer/components/Footer.tsx
Cardon Burnham 267a6446de Updated it to be inline
Updated it to be inline with the rest of the footer
2023-04-14 22:35:06 -06:00

41 lines
886 B
TypeScript

import React from "react";
import packageJSON from "../../package.json";
function Footer() {
return (
<div className="p-2 text-center text-xs text-base-content/50">
<p>
Copyright © 2022 -{" "}
<a
className="font-bold"
href="https://github.com/upscayl/upscayl"
target="_blank"
>
Upscayl
</a>{" "}
(version <span className="font-bold">{packageJSON.version}</span>)
</p>
<p>
By{" "}
<a
href="https://github.com/TGS963"
className="font-bold"
target="_blank"
>
TGS963
</a>{" "}
and{" "}
<a
href="https://github.com/NayamAmarshe"
className="font-bold"
target="_blank"
>
Nayam Amarshe
</a>
</p>
</div>
);
}
export default Footer;