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 })