Elias Almqvist 3 months ago
parent d89a889cc7
commit ff4a3ec032
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 5572
      pnpm-lock.yaml
  2. 2
      src/app/page.tsx
  3. 16
      src/components/navlinks.tsx

File diff suppressed because it is too large Load Diff

@ -40,7 +40,7 @@ export default function Home() {
and hacker with a passion for CS, physics, and mathematics. and hacker with a passion for CS, physics, and mathematics.
</span> </span>
<span className="inline-block"> <span className="inline-block">
Currently working on{" "} CEO of{" "}
<ILink href="https://exalaboratories.com" target="_blank"> <ILink href="https://exalaboratories.com" target="_blank">
Exa Laboratories (YC S24) Exa Laboratories (YC S24)
</ILink> </ILink>

@ -2,7 +2,6 @@ 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 = {
@ -12,6 +11,11 @@ type NavLink = {
}; };
const NavLinks: NavLink[] = [ const NavLinks: NavLink[] = [
{
label: "X",
href: "https://x.com/fcvprzhfgsybj",
icon: FaXTwitter,
},
{ {
label: "GitHub", label: "GitHub",
href: "https://github.com/almqv", href: "https://github.com/almqv",
@ -22,16 +26,6 @@ const NavLinks: NavLink[] = [
href: "https://www.linkedin.com/in/almqv/", href: "https://www.linkedin.com/in/almqv/",
icon: LinkedInLogoIcon, icon: LinkedInLogoIcon,
}, },
{
label: "X",
href: "https://x.com/fcvprzhfgsybj",
icon: FaXTwitter,
},
{
label: "Book a meeting",
href: "/meeting",
icon: CalendarIcon,
},
]; ];
export default NavLinks; export default NavLinks;

Loading…
Cancel
Save