1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-28 01:10:52 +01: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 React from "react";
import packageJSON from "../../package.json";
function Footer() { function Footer() {
return ( return (
@ -8,23 +9,29 @@ function Footer() {
<a <a
className="font-bold" className="font-bold"
href="https://github.com/upscayl/upscayl" href="https://github.com/upscayl/upscayl"
target="_blank"> target="_blank"
>
Upscayl Upscayl
</a> </a>
</p> </p>
<span>
(version <span className="font-bold">{packageJSON.version}</span>)
</span>
<p> <p>
By{" "} By{" "}
<a <a
href="https://github.com/TGS963" href="https://github.com/TGS963"
className="font-bold" className="font-bold"
target="_blank"> target="_blank"
>
TGS963 TGS963
</a>{" "} </a>{" "}
and{" "} and{" "}
<a <a
href="https://github.com/NayamAmarshe" href="https://github.com/NayamAmarshe"
className="font-bold" className="font-bold"
target="_blank"> target="_blank"
>
Nayam Amarshe Nayam Amarshe
</a> </a>
</p> </p>