Compare commits

...

29 Commits

Author SHA1 Message Date
shadcn
69a88f9579 Merge branch 'main' into shadcn/code-format 2026-03-15 12:48:37 +04:00
shadcn
4e8263d7a3 ci: add code-format action 2026-03-15 12:47:01 +04:00
Frank
e000e17856 fix(registry): register next form examples (#10021) 2026-03-15 11:50:47 +04:00
shadcn
1be8f98c46 feat: add namespace validation for registries (#10033) 2026-03-15 11:07:13 +04:00
Copilot
6e476e4756 Rename @hooks registry to @shadcnhooks (#10036)
* Initial plan

* Rename @hooks registry to @shadcnhooks

Co-authored-by: shadcn <124599+shadcn@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: shadcn <124599+shadcn@users.noreply.github.com>
2026-03-15 11:06:56 +04:00
github-actions[bot]
e2d36a3a7d chore(release): version packages (#10046)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-03-15 10:07:48 +04:00
shadcn
a97ebe54f1 fix: bundle @antfu/ni to resolve tinyexec missing module error (#10041)
* fix: bundle @antfu/ni to resolve tinyexec missing module error

Fixes #10028.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* chore: changeset

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 10:01:15 +04:00
Ahmed Zougari
b2cc0dfe59 fix(docs): update tanstack commands (#10045) 2026-03-15 10:00:58 +04:00
github-actions[bot]
af99d4ebd3 chore(release): version packages (#10037) 2026-03-14 18:50:45 +04:00
shadcn
a0a072dcdd Merge pull request #9929 from kapishdima/fix/registry-font
Add fontsource and support override for registry:font install
2026-03-14 18:30:41 +04:00
KapishDima
447c7aac06 Merge branch 'main' into fix/registry-font 2026-03-14 16:29:44 +02:00
shadcn
752615f231 Merge pull request #10032 from shadcn-ui/codex/rename-blocks-so-registry
chore: rename @blocks registry to @blocks-so
2026-03-14 18:21:18 +04:00
shadcn
f9b365bc7f chore: changeset 2026-03-14 16:13:05 +04:00
shadcn
17a1a9093a Merge branch 'fix/registry-font' of github.com:kapishdima/ui into fix/registry-font 2026-03-14 16:12:34 +04:00
shadcn
8159e98075 feat: update schema 2026-03-14 16:12:27 +04:00
shadcn
6a527b3e75 chore: rebuild registry 2026-03-14 16:12:18 +04:00
shadcn
ebe689e85c docs: update font examples 2026-03-14 16:12:07 +04:00
shadcn
8b683b44e6 Merge branch 'main' into fix/registry-font 2026-03-14 15:56:54 +04:00
shadcn
8e9f781cdb Merge pull request #9911 from lior-pesoa/main
Add @paletteui entry to directory.json
2026-03-14 14:13:34 +04:00
shadcn
9d7c205442 Merge branch 'main' into pr-9911 and resolve conflicts
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-14 13:56:31 +04:00
shadcn
902379fa3e Merge pull request #9932 from felipemenezes098/feat/registry-add-flx
feat(registry): add @flx
2026-03-14 13:53:57 +04:00
shadcn
94dcf37add Rename @blocks registry to @blocks‑s 2026-03-14 12:39:37 +04:00
felipemenezes098
843a5e2334 feat(registry): add @flx 2026-03-13 16:57:36 -03:00
shadcn
cdaad392ae Merge pull request #10025 from Ziane-Badreddine/main
fix: swap homepage and url fields for @waves-cn registry
2026-03-13 20:53:35 +04:00
shadcn
49abe0d594 Merge branch 'main' into main 2026-03-13 20:52:16 +04:00
shadcn
eeb33ae9c9 fix: homepage and url order in registries.json 2026-03-13 20:47:35 +04:00
Ziane-Badreddine
55fa1bb7cc fix: correct homepage url in waves-cn registry entry 2026-03-13 12:45:26 +00:00
Lior Pesoa
da05ee321c fix: run registry:build and fix directory.json syntax
- Fix missing comma between entries in directory.json
- Fix multiline SVG logo string
- Regenerate registries.json with @paletteui entry

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-09 10:56:16 +02:00
lior-pesoa
554a1a69a7 Add @paletteui entry to directory.json 2026-03-08 18:50:13 +02:00
196 changed files with 1016 additions and 364 deletions

125
.github/workflows/code-format.yml vendored Normal file
View File

@@ -0,0 +1,125 @@
name: Code format
on:
workflow_run:
workflows: ["Code check"]
types:
- completed
permissions:
actions: read
contents: write
pull-requests: read
jobs:
format:
if: |
github.event.workflow_run.conclusion == 'failure' &&
github.event.workflow_run.event == 'pull_request'
runs-on: ubuntu-latest
name: Run pnpm format:write
steps:
- name: Inspect failed workflow run
id: meta
uses: actions/github-script@v7
with:
script: |
const pr = context.payload.workflow_run.pull_requests[0]
if (!pr) {
core.notice("Skipping because the failed run is not attached to a pull request.")
core.setOutput("should_run", "false")
return
}
const { data: pullRequest } = await github.rest.pulls.get({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: pr.number,
})
const { data: jobs } = await github.rest.actions.listJobsForWorkflowRun({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: context.payload.workflow_run.id,
per_page: 100,
})
const formatJob = jobs.jobs.find((job) => job.name === "pnpm format:check")
const sameRepo =
pullRequest.head.repo.full_name === `${context.repo.owner}/${context.repo.repo}`
const shouldRun = formatJob?.conclusion === "failure" && sameRepo
if (!formatJob) {
core.notice("Skipping because the format job could not be found in the failed run.")
} else if (formatJob.conclusion !== "failure") {
core.notice(
`Skipping because the format job concluded with "${formatJob.conclusion}".`
)
}
if (!sameRepo) {
core.notice(
`Skipping PR #${pullRequest.number} because its head branch lives in ${pullRequest.head.repo.full_name}.`
)
}
core.setOutput("head_ref", pullRequest.head.ref)
core.setOutput("should_run", shouldRun ? "true" : "false")
- name: Checkout pull request branch
if: steps.meta.outputs.should_run == 'true'
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ steps.meta.outputs.head_ref }}
- name: Install Node.js
if: steps.meta.outputs.should_run == 'true'
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install pnpm
if: steps.meta.outputs.should_run == 'true'
uses: pnpm/action-setup@v4
with:
version: 9.0.6
run_install: false
- name: Get pnpm store directory
if: steps.meta.outputs.should_run == 'true'
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
if: steps.meta.outputs.should_run == 'true'
uses: actions/cache@v4
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
if: steps.meta.outputs.should_run == 'true'
run: pnpm install
- name: Apply formatting
if: steps.meta.outputs.should_run == 'true'
run: pnpm format:write
- name: Commit formatting changes
if: steps.meta.outputs.should_run == 'true'
run: |
if git diff --quiet; then
echo "No formatting changes to commit."
exit 0
fi
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add -A
git commit -m "style: apply automated formatting"
git push origin HEAD:${{ steps.meta.outputs.head_ref }}

View File

@@ -16,7 +16,7 @@ jobs:
check-registry-sync:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
name: Check registry sync
name: check-registry-sync
permissions:
contents: read
pull-requests: write
@@ -66,6 +66,44 @@ jobs:
with:
node-version: 20
- name: Block reserved registry namespaces
env:
RESERVED_NAMESPACES: "@shadcn,@ui,@blocks,@components,@block,@component,@util,@utils,@registry,@lib,@hook,@hooks,@theme,@themes,@chart,@charts"
run: |
node <<'EOF'
const fs = require("node:fs")
const files = [
"apps/v4/public/r/registries.json",
"apps/v4/registry/directory.json",
]
const reservedNamespaces = new Set(
process.env.RESERVED_NAMESPACES.split(",").filter(Boolean)
)
function readNames(filePath) {
return JSON.parse(fs.readFileSync(filePath, "utf8")).map(
(entry) => entry.name
)
}
const violations = files.flatMap((filePath) => {
return readNames(filePath)
.filter((name) => reservedNamespaces.has(name))
.map((name) => `${filePath}: ${name}`)
})
if (violations.length > 0) {
console.error("Reserved registry namespaces are not allowed:")
for (const violation of violations) {
console.error(`- ${violation}`)
}
process.exit(1)
}
EOF
- uses: pnpm/action-setup@v4
name: Install pnpm
id: pnpm-install

View File

@@ -16,13 +16,13 @@ description: Install and configure shadcn/ui for TanStack Start.
Run the following command to create a new TanStack Start project with shadcn/ui:
```bash
npx shadcn@latest init -t tanstack
npx shadcn@latest init -t start
```
**For a monorepo project, use `--monorepo` flag:**
```bash
npx shadcn@latest init -t tanstack --monorepo
npx shadcn@latest init -t start --monorepo
```
### Add Components

View File

@@ -325,7 +325,8 @@ A `registry:font` item installs a Google Font. The `font` field is required and
"provider": "google",
"import": "Inter",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/inter"
}
}
```
@@ -343,7 +344,8 @@ A `registry:font` item installs a Google Font. The `font` field is required and
"import": "JetBrains_Mono",
"variable": "--font-mono",
"weight": ["400", "500", "600", "700"],
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/jetbrains-mono"
}
}
```
@@ -360,7 +362,8 @@ A `registry:font` item installs a Google Font. The `font` field is required and
"provider": "google",
"import": "Lora",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/lora"
}
}
```
@@ -380,7 +383,8 @@ Use the `selector` field to apply a font to specific CSS selectors instead of gl
"import": "Playfair_Display",
"variable": "--font-heading",
"subsets": ["latin"],
"selector": "h1, h2, h3, h4, h5, h6"
"selector": "h1, h2, h3, h4, h5, h6",
"dependency": "@fontsource-variable/playfair-display"
}
}
```

View File

@@ -339,6 +339,34 @@ Environment variables are added to the `.env.local` or `.env` file. Existing var
</Callout>
### font
The `font` property is required for `registry:font` items. It configures the font family, provider, import name, CSS variable, and the npm package to install for non-Next.js projects.
```json title="registry-item.json" showLineNumbers
{
"font": {
"family": "'Inter Variable', sans-serif",
"provider": "google",
"import": "Inter",
"variable": "--font-sans",
"subsets": ["latin"],
"dependency": "@fontsource-variable/inter"
}
}
```
| Property | Type | Required | Description |
| ------------ | ---------- | -------- | ----------------------------------------------------------------------------------------- |
| `family` | `string` | Yes | The CSS font-family value. |
| `provider` | `string` | Yes | The font provider. Currently only `google` is supported. |
| `import` | `string` | Yes | The import name for the font from `next/font/google`. |
| `variable` | `string` | Yes | The CSS variable name for the font (e.g., `--font-sans`, `--font-mono`). |
| `weight` | `string[]` | No | Array of font weights to include. |
| `subsets` | `string[]` | No | Array of font subsets to include. |
| `selector` | `string` | No | CSS selector to apply the font to. Defaults to `html`. |
| `dependency` | `string` | No | The npm package to install for non-Next.js projects (e.g., `@fontsource-variable/inter`). |
### docs
Use `docs` to show custom documentation or message when installing your registry item via the CLI.

View File

@@ -76,7 +76,7 @@
"rehype-pretty-code": "^0.14.1",
"rimraf": "^6.0.1",
"server-only": "^0.0.1",
"shadcn": "4.0.6",
"shadcn": "4.0.8",
"shiki": "^1.10.1",
"sonner": "^2.0.0",
"swr": "^2.3.6",

View File

@@ -18,7 +18,7 @@
"@basecn": "https://basecn.dev/r/{name}.json",
"@better-upload": "https://better-upload.com/r/{name}.json",
"@billingsdk": "https://billingsdk.com/r/{name}.json",
"@blocks": "https://blocks.so/r/{name}.json",
"@blocks-so": "https://blocks.so/r/{name}.json",
"@bucharitesh": "https://bucharitesh.in/r/{name}.json",
"@bundui": "https://bundui.io/r/{name}.json",
"@cardcn": "https://cardcn.dev/r/{name}.json",
@@ -41,7 +41,7 @@
"@gaia": "https://ui.heygaia.io/r/{name}.json",
"@glass-ui": "https://glass-ui.crenspire.com/r/{name}.json",
"@heseui": "https://www.heseui.com/r/{name}.json",
"@hooks": "https://shadcn-hooks.com/r/{name}.json",
"@shadcnhooks": "https://shadcn-hooks.com/r/{name}.json",
"@intentui": "https://intentui.com/r/{name}",
"@kibo-ui": "https://www.kibo-ui.com/r/{name}.json",
"@kanpeki": "https://kanpeki.vercel.app/r/{name}.json",

View File

@@ -114,7 +114,7 @@
"description": "BillingSDK is an open-source React and Next.js component library for SaaS billing and payments. It offers ready-to-use, customizable components for subscriptions, invoices, usage-based pricing and billing - fully compatible with Dodo Payments and Stripe."
},
{
"name": "@blocks",
"name": "@blocks-so",
"homepage": "https://blocks.so",
"url": "https://blocks.so/r/{name}.json",
"description": "A set of clean, modern application building blocks for you in your applications. Free and Open Source"
@@ -252,7 +252,7 @@
"description": "Ready-to-use foundation components/blocks built on top of shadcn/ui."
},
{
"name": "@hooks",
"name": "@shadcnhooks",
"homepage": "https://shadcn-hooks.com",
"url": "https://shadcn-hooks.com/r/{name}.json",
"description": "A comprehensive React Hooks Collection built with Shadcn."
@@ -577,8 +577,8 @@
},
{
"name": "@waves-cn",
"homepage": "https://waves-cn.vercel.app/r/{name}.json",
"url": "https://waves-cn.vercel.app",
"homepage": "https://waves-cn.vercel.app",
"url": "https://waves-cn.vercel.app/r/{name}.json",
"description": "A collection of wave players and waveform components built with wavesurfer.js and shadcn/ui."
},
{
@@ -887,6 +887,12 @@
"url": "https://componentry.fun/r/{name}.json",
"description": "Beautiful, interactive React + Tailwind components for modern product UIs."
},
{
"name": "@paletteui",
"homepage": "https://paletteui.xyz",
"url": "https://paletteui.xyz/r/{name}.json",
"description": "Curated OKLCH color themes for shadcn/ui + visual theme editor with CSS, Tailwind v4, and Figma export."
},
{
"name": "@fluid",
"homepage": "https://www.fluidfunctionalism.com",
@@ -898,5 +904,11 @@
"homepage": "https://www.gammaui.com",
"url": "https://www.gammaui.com/r/{name}.json",
"description": "Beautifully designed landing page components built with React & Tailwind CSS & Motion."
},
{
"name": "@flx",
"homepage": "https://ui.flexnative.com",
"url": "https://ui.flexnative.com/r/{name}.json",
"description": "A collection of customizable UI blocks with interactive live previews"
}
]

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/dm-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/figtree"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-mono",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/geist-mono"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/geist"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/inter"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-mono",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/jetbrains-mono"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/lora"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/merriweather"
}
}

