import Image from "next/image"; import { fetchRepoStats } from "@/lib/github"; import { formatCompact } from "@/lib/format"; import { MobileNavToggle } from "./MobileNavToggle"; import styles from "./Nav.module.css"; const SECTIONS = [ { href: "#stack", label: "STACK" }, { href: "#features", label: "FEATURES" }, { href: "#command-center", label: "CONTROL" }, { href: "#live", label: "DEMO" }, { href: "#compare", label: "VS" }, { href: "#install", label: "INSTALL" }, { href: "/docs", label: "DOCS" }, ]; export async function Nav() { const stats = await fetchRepoStats(); return (
AGENTMEMORY
GITHUB {formatCompact(stats.stars)} INSTALL
); }