titan/src/lib/header/Header.svelte

27 lines
516 B
Svelte
Raw Normal View History

2021-09-22 23:08:53 +00:00
<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>