mirror of
https://github.com/DerTyp7/dertyp7.github.io.git
synced 2025-11-01 22:22:32 +01:00
Add Header component to App.js
This commit is contained in:
19
src/components/Header.tsx
Normal file
19
src/components/Header.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import "@styles/Header.scss";
|
||||
|
||||
export default function Header() {
|
||||
return (
|
||||
<div className="header">
|
||||
<a href="/" className="logo">
|
||||
<span>{</span>J<span>}</span>
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a className="current" href="#">
|
||||
About
|
||||
</a>
|
||||
<a href="#skills">Skills</a>
|
||||
<a href="#projects">Projects</a>
|
||||
</nav>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user