You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
450 B
Svelte
15 lines
450 B
Svelte
<script>
|
|
import Search from "./Search.svelte";
|
|
import Logo from "./Logo.svelte";
|
|
import Links from "./Links.svelte";
|
|
|
|
</script>
|
|
|
|
<nav
|
|
class="flex w-full flex-wrap items-center justify-between bg-neutral-900 py-2 text-neutral-500 shadow-lg hover:text-neutral-700 focus:text-neutral-700 lg:py-4 sticky top-0 z-20">
|
|
<div class="flex w-full flex-wrap items-center justify-between px-3">
|
|
<Logo />
|
|
<Links />
|
|
<Search />
|
|
</div>
|
|
</nav> |