View File

@@ -7,6 +7,7 @@
"family": "'Noto Sans Variable', sans-serif",
"provider": "google",
"import": "Noto_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/noto-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/noto-serif"
}
}

View File

@@ -7,6 +7,7 @@
"family": "'Nunito Sans Variable', sans-serif",
"provider": "google",
"import": "Nunito_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/nunito-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/outfit"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/playfair-display"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/public-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/raleway"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/roboto-slab"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/roboto"
}
}

View File

@@ -2838,7 +2838,8 @@
"provider": "google",
"import": "Geist",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/geist"
}
},
{
@@ -2850,7 +2851,8 @@
"provider": "google",
"import": "Inter",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/inter"
}
},
{
@@ -2861,7 +2863,8 @@
"family": "'Noto Sans Variable', sans-serif",
"provider": "google",
"import": "Noto_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/noto-sans"
}
},
{
@@ -2872,7 +2875,8 @@
"family": "'Nunito Sans Variable', sans-serif",
"provider": "google",
"import": "Nunito_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/nunito-sans"
}
},
{
@@ -2884,7 +2888,8 @@
"provider": "google",
"import": "Figtree",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/figtree"
}
},
{
@@ -2896,7 +2901,8 @@
"provider": "google",
"import": "Roboto",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/roboto"
}
},
{
@@ -2908,7 +2914,8 @@
"provider": "google",
"import": "Raleway",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/raleway"
}
},
{
@@ -2920,7 +2927,8 @@
"provider": "google",
"import": "DM_Sans",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/dm-sans"
}
},
{
@@ -2932,7 +2940,8 @@
"provider": "google",
"import": "Public_Sans",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/public-sans"
}
},
{
@@ -2944,7 +2953,8 @@
"provider": "google",
"import": "Outfit",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/outfit"
}
},
{
@@ -2956,7 +2966,8 @@
"provider": "google",
"import": "JetBrains_Mono",
"variable": "--font-mono",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/jetbrains-mono"
}
},
{
@@ -2968,7 +2979,8 @@
"provider": "google",
"import": "Geist_Mono",
"variable": "--font-mono",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/geist-mono"
}
},
{
@@ -2980,7 +2992,8 @@
"provider": "google",
"import": "Noto_Serif",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/noto-serif"
}
},
{
@@ -2992,7 +3005,8 @@
"provider": "google",
"import": "Roboto_Slab",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/roboto-slab"
}
},
{
@@ -3004,7 +3018,8 @@
"provider": "google",
"import": "Merriweather",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/merriweather"
}
},
{
@@ -3016,7 +3031,8 @@
"provider": "google",
"import": "Lora",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/lora"
}
},
{
@@ -3028,7 +3044,8 @@
"provider": "google",
"import": "Playfair_Display",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/playfair-display"
}
}
]

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/dm-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/figtree"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-mono",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/geist-mono"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/geist"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/inter"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-mono",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/jetbrains-mono"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/lora"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/merriweather"
}
}

