diff --git a/src/components/navlinks.tsx b/src/components/navlinks.tsx index 55cfb12..2fa5173 100644 --- a/src/components/navlinks.tsx +++ b/src/components/navlinks.tsx @@ -2,6 +2,7 @@ import { GitHubLogoIcon as GitHub, LinkedInLogoIcon, } from "@radix-ui/react-icons"; +import { CalendarIcon } from "lucide-react"; import { FaXTwitter } from "react-icons/fa6"; type NavLink = { @@ -26,6 +27,11 @@ const NavLinks: NavLink[] = [ href: "https://x.com/fcvprzhfgsybj", icon: FaXTwitter, }, + { + label: "Book a meeting", + href: "/meeting", + icon: CalendarIcon, + }, ]; export default NavLinks;