From dea62b3aaf39d3a835ae08985c9d42311d4b324d Mon Sep 17 00:00:00 2001 From: Oliver Bryan <04oliverbryan@gmail.com> Date: Wed, 29 Oct 2025 01:46:37 +0000 Subject: [PATCH] added github and cv as options to command palette --- src/components/CommandPalette.astro | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/CommandPalette.astro b/src/components/CommandPalette.astro index 32ec0dc8..04be574f 100644 --- a/src/components/CommandPalette.astro +++ b/src/components/CommandPalette.astro @@ -7,6 +7,15 @@ interface Props {} const {} = Astro.props; const options = [{ name: "home", location: "/" }]; +options.push({ + name: "GitHub", + location: "https://github.com/hex248", +}); +options.push({ + name: "CV", + location: "/cv.pdf", +}); + // add all individual projects to options Object.values( import.meta.glob("../pages/projects/*.astro", { eager: true })