feat: out-source footer and header

This commit is contained in:
2025-02-10 16:40:19 +01:00
parent 25bda2bc4d
commit 501811a0b5
5 changed files with 135 additions and 5 deletions

11
src/Header.tsx Normal file
View File

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