diff --git a/bun.lock b/bun.lock index ccc89bb..8762aa8 100644 --- a/bun.lock +++ b/bun.lock @@ -10,7 +10,6 @@ "@astrojs/sitemap": "3.2.1", "@fontsource-variable/outfit": "^5.1.1", "@fontsource-variable/red-hat-mono": "^5.1.1", - "@fontsource/instrument-serif": "^5.1.1", "@tailwindcss/vite": "^4.0.6", "astro": "^5.3.0", "astro-icon": "^1.1.5", @@ -133,8 +132,6 @@ "@fontsource-variable/red-hat-mono": ["@fontsource-variable/red-hat-mono@5.1.1", "", {}, "sha512-yeZTpCFFU+fJwlhDrMdQROva42Kuaj1KjCp2HSHziT0FE+BPEL90oS0yAAdDZqwjgI77wDp2I6kgnZoHFV95AQ=="], - "@fontsource/instrument-serif": ["@fontsource/instrument-serif@5.1.1", "", {}, "sha512-DZ+ho/lr8PIqilsGjh5jc0o9oT1BR8UHaBMzCdC4r4MmMqopMzS8uEFGuKwNCd7cDSoAiVXEigaRgnzdi1uv1g=="], - "@iconify-json/mdi": ["@iconify-json/mdi@1.2.3", "", { "dependencies": { "@iconify/types": "*" } }, "sha512-O3cLwbDOK7NNDf2ihaQOH5F9JglnulNDFV7WprU2dSoZu3h3cWH//h74uQAB87brHmvFVxIOkuBX2sZSzYhScg=="], "@iconify/tools": ["@iconify/tools@4.1.1", "", { "dependencies": { "@iconify/types": "^2.0.0", "@iconify/utils": "^2.2.0", "@types/tar": "^6.1.13", "axios": "^1.7.9", "cheerio": "1.0.0", "domhandler": "^5.0.3", "extract-zip": "^2.0.1", "local-pkg": "^0.5.1", "pathe": "^1.1.2", "svgo": "^3.3.2", "tar": "^6.2.1" } }, "sha512-Hybu/HGhv6T8nLQhiG9rKx+ekF7NNpPOEQAy7JRSKht3s3dcFSsPccYzk24Znc9MTxrR6Gak3cg6CPP5dyvS2Q=="], diff --git a/package.json b/package.json index ee119b0..35a0475 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,6 @@ "@astrojs/sitemap": "3.2.1", "@fontsource-variable/outfit": "^5.1.1", "@fontsource-variable/red-hat-mono": "^5.1.1", - "@fontsource/instrument-serif": "^5.1.1", "@tailwindcss/vite": "^4.0.6", "astro": "^5.3.0", "astro-icon": "^1.1.5", diff --git a/src/components/Header.astro b/src/components/Header.astro index dc0d91c..5f69496 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -1,5 +1,6 @@ --- import { SITE } from "@consts"; +import Button from "@components/Button.astro"; const pathname = new URL(Astro.request.url).pathname; const currentPath = pathname.replace(/\/$/, ""); @@ -32,6 +33,7 @@ const currentPath = pathname.replace(/\/$/, ""); ); }) } +