diff --git a/package.json b/package.json index eef6643..cce42d2 100644 --- a/package.json +++ b/package.json @@ -45,6 +45,7 @@ "@eslint-community/eslint-plugin-eslint-comments": "^4.3.0", "@eslint/js": "^9.2.0", "@fontsource-variable/josefin-sans": "^5.0.21", + "@fontsource/urbanist": "^5.0.20", "@release-it/conventional-changelog": "^8.0.1", "@types/eslint-plugin-markdown": "^2.0.2", "accessible-astro-components": "^2.3.6", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3a45edf..70d327d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -27,6 +27,9 @@ importers: '@fontsource-variable/josefin-sans': specifier: ^5.0.21 version: 5.0.21 + '@fontsource/urbanist': + specifier: ^5.0.20 + version: 5.0.20 '@release-it/conventional-changelog': specifier: ^8.0.1 version: 8.0.1(release-it@17.2.1(typescript@5.4.5)) @@ -779,6 +782,9 @@ packages: '@fontsource-variable/josefin-sans@5.0.21': resolution: {integrity: sha512-64tZlQ9weEr3OqkG5OAToWuGA7BUTbB9xnwRAhWWkEB+6pbeZ2Mvind7j+OfmCqt9AtiAjuZ8XwDjI7bpsHpWA==} + '@fontsource/urbanist@5.0.20': + resolution: {integrity: sha512-cTbD74+OiR9Y7CCWN7shaaEMgrv6ujgDRbMO6/PUszdND7wWPz+/Dot/MBkdDzkW68i73i3LqQ/5G+iAeyJUVQ==} + '@humanwhocodes/config-array@0.13.0': resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} engines: {node: '>=10.10.0'} @@ -5338,6 +5344,8 @@ snapshots: '@fontsource-variable/josefin-sans@5.0.21': {} + '@fontsource/urbanist@5.0.20': {} + '@humanwhocodes/config-array@0.13.0': dependencies: '@humanwhocodes/object-schema': 2.0.3 diff --git a/src/components/Bio.astro b/src/components/Bio.astro index 78db365..41d5d41 100644 --- a/src/components/Bio.astro +++ b/src/components/Bio.astro @@ -48,7 +48,7 @@ const { .bio-medium { --imageSize: clamp(3.5rem, 10vw, 6rem); - --fontSize: var(--fontSizeBodySmall); + --fontSize: var(--fontSizeBodySmaller); } .bio-large { @@ -68,7 +68,7 @@ const { } .position { - font-size: var(--fontSizeBodySmall); + font-size: var(--fontSizeBodySmaller); font-weight: var(--fontWeightLight); } diff --git a/src/components/BioPlaceholder.astro b/src/components/BioPlaceholder.astro index eaf39cf..1dbd45c 100644 --- a/src/components/BioPlaceholder.astro +++ b/src/components/BioPlaceholder.astro @@ -37,7 +37,7 @@ const name = indexNames.get(Astro.props.index) ?? "To Be Announced"; } .name { - font-size: var(--fontSizeBodySmall); + font-size: var(--fontSizeBodySmaller); font-weight: var(--fontWeightLight); } diff --git a/src/components/BodyText.astro b/src/components/BodyText.astro index de77f56..7df3a3c 100644 --- a/src/components/BodyText.astro +++ b/src/components/BodyText.astro @@ -23,11 +23,13 @@ const { as: As = "div", class: className, size, width, ...rest } = Astro.props;