2026-08-25 13:08:21 +00:00
|
|
|
---
|
|
|
|
|
import DotMatrixText from './DotMatrixText.astro'
|
|
|
|
|
---
|
|
|
|
|
|
2026-08-22 16:54:02 +00:00
|
|
|
<header class="nav-header fixed top-0 left-0 right-0 z-50 px-4 pt-4">
|
|
|
|
|
<nav
|
2026-08-25 13:08:21 +00:00
|
|
|
class="nav-pill mx-auto flex h-[46px] max-w-6xl items-center justify-between rounded-[12px] border border-dotted border-white/15 bg-[#0f0f14]/70 px-5 backdrop-blur-xl transition-all duration-400 dot-grid"
|
2026-08-22 16:54:02 +00:00
|
|
|
aria-label="Primary"
|
|
|
|
|
>
|
2026-08-25 13:08:21 +00:00
|
|
|
<a href="#" class="group flex shrink-0 items-center gap-2.5">
|
|
|
|
|
<span class="flex h-7 w-7 items-center justify-center rounded-[8px] border border-dotted border-white/10 bg-primary text-primary-foreground transition-colors group-hover:bg-primary/90">
|
2026-08-22 16:54:02 +00:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="h-3.5 w-3.5" aria-hidden="true">
|
2026-08-10 14:33:06 +00:00
|
|
|
<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z" />
|
|
|
|
|
</svg>
|
|
|
|
|
</span>
|
2026-08-25 13:08:21 +00:00
|
|
|
<DotMatrixText text="CLUSTRI" size="xs" dotClass="text-foreground group-hover:text-primary transition-colors" />
|
2026-08-10 14:33:06 +00:00
|
|
|
</a>
|
|
|
|
|
|
2026-08-25 13:08:21 +00:00
|
|
|
<div class="hidden items-center gap-6 md:flex">
|
|
|
|
|
<span class="h-3 w-px bg-white/10" aria-hidden="true"></span>
|
|
|
|
|
<a href="#failover-playground" class="group font-mono text-[11px] tracking-wide text-muted-foreground transition-colors hover:text-foreground">FAILOVER</a>
|
|
|
|
|
<a href="#security" class="group font-mono text-[11px] tracking-wide text-muted-foreground transition-colors hover:text-foreground">SECURITY</a>
|
|
|
|
|
<a href="#tour" class="group font-mono text-[11px] tracking-wide text-muted-foreground transition-colors hover:text-foreground">TOUR</a>
|
|
|
|
|
<a href="#architecture" class="group font-mono text-[11px] tracking-wide text-muted-foreground transition-colors hover:text-foreground">ARCH</a>
|
2026-08-10 14:33:06 +00:00
|
|
|
</div>
|
|
|
|
|
|
2026-08-25 13:08:21 +00:00
|
|
|
<div class="flex shrink-0 items-center gap-3">
|
|
|
|
|
<button data-cmdk-trigger class="hidden sm:flex items-center gap-1.5 rounded-md border border-dotted border-white/10 bg-white/[0.04] px-2.5 py-1.5 font-mono text-[11px] text-muted-foreground transition-colors hover:border-white/15 hover:text-foreground" aria-label="Open command palette">
|
2026-08-22 16:54:02 +00:00
|
|
|
<span>⌘K</span>
|
|
|
|
|
</button>
|
2026-08-25 13:08:21 +00:00
|
|
|
<a href="#download" class="rounded-[10px] border border-dotted border-primary/30 bg-primary px-4 py-2 text-[13px] font-semibold text-primary-foreground transition-all hover:bg-primary/90 active:scale-[0.98]">Get Clustri</a>
|
2026-08-22 16:54:02 +00:00
|
|
|
</div>
|
2026-08-10 14:33:06 +00:00
|
|
|
</nav>
|
|
|
|
|
</header>
|
2026-08-22 16:54:02 +00:00
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.nav-scrolled .nav-pill {
|
2026-08-25 13:08:21 +00:00
|
|
|
border-color: rgba(255, 255, 255, 0.15);
|
|
|
|
|
background-color: oklch(0.145 0.012 250 / 0.85);
|
2026-08-22 16:54:02 +00:00
|
|
|
}
|
|
|
|
|
</style>
|