import { cn } from "@/lib/utils"; interface NavbarProps { activePage?: string; } export default function Navbar({ activePage = "" }: NavbarProps) { return ( <>
Resist Tech Monopolies
Points of Unity What We're Working On
{Array.from({ length: 12 }).map((_, index) => (
{index
))}
); }