feat: add footer back to Network page

This commit is contained in:
2025-03-03 11:52:48 +01:00
parent 9d65c1d1df
commit 104ec70695
3 changed files with 209 additions and 82 deletions

View File

@@ -1,23 +1,31 @@
import { Link } from "react-router";
export default function Footer() {
return <footer>
<div className="navbar">
<Link to="/" ><span>Form</span></Link>
<span>|</span>
<Link to="/network" ><span>Trainer Analysis</span></Link>
<span>|</span>
<Link to="/mvp" ><span>MVP</span></Link>
</div>
<p className="grey extra-margin">
something not working?
<br />
message <a href="https://t.me/x0124816">me</a>.
<br />
or fix it here:{" "}
<a href="https://git.0124816.xyz/julius/cutt" key="gitea">
<img src="gitea.svg" alt="gitea" height="16" />
</a>
</p>
</footer>
return (
<footer>
<div className="navbar">
<a href="/">
<span>Form</span>
</a>
<span>|</span>
<a href="/network">
<span>Trainer Analysis</span>
</a>
<span>|</span>
<a href="/mvp">
<span>MVP</span>
</a>
</div>
<p className="grey extra-margin">
something not working?
<br />
message <a href="https://t.me/x0124816">me</a>.
<br />
or fix it here:{" "}
<a href="https://git.0124816.xyz/julius/cutt" key="gitea">
<img src="gitea.svg" alt="gitea" height="16" />
</a>
</p>
</footer>
);
}