View File

@@ -7,6 +7,7 @@
"family": "'Noto Sans Variable', sans-serif",
"provider": "google",
"import": "Noto_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/noto-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/noto-serif"
}
}

View File

@@ -7,6 +7,7 @@
"family": "'Nunito Sans Variable', sans-serif",
"provider": "google",
"import": "Nunito_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/nunito-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/outfit"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/playfair-display"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/public-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/raleway"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/roboto-slab"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/roboto"
}
}

View File

@@ -2838,7 +2838,8 @@
"provider": "google",
"import": "Geist",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/geist"
}
},
{
@@ -2850,7 +2851,8 @@
"provider": "google",
"import": "Inter",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/inter"
}
},
{
@@ -2861,7 +2863,8 @@
"family": "'Noto Sans Variable', sans-serif",
"provider": "google",
"import": "Noto_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/noto-sans"
}
},
{
@@ -2872,7 +2875,8 @@
"family": "'Nunito Sans Variable', sans-serif",
"provider": "google",
"import": "Nunito_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/nunito-sans"
}
},
{
@@ -2884,7 +2888,8 @@
"provider": "google",
"import": "Figtree",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/figtree"
}
},
{
@@ -2896,7 +2901,8 @@
"provider": "google",
"import": "Roboto",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/roboto"
}
},
{
@@ -2908,7 +2914,8 @@
"provider": "google",
"import": "Raleway",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/raleway"
}
},
{
@@ -2920,7 +2927,8 @@
"provider": "google",
"import": "DM_Sans",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/dm-sans"
}
},
{
@@ -2932,7 +2940,8 @@
"provider": "google",
"import": "Public_Sans",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/public-sans"
}
},
{
@@ -2944,7 +2953,8 @@
"provider": "google",
"import": "Outfit",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/outfit"
}
},
{
@@ -2956,7 +2966,8 @@
"provider": "google",
"import": "JetBrains_Mono",
"variable": "--font-mono",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/jetbrains-mono"
}
},
{
@@ -2968,7 +2979,8 @@
"provider": "google",
"import": "Geist_Mono",
"variable": "--font-mono",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/geist-mono"
}
},
{
@@ -2980,7 +2992,8 @@
"provider": "google",
"import": "Noto_Serif",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/noto-serif"
}
},
{
@@ -2992,7 +3005,8 @@
"provider": "google",
"import": "Roboto_Slab",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/roboto-slab"
}
},
{
@@ -3004,7 +3018,8 @@
"provider": "google",
"import": "Merriweather",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/merriweather"
}
},
{
@@ -3016,7 +3031,8 @@
"provider": "google",
"import": "Lora",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/lora"
}
},
{
@@ -3028,7 +3044,8 @@
"provider": "google",
"import": "Playfair_Display",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/playfair-display"
}
}
]

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/dm-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/figtree"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-mono",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/geist-mono"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/geist"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/inter"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-mono",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/jetbrains-mono"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/lora"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/merriweather"
}
}

