mastoradio/src/components/layout/Header.svelte

17 lines
467 B
Svelte
Raw Normal View History

2020-02-15 20:13:33 +01:00
<header class="header">
<div class="header__side">
2020-02-29 00:02:49 +01:00
<About></About>
2020-02-15 20:13:33 +01:00
</div>
<h1 class="header__title">
2020-02-22 20:05:59 +01:00
<a class="header__titleLink" href="/"><img src="{ logo }" alt="Eldritch Radio"></a>
2020-02-15 20:13:33 +01:00
</h1>
<div class="header__side txtright">
2020-02-29 01:06:27 +01:00
<Settings></Settings>
2020-02-15 20:13:33 +01:00
</div>
</header>
<script>
import logo from '/assets/img/logo.svg'
2020-02-29 00:02:49 +01:00
import About from '/components/About'
2020-02-29 01:06:27 +01:00
import Settings from '/components/Settings'
2020-02-15 20:13:33 +01:00
</script>