--- import ThemeToggle from "./ThemeToggle.astro"; import { site } from "../data/site"; // 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" }, { 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 }, ]; ---