"use client"; import { useState } from "react"; const links = ["About", "Services", "Projects", "News", "Contact"]; export function Navbar() { const [open, setOpen] = useState(false); return ( ); }