diff --git a/package.json b/package.json index 3432e36..0b0ca25 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,7 @@ ] }, "devDependencies": { + "@fontsource/inter": "^5.2.5", "@iconify-json/lucide": "^1.2.30", "@types/node": "^22.13.10", "tsx": "^4.19.3" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2f59daf..365d289 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -42,6 +42,9 @@ importers: specifier: ^1.1.7 version: 1.1.7 devDependencies: + '@fontsource/inter': + specifier: ^5.2.5 + version: 5.2.5 '@iconify-json/lucide': specifier: ^1.2.30 version: 1.2.30 @@ -282,6 +285,9 @@ packages: '@fastify/static@8.1.1': resolution: {integrity: sha512-TW9eyVHJLytZNpBlSIqd0bl1giJkEaRaPZG+5AT3L/OBKq9U8D7g/OYmc2NPQZnzPURGhMt3IAWuyVkvd2nOkQ==} + '@fontsource/inter@5.2.5': + resolution: {integrity: sha512-kbsPKj0S4p44JdYRFiW78Td8Ge2sBVxi/PIBwmih+RpSXUdvS9nbs1HIiuUSPtRMi14CqLEZ/fbk7dj7vni1Sg==} + '@iconify-json/lucide@1.2.30': resolution: {integrity: sha512-0EaiofYbUwnp15sNC3cOJi0oD5DbbfDKbnIEA6jJ+WGHigyePgBVmx/5/S97XQmvl+Ix/Md3oGLKxkI5szL0rg==} @@ -2496,6 +2502,8 @@ snapshots: fastq: 1.19.1 glob: 11.0.1 + '@fontsource/inter@5.2.5': {} + '@iconify-json/lucide@1.2.30': dependencies: '@iconify/types': 2.0.0 diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 1bcd52c..e113d2d 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,6 +1,7 @@ --- import "@styles/themes/default.css"; import "@styles/global.css"; +import "@fontsource/inter"; import { ClientRouter } from "astro:transitions"; import SettingsLoader from "@components/SettingsLoader.astro"; import Header from "@components/Header.astro"; @@ -16,7 +17,7 @@ import Header from "@components/Header.astro";