mirror of
https://github.com/upscayl/upscayl.git
synced 2024-12-18 10:26:04 +01:00
39 lines
756 B
TypeScript
39 lines
756 B
TypeScript
|
import React from "react";
|
||
|
|
||
|
function Footer() {
|
||
|
return (
|
||
|
<div className="p-2 text-center text-sm text-neutral-500">
|
||
|
<p>
|
||
|
Copyright © 2022 -{" "}
|
||
|
<a
|
||
|
className="font-bold"
|
||
|
href="https://github.com/upscayl/upscayl"
|
||
|
target="_blank"
|
||
|
>
|
||
|
Upscayl
|
||
|
</a>
|
||
|
</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;
|