titan/src/lib/header/Header.svelte

27 lines
516 B
Svelte

<script>
import './header.css';
import Nav from '$lib/nav/Nav.svelte';
</script>
<header>
<div class="corner">
<a href="/">
<img src="clipboard.svg" alt="Todo" />
</a>
</div>
<nav>
<svg viewBox="0 0 2 3" aria-hidden="true">
<path d="M0,0 L1,2 C1.5,3 1.5,3 2,3 L2,0 Z" />
</svg>
<Nav />
<svg viewBox="0 0 2 3" aria-hidden="true">
<path d="M0,0 L0,3 C0.5,3 0.5,3 1,2 L2,0 Z" />
</svg>
</nav>
<div class="corner">
<!-- TODO put something else here? github link? -->
</div>
</header>