mirror of
https://github.com/revanced/revanced-website.git
synced 2025-04-30 14:44:28 +02:00
33 lines
626 B
Svelte
33 lines
626 B
Svelte
<script>
|
|
import Navigation from '../atoms/Navigation.svelte';
|
|
</script>
|
|
|
|
<nav>
|
|
<a href="/">
|
|
<img class="logo" src="/logo.svg" alt="ReVanced Logo"/>
|
|
</a>
|
|
<ul>
|
|
<Navigation href="/">Home</Navigation>
|
|
<Navigation href="/download">Download</Navigation>
|
|
<Navigation href="/docs">Docs</Navigation>
|
|
<Navigation href="/credits">Credits</Navigation>
|
|
</ul>
|
|
</nav>
|
|
|
|
<style>
|
|
nav {
|
|
width: 100%;
|
|
display: flex;
|
|
padding-top: 1.25rem;
|
|
padding-right: 2rem;
|
|
padding-left: 6rem;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
min-height: 90px;
|
|
}
|
|
.logo {
|
|
width: 3rem;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|