feat: meeting button

main
Elias Almqvist 5 months ago
parent 52283cf73b
commit 1d82cb58ff
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 6
      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;

Loading…
Cancel
Save