mastoradio-fork/src/components/layout/Header.svelte

18 lines
480 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>
2021-11-07 00:11:15 +01:00
import logo from '/src/assets/img/logo.svg'
import About from '/src/components/About'
import Settings from '/src/components/Settings'
</script>