View File

@@ -7,6 +7,7 @@
"family": "'Noto Sans Variable', sans-serif",
"provider": "google",
"import": "Noto_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/noto-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/noto-serif"
}
}

View File

@@ -7,6 +7,7 @@
"family": "'Nunito Sans Variable', sans-serif",
"provider": "google",
"import": "Nunito_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/nunito-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/outfit"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/playfair-display"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/public-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/raleway"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/roboto-slab"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/roboto"
}
}

View File

@@ -2838,7 +2838,8 @@
"provider": "google",
"import": "Geist",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/geist"
}
},
{
@@ -2850,7 +2851,8 @@
"provider": "google",
"import": "Inter",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/inter"
}
},
{
@@ -2861,7 +2863,8 @@
"family": "'Noto Sans Variable', sans-serif",
"provider": "google",
"import": "Noto_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/noto-sans"
}
},
{
@@ -2872,7 +2875,8 @@
"family": "'Nunito Sans Variable', sans-serif",
"provider": "google",
"import": "Nunito_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/nunito-sans"
}
},
{
@@ -2884,7 +2888,8 @@
"provider": "google",
"import": "Figtree",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/figtree"
}
},
{
@@ -2896,7 +2901,8 @@
"provider": "google",
"import": "Roboto",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/roboto"
}
},
{
@@ -2908,7 +2914,8 @@
"provider": "google",
"import": "Raleway",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/raleway"
}
},
{
@@ -2920,7 +2927,8 @@
"provider": "google",
"import": "DM_Sans",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/dm-sans"
}
},
{
@@ -2932,7 +2940,8 @@
"provider": "google",
"import": "Public_Sans",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/public-sans"
}
},
{
@@ -2944,7 +2953,8 @@
"provider": "google",
"import": "Outfit",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/outfit"
}
},
{
@@ -2956,7 +2966,8 @@
"provider": "google",
"import": "JetBrains_Mono",
"variable": "--font-mono",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/jetbrains-mono"
}
},
{
@@ -2968,7 +2979,8 @@
"provider": "google",
"import": "Geist_Mono",
"variable": "--font-mono",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/geist-mono"
}
},
{
@@ -2980,7 +2992,8 @@
"provider": "google",
"import": "Noto_Serif",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/noto-serif"
}
},
{
@@ -2992,7 +3005,8 @@
"provider": "google",
"import": "Roboto_Slab",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/roboto-slab"
}
},
{
@@ -3004,7 +3018,8 @@
"provider": "google",
"import": "Merriweather",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/merriweather"
}
},
{
@@ -3016,7 +3031,8 @@
"provider": "google",
"import": "Lora",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/lora"
}
},
{
@@ -3028,7 +3044,8 @@
"provider": "google",
"import": "Playfair_Display",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/playfair-display"
}
}
]

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/dm-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/figtree"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-mono",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/geist-mono"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/geist"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/inter"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-mono",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/jetbrains-mono"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/lora"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/merriweather"
}
}

