diff --git a/public/cv.pdf b/public/cv.pdf index d6d8798..ba5cafe 100755 Binary files a/public/cv.pdf and b/public/cv.pdf differ diff --git a/src/components/Nav.astro b/src/components/Nav.astro index 6523886..8e6664c 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -2,16 +2,15 @@ import ThemeToggle from "./ThemeToggle.astro"; import { site } from "../data/site"; -// `id` ties a nav link to a homepage section so the Motion layer animates its -// underline as that section scrolls through (scroll-spy). Projects/Blog navigate -// to their own pages on click, but on the homepage they track the #projects and -// #writing sections so every nav item gets the underline - in both directions. +// Plain links. Hover shows the underline; there is no scroll-spy - tracking the +// active section as you scrolled read as clunky, so the underline is hover-only. const links = [ - { label: "About", href: "/#about", id: "about" }, - { label: "Skills", href: "/#skills", id: "skills" }, - { label: "Projects", href: "/projects/", id: "projects" }, - { label: "Blog", href: "/blog/", id: "writing" }, - { label: "Contact", href: "/#contact", id: "contact" }, + { label: "About", href: "/#about" }, + { label: "Skills", href: "/#skills" }, + { label: "Projects", href: "/projects/" }, + { label: "Blog", href: "/blog/" }, + { label: "Contact", href: "/#contact" }, + { label: "Learn", href: "https://learn.bztmon.com", external: true }, ]; --- @@ -23,7 +22,11 @@ const links = [