mirror of
https://github.com/ReVanced/revanced-website.git
synced 2026-01-29 13:51:03 +00:00
25
src/lib/components/molecules/NavHost.svelte
Normal file
25
src/lib/components/molecules/NavHost.svelte
Normal file
@@ -0,0 +1,25 @@
|
||||
<script>
|
||||
import Navigation from '../atoms/Navigation.svelte';
|
||||
</script>
|
||||
|
||||
<nav>
|
||||
<div class="logo">ReVanced</div>
|
||||
<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: 4rem;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
min-height: 83px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user