From 1d82cb58ff8cbd526953f7620b6c8800e6512a0f Mon Sep 17 00:00:00 2001 From: Elias Almqvist Date: Mon, 24 Jun 2024 16:54:21 +0200 Subject: [PATCH] feat: meeting button --- src/components/navlinks.tsx | 6 ++++++ 1 file changed, 6 insertions(+) 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;