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.
</span>
<span className="inline-block">
Currently working on{" "}
CEO of{" "}
<ILink href="https://exalaboratories.com" target="_blank">
Exa Laboratories (YC S24)
</ILink>

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

Loading…
Cancel
Save