View File

@@ -7,6 +7,7 @@
"family": "'Noto Sans Variable', sans-serif",
"provider": "google",
"import": "Noto_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/noto-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/noto-serif"
}
}

View File

@@ -7,6 +7,7 @@
"family": "'Nunito Sans Variable', sans-serif",
"provider": "google",
"import": "Nunito_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/nunito-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/outfit"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/playfair-display"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/public-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/raleway"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/roboto-slab"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/roboto"
}
}

View File

@@ -2838,7 +2838,8 @@
"provider": "google",
"import": "Geist",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/geist"
}
},
{
@@ -2850,7 +2851,8 @@
"provider": "google",
"import": "Inter",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/inter"
}
},
{
@@ -2861,7 +2863,8 @@
"family": "'Noto Sans Variable', sans-serif",
"provider": "google",
"import": "Noto_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/noto-sans"
}
},
{
@@ -2872,7 +2875,8 @@
"family": "'Nunito Sans Variable', sans-serif",
"provider": "google",
"import": "Nunito_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/nunito-sans"
}
},
{
@@ -2884,7 +2888,8 @@
"provider": "google",
"import": "Figtree",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/figtree"
}
},
{
@@ -2896,7 +2901,8 @@
"provider": "google",
"import": "Roboto",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/roboto"
}
},
{
@@ -2908,7 +2914,8 @@
"provider": "google",
"import": "Raleway",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/raleway"
}
},
{
@@ -2920,7 +2927,8 @@
"provider": "google",
"import": "DM_Sans",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/dm-sans"
}
},
{
@@ -2932,7 +2940,8 @@
"provider": "google",
"import": "Public_Sans",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/public-sans"
}
},
{
@@ -2944,7 +2953,8 @@
"provider": "google",
"import": "Outfit",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/outfit"
}
},
{
@@ -2956,7 +2966,8 @@
"provider": "google",
"import": "JetBrains_Mono",
"variable": "--font-mono",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/jetbrains-mono"
}
},
{
@@ -2968,7 +2979,8 @@
"provider": "google",
"import": "Geist_Mono",
"variable": "--font-mono",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/geist-mono"
}
},
{
@@ -2980,7 +2992,8 @@
"provider": "google",
"import": "Noto_Serif",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/noto-serif"
}
},
{
@@ -2992,7 +3005,8 @@
"provider": "google",
"import": "Roboto_Slab",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/roboto-slab"
}
},
{
@@ -3004,7 +3018,8 @@
"provider": "google",
"import": "Merriweather",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/merriweather"
}
},
{
@@ -3016,7 +3031,8 @@
"provider": "google",
"import": "Lora",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/lora"
}
},
{
@@ -3028,7 +3044,8 @@
"provider": "google",
"import": "Playfair_Display",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/playfair-display"
}
}
]

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/dm-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/figtree"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-mono",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/geist-mono"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/geist"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/inter"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-mono",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/jetbrains-mono"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/lora"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/merriweather"
}
}

