feat: clickable username with context menu

This commit is contained in:
2025-03-06 09:28:55 +01:00
parent 854bd03c40
commit 99e80c8077
4 changed files with 36 additions and 31 deletions

View File

@@ -1,9 +1,11 @@
export default function Header() {
return <div className="logo" id="logo">
<a href={"/"}>
<img alt="logo" height="66%" src="logo.svg" />
<h3 className="centered">cutt</h3>
</a>
<span className="grey">cool ultimate team tool</span>
</div>
return (
<div className="logo" id="logo">
<a href={"/"}>
<img alt="logo" height="66%" src="logo.svg" />
<h3 className="centered">cutt</h3>
</a>
<span className="grey">cool ultimate team tool</span>
</div>
);
}