"use client"; import Link from "next/link"; import { useState } from "react"; import { Brand } from "@/components/brand"; import { Icon } from "@/components/icons"; const navigation = [ { href: "/#how-it-works", label: "How it works" }, { href: "/#privacy", label: "Privacy" }, { href: "/#platforms", label: "Platforms" }, ]; export function SiteHeader() { const [open, setOpen] = useState(false); return (
GitHub
); }