27 lines
791 B
Plaintext
27 lines
791 B
Plaintext
---
|
|
import NavLink from "./NavLink.astro";
|
|
export type Props = {
|
|
navStyle?: 'transparent' | 'full'
|
|
}
|
|
|
|
const navbar = Astro.props.navStyle ?? 'full';
|
|
---
|
|
|
|
<nav
|
|
class={`bg-gray-800 flex flex-wrap items-center justify-between mx-auto px-2 py-2 leading-tight w-full ${navbar == 'transparent' ? 'bg-opacity-50 backdrop-blur-lg absolute z-10 top-0' : 'border-b-white border-b'}`}>
|
|
<a href="/" class="flex items-center space-x-3">
|
|
<!--<img src=""/> TODO: add logo -->
|
|
<span class="self-center font-semibold whitespace-nowrap">Firmament</span>
|
|
</a>
|
|
<div class="block w-auto">
|
|
<ul class="font-medium flex-row mt-0 flex border-0">
|
|
<NavLink link="/docs/texture-pack-format">
|
|
Docs
|
|
</NavLink>
|
|
<NavLink link="/texture-packs">
|
|
Texture Packs
|
|
</NavLink>
|
|
</ul>
|
|
</div>
|
|
</nav>
|