1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-24 11:28:25 +02:00

Added version number to the footer

Added the version number to the footer to address issue #228
This commit is contained in:
Cardon Burnham 2023-04-14 21:43:15 -06:00
parent 29ad1225fe
commit bb70b84870

View File

@ -1,4 +1,5 @@
import React from "react";
import packageJSON from "../../package.json";
function Footer() {
return (
@ -8,23 +9,29 @@ function Footer() {
<a
className="font-bold"
href="https://github.com/upscayl/upscayl"
target="_blank">
target="_blank"
>
Upscayl
</a>
</p>
<span>
(version <span className="font-bold">{packageJSON.version}</span>)
</span>
<p>
By{" "}
<a
href="https://github.com/TGS963"
className="font-bold"
target="_blank">
target="_blank"
>
TGS963
</a>{" "}
and{" "}
<a
href="https://github.com/NayamAmarshe"
className="font-bold"
target="_blank">
target="_blank"
>
Nayam Amarshe
</a>
</p>