"use client"; import { Github, Menu, Star, X } from "lucide-react"; import { useState } from "react"; const links = [ { label: "Features", href: "#features" }, { label: "Download", href: "#how-it-works" }, { label: "API", href: "#api" }, { label: "Pricing", href: "/licensing" }, { label: "Docs", href: "https://docs.snapotter.com" }, { label: "About", href: "#open-source" }, { label: "Contact", href: "mailto:contact@snapotter.com" }, ]; export function Navbar() { const [open, setOpen] = useState(false); return ( ); }