View File

@@ -7,6 +7,7 @@
"family": "'Noto Sans Variable', sans-serif",
"provider": "google",
"import": "Noto_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/noto-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/noto-serif"
}
}

View File

@@ -7,6 +7,7 @@
"family": "'Nunito Sans Variable', sans-serif",
"provider": "google",
"import": "Nunito_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/nunito-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/outfit"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/playfair-display"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/public-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/raleway"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-serif",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/roboto-slab"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/roboto"
}
}

View File

@@ -2838,7 +2838,8 @@
"provider": "google",
"import": "Geist",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/geist"
}
},
{
@@ -2850,7 +2851,8 @@
"provider": "google",
"import": "Inter",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/inter"
}
},
{
@@ -2861,7 +2863,8 @@
"family": "'Noto Sans Variable', sans-serif",
"provider": "google",
"import": "Noto_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/noto-sans"
}
},
{
@@ -2872,7 +2875,8 @@
"family": "'Nunito Sans Variable', sans-serif",
"provider": "google",
"import": "Nunito_Sans",
"variable": "--font-sans"
"variable": "--font-sans",
"dependency": "@fontsource-variable/nunito-sans"
}
},
{
@@ -2884,7 +2888,8 @@
"provider": "google",
"import": "Figtree",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/figtree"
}
},
{
@@ -2896,7 +2901,8 @@
"provider": "google",
"import": "Roboto",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/roboto"
}
},
{
@@ -2908,7 +2914,8 @@
"provider": "google",
"import": "Raleway",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/raleway"
}
},
{
@@ -2920,7 +2927,8 @@
"provider": "google",
"import": "DM_Sans",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/dm-sans"
}
},
{
@@ -2932,7 +2940,8 @@
"provider": "google",
"import": "Public_Sans",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/public-sans"
}
},
{
@@ -2944,7 +2953,8 @@
"provider": "google",
"import": "Outfit",
"variable": "--font-sans",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/outfit"
}
},
{
@@ -2956,7 +2966,8 @@
"provider": "google",
"import": "JetBrains_Mono",
"variable": "--font-mono",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/jetbrains-mono"
}
},
{
@@ -2968,7 +2979,8 @@
"provider": "google",
"import": "Geist_Mono",
"variable": "--font-mono",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/geist-mono"
}
},
{
@@ -2980,7 +2992,8 @@
"provider": "google",
"import": "Noto_Serif",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/noto-serif"
}
},
{
@@ -2992,7 +3005,8 @@
"provider": "google",
"import": "Roboto_Slab",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/roboto-slab"
}
},
{
@@ -3004,7 +3018,8 @@
"provider": "google",
"import": "Merriweather",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/merriweather"
}
},
{
@@ -3016,7 +3031,8 @@
"provider": "google",
"import": "Lora",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/lora"
}
},
{
@@ -3028,7 +3044,8 @@
"provider": "google",
"import": "Playfair_Display",
"variable": "--font-serif",
"subsets": ["latin"]
"subsets": ["latin"],
"dependency": "@fontsource-variable/playfair-display"
}
}
]

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/dm-sans"
}
}

View File

@@ -10,6 +10,7 @@
"variable": "--font-sans",
"subsets": [
"latin"
]
],
"dependency": "@fontsource-variable/figtree"
}
}

Some files were not shown because too many files have changed in this diff Show More