"use client" import { useState } from "react" import { Button } from "@/components/ui/button" import { Menu, X } from "lucide-react" export function Navigation() { const [isOpen, setIsOpen] = useState(false) const navItems = [ { href: "#critique", label: "The Problem" }, { href: "#mycoeconomics", label: "Mycoeconomics" }, { href: "#alternatives", label: "Alternatives" }, { href: "#action", label: "Take Action" }, ] return ( ) }