added github and cv as options to command palette

This commit is contained in:
Oliver Bryan
2025-10-29 01:46:37 +00:00
parent 3fe0c910a0
commit dea62b3aaf

View File

@@ -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<AstroModule>("../pages/projects/*.astro", { eager: true })