|
|
@ -2,6 +2,7 @@ import { |
|
|
|
GitHubLogoIcon as GitHub, |
|
|
|
GitHubLogoIcon as GitHub, |
|
|
|
LinkedInLogoIcon, |
|
|
|
LinkedInLogoIcon, |
|
|
|
} from "@radix-ui/react-icons"; |
|
|
|
} from "@radix-ui/react-icons"; |
|
|
|
|
|
|
|
import { CalendarIcon } from "lucide-react"; |
|
|
|
import { FaXTwitter } from "react-icons/fa6"; |
|
|
|
import { FaXTwitter } from "react-icons/fa6"; |
|
|
|
|
|
|
|
|
|
|
|
type NavLink = { |
|
|
|
type NavLink = { |
|
|
@ -26,6 +27,11 @@ const NavLinks: NavLink[] = [ |
|
|
|
href: "https://x.com/fcvprzhfgsybj", |
|
|
|
href: "https://x.com/fcvprzhfgsybj", |
|
|
|
icon: FaXTwitter, |
|
|
|
icon: FaXTwitter, |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
label: "Book a meeting", |
|
|
|
|
|
|
|
href: "/meeting", |
|
|
|
|
|
|
|
icon: CalendarIcon, |
|
|
|
|
|
|
|
}, |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
export default NavLinks; |
|
|
|
export default NavLinks; |
|
|
|