diff --git a/components/Navbar.tsx b/components/Navbar.tsx index 06e0ca5..3722b31 100644 --- a/components/Navbar.tsx +++ b/components/Navbar.tsx @@ -1,51 +1,69 @@ 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 ( -