From 6e5e73bb2b2954bf158b5070572ecdabd55f347c Mon Sep 17 00:00:00 2001 From: Oliver Bryan <04oliverbryan@gmail.com> Date: Wed, 14 Jan 2026 23:20:08 +0000 Subject: [PATCH] more biome fixes --- src/components/CommandPalette.astro | 336 +++++++++++++--------------- src/pages/index.astro | 8 +- src/styles/global.css | 1 - 3 files changed, 165 insertions(+), 180 deletions(-) diff --git a/src/components/CommandPalette.astro b/src/components/CommandPalette.astro index e5c35881..55e789e5 100644 --- a/src/components/CommandPalette.astro +++ b/src/components/CommandPalette.astro @@ -2,10 +2,6 @@ import { Icon } from "astro-icon/components"; import type { AstroModule, ProjectMetadata } from "../pages/index.astro"; -type Props = {}; - -const {} = Astro.props; - const options = [{ name: "home", location: "/" }]; options.push({ name: "GitHub", @@ -31,195 +27,183 @@ Object.values(import.meta.glob("../pages/projects/*.astro", { eager ---