20 lines
522 B
TypeScript
20 lines
522 B
TypeScript
export default function Footer() {
|
|
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>
|
|
);
|
|
}
|