26 lines
718 B
TypeScript
26 lines
718 B
TypeScript
import { useLocation } from "react-router";
|
|
import { Link } from "react-router";
|
|
import { useSession } from "./Session";
|
|
|
|
export default function Footer() {
|
|
const location = useLocation();
|
|
const { user, teams } = useSession();
|
|
return (
|
|
<footer className="footer">
|
|
<div className="content has-text-centered">
|
|
<p className="grey">
|
|
something not working? message <a href="https://t.me/x0124816">me </a>
|
|
or fix it here:
|
|
<a
|
|
className="icon is-small"
|
|
href="https://git.0124816.xyz/julius/cutt"
|
|
key="gitea"
|
|
>
|
|
<img src="gitea.svg" alt="gitea" />
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|