From f262d913b3fae34ada557c3af73c5c226595c85f Mon Sep 17 00:00:00 2001 From: z0x Date: Sun, 23 Mar 2025 12:28:56 -0400 Subject: [PATCH] refactor(index): switch to Geist font --- bun.lock | 4 ++-- package.json | 2 +- src/components/Head.astro | 2 +- src/styles/globals.css | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bun.lock b/bun.lock index 14e9072..6d56026 100644 --- a/bun.lock +++ b/bun.lock @@ -6,7 +6,7 @@ "dependencies": { "@astrojs/react": "^4.2.1", "@biomejs/biome": "^1.9.4", - "@fontsource-variable/lora": "^5.2.5", + "@fontsource-variable/geist": "^5.2.5", "@radix-ui/react-dropdown-menu": "^2.1.6", "@radix-ui/react-slot": "^1.1.2", "@tailwindcss/vite": "^4.0.15", @@ -158,7 +158,7 @@ "@floating-ui/utils": ["@floating-ui/utils@0.2.9", "", {}, "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg=="], - "@fontsource-variable/lora": ["@fontsource-variable/lora@5.2.5", "", {}, "sha512-eupTrzQnDFr3i9pci0efxfT0mCjGmWJNmDyvsl9Wq11JCyNr5ZN7bTjhIT6/q9daq5CshTsowg0/BH2gERbtXQ=="], + "@fontsource-variable/geist": ["@fontsource-variable/geist@5.2.5", "", {}, "sha512-773ht1maARKCDSxxmyc6cWiSRudk4GU+pW/0PHHnTEISprej9ARfGZVVhW04nmrk1Nlj888MLyuutTx1UnYy0g=="], "@img/sharp-darwin-arm64": ["@img/sharp-darwin-arm64@0.33.5", "", { "optionalDependencies": { "@img/sharp-libvips-darwin-arm64": "1.0.4" }, "os": "darwin", "cpu": "arm64" }, "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ=="], diff --git a/package.json b/package.json index 7ca5373..5e6ea8e 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "dependencies": { "@astrojs/react": "^4.2.1", "@biomejs/biome": "^1.9.4", - "@fontsource-variable/lora": "^5.2.5", + "@fontsource-variable/geist": "^5.2.5", "@radix-ui/react-dropdown-menu": "^2.1.6", "@radix-ui/react-slot": "^1.1.2", "@tailwindcss/vite": "^4.0.15", diff --git a/src/components/Head.astro b/src/components/Head.astro index 78f7558..34e579d 100644 --- a/src/components/Head.astro +++ b/src/components/Head.astro @@ -1,6 +1,6 @@ --- import "/src/styles/globals.css"; -import "@fontsource-variable/lora"; +import "@fontsource-variable/geist"; --- diff --git a/src/styles/globals.css b/src/styles/globals.css index ccf638f..2725b6a 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -4,7 +4,7 @@ @theme { - --font-sans: "Lora Variable", sans-serif; + --font-sans: "Geist Variable", sans-serif; }