diff --git a/src/components/HeroCard.astro b/src/components/HeroCard.astro index f6e06d3..29465c0 100644 --- a/src/components/HeroCard.astro +++ b/src/components/HeroCard.astro @@ -27,17 +27,16 @@ interface Props { const { name, role, bio, avatarUrl } = Astro.props; const about: Skill[] = [ - { icon: "cloud", title: "Hybrid Cloud", desc: "Building infrastructure at Red Hat", svgPath: '' }, - { icon: "monitor", title: "Linux Enthusiast", desc: "Fedora daily driver, Arch tinkerer", svgPath: '' }, - { icon: "code", title: "Open Source", desc: "GSoC/GSoD mentor and contributor", svgPath: '' }, - { icon: "server", title: "Homelab", desc: "Self-hosting on Raspberry Pi", svgPath: '' }, + { icon: "cloud", title: "Cloud Native", desc: "Leading Builds for OpenShift at Red Hat", svgPath: '' }, + { icon: "cpu", title: "Kernel & Toolchain", desc: "Linux kernel, GCC & glibc contributor", svgPath: '' }, + { icon: "code", title: "Open Source", desc: "GSoC alumnus & mentor, Campus Expert", svgPath: '' }, + { icon: "server", title: "Self-hosting", desc: "Fedora daily driver, homelab everything", svgPath: '' }, ]; const tools: Skill[] = [ - { icon: "terminal", title: "Languages", desc: "Go, Python, Elm, C/C++", svgPath: '' }, - { icon: "pen-tool", title: "Editors", desc: "Neovim, VS Code", svgPath: '' }, - { icon: "database", title: "Infra", desc: "Kubernetes, OpenShift, Tekton", svgPath: '' }, - { icon: "flask", title: "Learning", desc: "Elm, functional programming", svgPath: '' }, + { icon: "terminal", title: "Languages", desc: "C/C++, Go, Bash", svgPath: '' }, + { icon: "pen-tool", title: "Editor", desc: "Helix, Zellij, lazygit", svgPath: '' }, + { icon: "settings", title: "Platforms", desc: "Fedora, Git, CMake, GitHub Actions", svgPath: '' }, ]; const links: SocialLink[] = [ diff --git a/src/components/Nav.astro b/src/components/Nav.astro index 11ea631..f533853 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -4,8 +4,9 @@ const navLinks: { href: string; label: string; external?: boolean }[] = [ { href: "/posts", label: "Posts" }, { href: "/resume", label: "Resume" }, { href: "/events", label: "Events" }, + { href: "/contributions", label: "Contributions" }, + { href: "/bookmarks", label: "Bookmarks" }, { href: "/meeting", label: "Meet" }, - { href: "https://todo.avinal.space/explore", label: "Memos", external: true }, ]; const currentPath = Astro.url.pathname; diff --git a/src/pages/index.astro b/src/pages/index.astro index c8f6288..975db91 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -50,7 +50,7 @@ const personLd = {