remove old design

This commit is contained in:
dertyp7
2024-01-13 15:44:41 +01:00
parent 7dac58b070
commit 15a866bbe6
8 changed files with 3 additions and 391 deletions

View File

@@ -1,44 +0,0 @@
import "@styles/Header.scss";
import ThemeSwitch from "@components/ThemeSwitch";
function Logo() {
return (
<div className="logo">
<p>Janis</p>
<p>Meister</p>
<p className="tooltip">"DerTyp7"</p>
</div>
);
}
function Control() {
return (
<div className="control">
<ThemeSwitch />
<div>Language</div>
</div>
);
}
export default function Header() {
return (
<header className="header">
{/* Mobile Top Row Header */}
<div className="header-mobile">
<Logo />
<Control />
</div>
{/* END: Mobile Top Row Header */}
<Logo />
<div className="links">
<a href="">About</a>
<a href="">Skills</a>
<a href="">Projects</a>
<a href="">Contact</a>
</div>
<Control />
</header>
);
}