fix: update version display to be a link to the latest release

This commit is contained in:
shuaiplus
2026-05-01 05:34:05 +08:00
parent a73f9a6d87
commit 851c9c4080
@@ -26,7 +26,14 @@ export default function StandalonePageFrame(props: StandalonePageFrameProps) {
<span> | </span>
<a href="https://github.com/shuaiplus" target="_blank" rel="noreferrer">Author: @shuaiplus</a>
<span> | </span>
<span className="standalone-version">v{APP_VERSION}</span>
<a
href="https://github.com/shuaiplus/NodeWarden/releases/latest"
target="_blank"
rel="noreferrer"
className="standalone-version"
>
v{APP_VERSION}
</a>
</div>
</div>
);