1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-19 01:24:09 +01:00

36 lines
755 B
TypeScript
Raw Normal View History

2022-11-12 02:09:28 +05:30
import React from "react";
function Footer() {
return (
2023-04-12 18:55:24 +05:30
<div className="p-2 text-center text-xs text-base-content/50">
2022-11-12 02:09:28 +05:30
<p>
2023-04-15 10:45:58 +05:30
Copyright © {new Date().getFullYear()} -{" "}
2022-11-12 02:09:28 +05:30
<a
className="font-bold"
href="https://github.com/upscayl/upscayl"
target="_blank">
2022-11-12 02:09:28 +05:30
Upscayl
</a>
2022-11-12 02:09:28 +05:30
</p>
<p>
By{" "}
<a
href="https://github.com/TGS963"
className="font-bold"
target="_blank">
2022-11-12 02:09:28 +05:30
TGS963
</a>{" "}
and{" "}
<a
href="https://github.com/NayamAmarshe"
className="font-bold"
target="_blank">
2022-11-12 02:09:28 +05:30
Nayam Amarshe
</a>
</p>
</div>
);
}
export default Footer;