import Link from "next/link"; import { IoMenu as MenuIcon, IoClose as CloseIcon } from "react-icons/io5"; import { useState } from "react"; import { motion, AnimatePresence } from "framer-motion"; const links = [ { name: "blog", href: "/blog" }, { name: "projects", href: "/projects" }, { name: "github", href: "https://github.com/kookroach" }, ]; export const Navbar = () => { const [showMenu, setShowMenu] = useState(false); return ( ); };