"use client"; import { useState } from "react"; import { Logo } from "@/components/Logo"; import { MobileMenuButton, MobileSidebar, sidebarLinkClass } from "@/components/MobileSidebar"; import { DOCS_URL, WEBSITE_URL } from "@/lib/plans"; const NAV_LINKS = [ { href: "#benefits", label: "Benefits", kind: "anchor" as const }, { href: "#download", label: "Download", kind: "anchor" as const }, { href: `${DOCS_URL}/docs/intro`, label: "Docs", kind: "external" as const }, { href: WEBSITE_URL, label: "Hosted", kind: "external" as const }, { href: "#support", label: "Support", kind: "anchor" as const }, ] as const; function NavAnchor({ href, label, onNavigate, className = "text-base font-medium text-gray-300 transition-colors duration-200 hover:text-white", }: { href: string; label: string; onNavigate?: () => void; className?: string; }) { const handleClick = (e: React.MouseEvent) => { e.preventDefault(); const id = href.replace("#", ""); document.getElementById(id)?.scrollIntoView({ behavior: "smooth", block: "start" }); window.history.pushState(null, "", href); onNavigate?.(); }; return ( {label} ); } function ExternalLink({ href, label, onNavigate, className = "text-base font-medium text-gray-300 transition-colors duration-200 hover:text-white", }: { href: string; label: string; onNavigate?: () => void; className?: string; }) { return ( onNavigate?.()} className={className} > {label} ); } export function LandingNavbar() { const [menuOpen, setMenuOpen] = useState(false); return ( <>
setMenuOpen((prev) => !prev)} />
setMenuOpen(false)} title="Menu"> {NAV_LINKS.map((link) => link.kind === "external" ? ( setMenuOpen(false)} className={sidebarLinkClass()} /> ) : ( setMenuOpen(false)} className={sidebarLinkClass()} /> ), )} ); }