diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 007463b4d..000000000 --- a/.editorconfig +++ /dev/null @@ -1,12 +0,0 @@ -root = true - -[*] -indent_size = 2 -indent_style = space -end_of_line = lf -charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = true - -[*.md] -trim_trailing_whitespace = false diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 81705cc5d..000000000 --- a/.eslintignore +++ /dev/null @@ -1,4 +0,0 @@ -dist -node_modules -.output -.nuxt diff --git a/.eslintrc.cjs b/.eslintrc.cjs deleted file mode 100644 index 101f1835e..000000000 --- a/.eslintrc.cjs +++ /dev/null @@ -1,16 +0,0 @@ -module.exports = { - root: true, - extends: ['@nuxt/eslint-config'], - rules: { - // Global - semi: ['error', 'never'], - quotes: ['error', 'single'], - 'quote-props': ['error', 'as-needed'], - 'no-unused-vars': ['error', { argsIgnorePattern: '^_' }], - - // Vue - indent: ['error', 2], - 'vue/multi-word-component-names': 0, - 'vue/no-v-html': 0 - } -} diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 518abed9a..000000000 --- a/.gitignore +++ /dev/null @@ -1,26 +0,0 @@ -node_modules -*.log -.nuxt -nuxt.d.ts -.output -.env -package-lock.json -framework -dist -.DS_Store - -# Yarn -.yarn/cache -.yarn/*state* - -# Local History -.history - -# VSCode -.vscode/ -tailwind.config.js.local - -# Starters lockfiles -.starters/**/yarn.lock -.starters/**/package-lock.json -.starters/**/pnpm-lock.yaml diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 000000000..e69de29bb diff --git a/.npmrc b/.npmrc deleted file mode 100644 index bf2e7648b..000000000 --- a/.npmrc +++ /dev/null @@ -1 +0,0 @@ -shamefully-hoist=true diff --git a/.starters/default/.eslintignore b/.starters/default/.eslintignore deleted file mode 100644 index a1bd0c80d..000000000 --- a/.starters/default/.eslintignore +++ /dev/null @@ -1,4 +0,0 @@ -dist -node_modules -.output -.nuxt \ No newline at end of file diff --git a/.starters/default/.eslintrc.cjs b/.starters/default/.eslintrc.cjs deleted file mode 100644 index 38db31380..000000000 --- a/.starters/default/.eslintrc.cjs +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = { - root: true, - extends: '@nuxt/eslint-config', - rules: { - 'vue/max-attributes-per-line': 'off', - 'vue/multi-word-component-names': 'off' - } -} \ No newline at end of file diff --git a/.starters/default/.gitignore b/.starters/default/.gitignore deleted file mode 100755 index 69f6b69d0..000000000 --- a/.starters/default/.gitignore +++ /dev/null @@ -1,12 +0,0 @@ -node_modules -*.iml -.idea -*.log* -.nuxt -.vscode -.DS_Store -coverage -dist -sw.* -.env -.output diff --git a/.starters/default/.npmrc b/.starters/default/.npmrc deleted file mode 100644 index cf0404245..000000000 --- a/.starters/default/.npmrc +++ /dev/null @@ -1,2 +0,0 @@ -shamefully-hoist=true -strict-peer-dependencies=false diff --git a/.starters/default/CNAME b/.starters/default/CNAME new file mode 100644 index 000000000..36b2d0e54 --- /dev/null +++ b/.starters/default/CNAME @@ -0,0 +1 @@ +alpine.nuxt.space diff --git a/.starters/default/README.md b/.starters/default/README.md deleted file mode 100755 index 7832f383d..000000000 --- a/.starters/default/README.md +++ /dev/null @@ -1,57 +0,0 @@ -# Alpine Starter - -Starter template for [Alpine](https://alpine.nuxt.space). - -## Clone - -Clone the repository (using `nuxi`): - -```bash -npx nuxi init -t themes/alpine -``` - -## Setup - -Install dependencies: - -```bash -pnpm install -``` - -## Development - -```bash -pnpm dev -``` - -## Edge Side Rendering - -Can be deployed to Vercel Functions, Netlify Functions, AWS, and most Node-compatible environments. - -Look at all the available presets [here](https://v3.nuxtjs.org/guide/deploy/presets). - -```bash -pnpm build -``` - -## Static Generation - -Use the `generate` command to build your application. - -The HTML files will be generated in the .output/public directory and ready to be deployed to any static compatible hosting. - -```bash -pnpm generate -``` - -## Preview build - -You might want to preview the result of your build locally, to do so, run the following command: - -```bash -pnpm preview -``` - ---- - -For a detailed explanation of how things work, check out [Alpine](https://alpine.nuxt.space). diff --git a/.starters/default/app.config.ts b/.starters/default/app.config.ts deleted file mode 100644 index 8a1e0ea97..000000000 --- a/.starters/default/app.config.ts +++ /dev/null @@ -1,41 +0,0 @@ -export default defineAppConfig({ - alpine: { - title: 'Alpine', - description: 'The minimalist blog theme', - image: { - src: '/social-card-preview.png', - alt: 'An image showcasing my project.', - width: 400, - height: 300 - }, - header: { - position: 'right', // possible value are : | 'left' | 'center' | 'right' - logo: { - path: '/logo.svg', // path of the logo - pathDark: '/logo-dark.svg', // path of the logo in dark mode, leave this empty if you want to use the same logo - alt: 'alpine' // alt of the logo - } - }, - footer: { - credits: { - enabled: true, // possible value are : true | false - repository: 'https://www.github.com/nuxt-themes/alpine' // our github repository - }, - navigation: true, // possible value are : true | false - alignment: 'center', // possible value are : 'none' | 'left' | 'center' | 'right' - message: 'Follow me on' // string that will be displayed in the footer (leave empty or delete to disable) - }, - socials: { - twitter: 'nuxtlabs', - instagram: 'atinuxt', - linkedin: { - icon: 'uil:linkedin', - label: 'LinkedIn', - href: 'https://www.linkedin.com/company/nuxtlabs' - } - }, - form: { - successMessage: 'Message sent. Thank you!' - } - } -}) diff --git a/.starters/default/content/1.index.md b/.starters/default/content/1.index.md deleted file mode 100644 index ee57cb37c..000000000 --- a/.starters/default/content/1.index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: default -head.title: Alpine -description: An open source blog theme powered by Nuxt. -title: About ---- - -::hero ---- -image: '/alpine-0.webp' ---- -#title -Hi, I am Alpine. -#description -- An [open source blog theme](https://github.com/nuxt-themes/alpine) powered by [Nuxt Content](https://content.nuxtjs.org), editable on [Nuxt Studio](https://studio.nuxt.com). -- Write pages in Markdown and Vue components with the [MDC syntax](https://content.nuxtjs.org/guide/writing/mdc). -- Use [**30+ built-in**](https://elements.nuxt.space) components in your Markdown pages. -:: - -Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non risus. Suspendisse lectus tortor, dignissim sit amet, adipiscing nec, ultricies sed, dolor. Cras elementum ultrices diam. Maecenas ligula massa, varius a, semper congue, euismod non, mi. Proin porttitor, orci nec nonummy molestie, enim est eleifend mi, non fermentum diam nisl sit amet erat. Duis semper. Duis arcu massa, scelerisque vitae, consequat in, pretium a, enim. - -Pellentesque congue. Ut in risus volutpat libero pharetra tempor. Cras vestibulum bibendum augue. Praesent egestas leo in pede. Praesent blandit odio eu enim. Pellentesque sed dui ut augue blandit sodales. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aliquam nibh. Mauris ac mauris sed pede pellentesque fermentum. Maecenas adipiscing ante non diam sodales hendrerit. - -::gallery ---- -images: - - /alpine-0.webp - - /alpine-1.webp - - /alpine-2.webp ---- -:: diff --git a/.starters/default/content/2.articles.md b/.starters/default/content/2.articles.md deleted file mode 100644 index 382bc697a..000000000 --- a/.starters/default/content/2.articles.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: 'Articles' -layout: 'page' ---- - -::articles-list ---- -path: articles ---- -:: diff --git a/.starters/default/content/3.contact.md b/.starters/default/content/3.contact.md deleted file mode 100644 index cf7d3c8f4..000000000 --- a/.starters/default/content/3.contact.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: 'Contact' -layout: 'default' -# Custom og:image ---- - -# Get in touch - -::contact-form ---- -fields: - - type: 'text' - name: 'name' - label: 'Your name' - required: true - - - type: 'email' - name: 'email' - label: 'Your email' - required: true - - - type: 'text' - name: 'subject' - label: 'Subject' - required: false - - - type: 'textarea' - name: 'message' - label: 'Message' - required: true ---- -:: diff --git a/.starters/default/content/articles/1.get-started.md b/.starters/default/content/articles/1.get-started.md deleted file mode 100644 index 5ecac5b60..000000000 --- a/.starters/default/content/articles/1.get-started.md +++ /dev/null @@ -1,76 +0,0 @@ ---- -cover: /articles/get-started.webp -author: - name: Sébastien Chopin - avatarUrl: https://pbs.twimg.com/profile_images/1042510623962275840/1Iw_Mvud_400x400.jpg - link: https://twitter.com/atinux -date: 2022-08-23 -layout: article ---- - -# Get started with Alpine - -Creating a blog with Alpine is a command away, as well as deploying to many platforms. - -## Create a blog - -Open a terminal an run the following command: - -```bash -npx nuxi@latest init -t themes/alpine -``` - -## Dependencies - -Next, go to to `my-blog/` directory and install the dependencies: - -```bash -npm install -``` - -## Development - -Start the development server on port 3000: - -```bash -npm run dev -``` - -Next, you can start creating your content in Markdown in the `content/` directory. - - -## Deploy - -### Static hosting - -You can deploy Alpine to any static hosting by running the following command: - -```bash -npm run generate -``` - -This command will create a `dist/` directory with the compiled files ready to be uploaded to any static hosting. - -### Edge platforms - -Alpine supports deploying to the following platforms with **zero configuration**: - -- [Vercel](https://vercel.com) -- [Netlify](https://netlify.com) -- [and more...](https://v3.nuxtjs.org/guide/deploy/presets#supported-hosting-providers) - -### Node server - -You can deploy Alpine to a Node server by running the following command: - -```bash -npm run build -``` - -This command will create a `.output/` directory with the compiled files ready to be uploaded to any Node server. - -To start the production server, run the following command: - -```bash -node .output/server/index.mjs -``` diff --git a/.starters/default/content/articles/2.configure.md b/.starters/default/content/articles/2.configure.md deleted file mode 100644 index 8caf5400b..000000000 --- a/.starters/default/content/articles/2.configure.md +++ /dev/null @@ -1,92 +0,0 @@ ---- -cover: /articles/configure-alpine.webp -author: - name: Clément Ollivier - avatarUrl: https://pbs.twimg.com/profile_images/1370286658432724996/ZMSDzzIi_400x400.jpg - link: https://twitter.com/clemcodes -date: 2022-08-23 -description: Learn how to configure Alpine with the app.config.ts file. -layout: article ---- - -# Configure Alpine - -To configure meta tags, social links or even the Alpine theme display, update the `alpine` key in the `app.config.ts` at the root of your project: - -```ts [app.config.ts] -export default defineAppConfig({ - alpine: { - /* Alpine configuration goes here */ - } -} -``` - -You can look at the [default config](https://github.com/nuxt-themes/alpine/tree/dev/app.config.ts). - -The [config schema](https://github.com/nuxt-themes/alpine/tree/dev/app.config.ts) also gives comments on all the configuration parameters. - -## Meta tags - -Configure the title, description and social image of your website: - -```ts [app.config.ts] -export default defineAppConfig({ - alpine: { - title: 'Alpine', - description: 'The minimalist blog theme', - image: '/social-card-preview.png', - // image can also be an object: - image: { - src: '/social-card-preview.png', - alt: 'An image showcasing my project.', - width: 400, - height: 300 - } - } -}) -``` - -## Social links - -To configure the social links displayed in the footer, use the `socials` property: - -```ts [app.config.ts] -export default defineAppConfig({ - alpine: { - socials: { - twitter: 'nuxtlabs', - instagram: 'wearenuxt', - linkedin: { - icon: 'uil:linkedin', - label: 'LinkedIn', - href: 'https://www.linkedin.com/company/nuxtlabs' - } - } - } -}) -``` - -## Theme display - -Alpine Header and Footer can also be customized via the `app.config.ts` file: - -```ts [app.config.ts] -defineAppConfig({ - alpine: { - // Remove header with header: false - header: { - position: 'inline', // possible value are : 'none' | 'left' | 'center' | 'right' | 'inline' - logo: false - }, - // Remove header with footer: false - footer: { - credits: { - enabled: true, // possible value are : true | false - repository: 'https://www.github.com/nuxt-themes/alpine' // our github repository - }, - navigation: false, // possible value are : true | false - position: 'center', // possible value are : 'none' | 'left' | 'center' | 'right' - message: 'Follow me on' // string that will be displayed on the footer (leave empty or delete to disable) - } -}) -``` diff --git a/.starters/default/content/articles/3.write-articles.md b/.starters/default/content/articles/3.write-articles.md deleted file mode 100644 index 1a4e3b89e..000000000 --- a/.starters/default/content/articles/3.write-articles.md +++ /dev/null @@ -1,98 +0,0 @@ ---- -cover: /articles/write-articles.webp -date: 2022-08-23 -description: Writing Markdown articles in Alpine is straightforward. -layout: article ---- - -# Write Articles - -Write Markdown articles in Alpine is straightforward. - -## Create an articles list - -Create a new file in the `content/` directory: - -```bash -touch content/2.articles.md -``` - -The numbered prefix determines the order of the menu items. - -In this file, use the `articles-list` component to display the list of articles: - -```md [2.articles.md] ---- -title: 'Articles' -layout: 'page' ---- - -::articles-list ---- -path: articles ---- -:: - -``` - -The `path` prop corresponds to the directory where the articles are stored. - -## Display an article in the list - -Create a new file in the `/content/articles` directory: - -```bash -mkdir content/articles -touch content/articles/1.my-new-article.md -``` - -For your article to be correctly displayed in the [articles list](/articles), define a `cover` and `date` property in the frontmatter: - -```yaml [content/articles/1.my-new-article.md] ---- -cover: path/to/cover -date: 2022-08-23 ---- -``` - -The `cover` property can be a local path relative to the `/public` directory or an external URL. - -Your article will now be displayed in the list with its filename as a default title. - -## Edit your article - -Under the frontmatter block, enter a Markdown `h1` tag and a line of text: - -```md [content/articles/1.my-new-article.md] ---- -cover: path/to/cover -date: 2022-08-23 ---- - -# An awesome article - -This article is little by size but big by heart. -``` - -Your article will now be displayed in the list with the title and description you wrote in Markdown. - -## Override title and description - -If you want to change the title and description displayed on the list and in the meta tags of the article, add the `title` and `description` property to your frontmatter: - -```md[content/articles/1.my-new-article.md] ---- -cover: path/to/cover -date: 2022-08-23 -title: Another title -description: Another description ---- -``` - -You are now ready to edit your article and create new ones! - -## Read more - -Alpine is a Nuxt theme using the Content module in `documentDriven` mode. - -👉 Learn more in the [Nuxt Content documentation](https://content.nuxtjs.org/). diff --git a/.starters/default/content/articles/4.design-tokens.md b/.starters/default/content/articles/4.design-tokens.md deleted file mode 100644 index 709ece66c..000000000 --- a/.starters/default/content/articles/4.design-tokens.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -cover: /articles/design-tokens.webp -date: 2022-08-23 -layout: article ---- - -# Customize Alpine - -Leverage the `tokens.config.ts` to give your identity to Alpine. - -Look at the [default tokens config](https://github.com/nuxt-themes/alpine/tree/dev/tokens.config.ts) to check all the Alpine related Design Tokens. - -Alpine is also powered by [@nuxt-themes/tokens](https://github.com/nuxt-themes/tokens). - -You can configure all the theme tokens to change the apperance of Alpine. diff --git a/.starters/default/nuxt.config.ts b/.starters/default/nuxt.config.ts deleted file mode 100755 index b88f4dace..000000000 --- a/.starters/default/nuxt.config.ts +++ /dev/null @@ -1,9 +0,0 @@ -export default defineNuxtConfig({ - // https://github.com/nuxt-themes/alpine - extends: '@nuxt-themes/alpine', - - modules: [ - // https://github.com/nuxt/devtools - '@nuxt/devtools' - ] -}) diff --git a/.starters/default/package.json b/.starters/default/package.json deleted file mode 100755 index de0d21251..000000000 --- a/.starters/default/package.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "alpine-starter", - "version": "0.1.0", - "private": true, - "scripts": { - "dev": "nuxi dev", - "build": "nuxi build", - "generate": "nuxi generate", - "preview": "nuxi preview" - }, - "devDependencies": { - "nuxt": "^3.4.3", - "@nuxt-themes/alpine": "^1.5.4", - "@nuxt/devtools": "^0.4.6", - "@nuxt/eslint-config": "^0.1.1", - "eslint": "^8.40.0" - } -} diff --git a/.starters/default/renovate.json b/.starters/default/renovate.json deleted file mode 100755 index 75ac0dd39..000000000 --- a/.starters/default/renovate.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": [ - "@nuxtjs" - ], - "lockFileMaintenance": { - "enabled": true - } -} diff --git a/.starters/default/tokens.config.ts b/.starters/default/tokens.config.ts deleted file mode 100644 index f266d6df7..000000000 --- a/.starters/default/tokens.config.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { defineTheme } from 'pinceau' - -export default defineTheme({ - // Defaults from: - // 1. https://github.com/nuxt-themes/tokens - // 2. https://github.com/nuxt-themes/typography/blob/main/tokens.config.ts - // 3. https://github.com/nuxt-themes/elements/blob/main/tokens.config.ts - // 4. https://github.com/nuxt-themes/alpine/blob/main/tokens.config.ts -}) diff --git a/.starters/default/tsconfig.json b/.starters/default/tsconfig.json deleted file mode 100755 index 4b34df157..000000000 --- a/.starters/default/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "./.nuxt/tsconfig.json" -} diff --git a/200.html b/200.html new file mode 100644 index 000000000..b6b791360 --- /dev/null +++ b/200.html @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + +
+ \ No newline at end of file diff --git a/404.html b/404.html new file mode 100644 index 000000000..b6b791360 --- /dev/null +++ b/404.html @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + +
+ \ No newline at end of file diff --git a/CNAME b/CNAME new file mode 100644 index 000000000..cc7f3fb30 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +alpine.nuxt.space \ No newline at end of file diff --git a/LICENSE b/LICENSE deleted file mode 100644 index d9618d50d..000000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2022 NuxtLabs SAS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index 42c1d0cdb..000000000 --- a/README.md +++ /dev/null @@ -1,60 +0,0 @@ -[![Alpine](./.starters/default/public/social-card-preview.png)](https://alpine.nuxt.space) - -# Alpine - -[![npm version][npm-version-src]][npm-version-href] -[![License][license-src]][license-href] -[![npm downloads][npm-downloads-src]][npm-downloads-href] -[![Nuxt][nuxt-src]][nuxt-href] -[![Nuxt Studio][nuxt-studio-src]][nuxt-studio-href] -[![Volta][volta-src]][volta-href] - -The minimalist blog theme, powered by [Nuxt](https://nuxt.com). - - -- [📸 Online demo](https://alpine.nuxt.space) -- [⚡️ Play on StackBlitz](https://stackblitz.com/github/nuxt-themes/alpine-starter) - -## Features - -- Start from a **profile page**, scale to a **complete blog**! -- An [open source blog theme](https://github.com/nuxt-themes/alpine) powered by [Nuxt Content](https://content.nuxtjs.org), editable from [Nuxt Studio](https://nuxt.studio). -- Write pages in Markdown and Vue components with the [MDC syntax](https://content.nuxtjs.org/guide/writing/mdc). -- Use [**30+ built-in**](https://elements.nuxt.space) components in your Markdown pages. - -## Quick Start - -```bash -npx nuxi@latest init -t themes/alpine -``` - -## Contributing 🙏 - -1. Clone this repository -2. Install dependencies using `pnpm install` -3. Run `pnpm prepare` to generate type stubs. -4. Use `pnpm dev` to start [playground](./playground) in development mode. - -## License - -[MIT](./LICENSE) - - -[npm-version-src]: https://img.shields.io/npm/v/@nuxt-themes/alpine/latest.svg?style=flat&colorA=18181B&colorB=28CF8D -[npm-version-href]: https://npmjs.com/package/@nuxt-themes/alpine - -[npm-downloads-src]: https://img.shields.io/npm/dt/@nuxt-themes/alpine.svg?style=flat&colorA=18181B&colorB=28CF8D -[npm-downloads-href]: https://npmjs.com/package/@nuxt-themes/alpine - -[license-src]: https://img.shields.io/github/license/nuxt-themes/alpine.svg?style=flat&colorA=18181B&colorB=28CF8D -[license-href]: https://github.com/nuxt-themes/alpine/blob/main/LICENSE - - -[nuxt-src]: https://img.shields.io/badge/Nuxt-18181B?&logo=nuxt.js -[nuxt-href]: https://nuxt.com - -[nuxt-studio-src]: https://img.shields.io/badge/Open%20in%20Nuxt%20Studio-18181B?&logo=nuxt.js&logoColor=3BB5EC -[nuxt-studio-href]: https://nuxt.studio/themes/alpine - -[volta-src]: https://user-images.githubusercontent.com/904724/209143798-32345f6c-3cf8-4e06-9659-f4ace4a6acde.svg -[volta-href]: https://volta.net/nuxt-themes/alpine?utm_source=readme_alpine diff --git a/__studio.json b/__studio.json new file mode 100644 index 000000000..95b539f4f --- /dev/null +++ b/__studio.json @@ -0,0 +1 @@ +{"version":"0.14.1","tokens":"df0f47329024fc56b11978936e0e8ac1b0213ac82e47a9a1584cb5b8da096da4","appConfigSchema":{"properties":{"id":"#appConfig","properties":{"nuxtIcon":{"title":"Nuxt Icon","description":"Configure the defaults of Nuxt Icon","id":"#appConfig/nuxtIcon","properties":{"size":{"title":"Icon Size","description":"Set the default icon size. Set to false to disable the sizing of icon in style.","tags":["@studioIcon material-symbols:format-size-rounded"],"tsType":"string | false","id":"#appConfig/nuxtIcon/size","default":"1em","type":"string"},"class":{"title":"CSS Class","description":"Set the default CSS class","tags":["@studioIcon material-symbols:css"],"id":"#appConfig/nuxtIcon/class","default":"","type":"string"},"aliases":{"title":"Icon aliases","description":"Define Icon aliases to update them easily without code changes.","tags":["@studioIcon material-symbols:star-rounded","@studioInputObjectValueType icon"],"tsType":"{ [alias: string]: string }","id":"#appConfig/nuxtIcon/aliases","default":{},"type":"object"}},"type":"object","default":{"size":"1em","class":"","aliases":{}}},"prose":{"title":"","description":"","tags":[],"id":"#appConfig/prose","properties":{"copyButton":{"title":"","description":"","tags":[],"id":"#appConfig/prose/copyButton","properties":{"iconCopy":{"title":"","description":"","tags":[],"id":"#appConfig/prose/copyButton/iconCopy","default":"ph:copy","type":"string"},"iconCopied":{"title":"","description":"","tags":[],"id":"#appConfig/prose/copyButton/iconCopied","default":"ph:check","type":"string"}},"type":"object","default":{"iconCopy":"ph:copy","iconCopied":"ph:check"}},"headings":{"title":"","description":"","tags":[],"id":"#appConfig/prose/headings","properties":{"icon":{"title":"","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/headings/icon","default":"ph:link","type":"string"}},"type":"object","default":{"icon":"ph:link"}},"h1":{"title":"","description":"","tags":[],"id":"#appConfig/prose/h1","properties":{"icon":{"title":"","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h1/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h2":{"title":"","description":"","tags":[],"id":"#appConfig/prose/h2","properties":{"icon":{"title":"","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h2/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h3":{"title":"","description":"","tags":[],"id":"#appConfig/prose/h3","properties":{"icon":{"title":"","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h3/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h4":{"title":"","description":"","tags":[],"id":"#appConfig/prose/h4","properties":{"icon":{"title":"","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h4/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h5":{"title":"","description":"","tags":[],"id":"#appConfig/prose/h5","properties":{"icon":{"title":"","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h5/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h6":{"title":"","description":"","tags":[],"id":"#appConfig/prose/h6","properties":{"icon":{"title":"","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h6/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}}},"type":"object","default":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}}},"alpine":{"title":"","description":"","tags":[],"id":"#appConfig/alpine","properties":{"title":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/title","default":"Alpine","type":"string"},"description":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/description","default":"The minimalist blog theme","type":"string"},"image":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/image","properties":{"src":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/image/src","default":"/social-card-preview.png","type":"string"},"alt":{"type":"string","id":"#appConfig/alpine/image/alt","default":"An image showcasing my project."},"width":{"type":"number","id":"#appConfig/alpine/image/width","default":400},"height":{"type":"number","id":"#appConfig/alpine/image/height","default":300}},"type":"object","default":{"src":"/social-card-preview.png","alt":"An image showcasing my project.","width":400,"height":300}},"header":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/header","properties":{"position":{"title":"","description":"","tags":[],"tsType":"'left'|'center'|'right'","id":"#appConfig/alpine/header/position","default":"right","type":"string"},"logo":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/header/logo","properties":{"path":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/header/logo/path","default":"/logo.svg","type":"string"},"pathDark":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/header/logo/pathDark","default":"/logo-dark.svg","type":"string"},"alt":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/header/logo/alt","default":"Alpine theme logo","type":"string"}},"type":"object","default":{"path":"/logo.svg","pathDark":"/logo-dark.svg","alt":"Alpine theme logo"}}},"type":"object","default":{"position":"right","logo":{"path":"/logo.svg","pathDark":"/logo-dark.svg","alt":"Alpine theme logo"}}},"footer":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/footer","properties":{"credits":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/footer/credits","properties":{"enabled":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/footer/credits/enabled","default":true,"type":"boolean"},"text":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/footer/credits/text","default":"Alpine","type":"string"},"repository":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/footer/credits/repository","default":"https://www.github.com/nuxt-themes/alpine","type":"string"}},"type":"object","default":{"enabled":true,"text":"Alpine","repository":"https://www.github.com/nuxt-themes/alpine"}},"navigation":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/footer/navigation","default":true,"type":"boolean"},"alignment":{"title":"","description":"","tags":[],"tsType":"'left'|'center'|'right'","id":"#appConfig/alpine/footer/alignment","default":"center","type":"string"},"message":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/footer/message","default":"Follow me on","type":"string"}},"type":"object","default":{"credits":{"enabled":true,"text":"Alpine","repository":"https://www.github.com/nuxt-themes/alpine"},"navigation":true,"alignment":"center","message":"Follow me on"}},"socials":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/socials","properties":{"twitter":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/socials/twitter","default":"","type":"string"},"instagram":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/socials/instagram","default":"","type":"string"},"github":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/socials/github","default":"","type":"string"},"facebook":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/socials/facebook","default":"","type":"string"},"medium":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/socials/medium","default":"","type":"string"},"youtube":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/socials/youtube","default":"","type":"string"}},"type":"object","default":{"twitter":"","instagram":"","github":"","facebook":"","medium":"","youtube":""}},"form":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/form","properties":{"successMessage":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/form/successMessage","default":"Message sent. Thank you!","type":"string"}},"type":"object","default":{"successMessage":"Message sent. Thank you!"}},"backToTop":{"title":"","description":"","tags":[],"id":"#appConfig/alpine/backToTop","properties":{"icon":{"type":"string","id":"#appConfig/alpine/backToTop/icon","default":"material-symbols:arrow-upward"},"text":{"type":"string","id":"#appConfig/alpine/backToTop/text","default":"Back to top"}},"type":"object","default":{"icon":"material-symbols:arrow-upward","text":"Back to top"}}},"type":"object","default":{"title":"Alpine","description":"The minimalist blog theme","image":{"src":"/social-card-preview.png","alt":"An image showcasing my project.","width":400,"height":300},"header":{"position":"right","logo":{"path":"/logo.svg","pathDark":"/logo-dark.svg","alt":"Alpine theme logo"}},"footer":{"credits":{"enabled":true,"text":"Alpine","repository":"https://www.github.com/nuxt-themes/alpine"},"navigation":true,"alignment":"center","message":"Follow me on"},"socials":{"twitter":"","instagram":"","github":"","facebook":"","medium":"","youtube":""},"form":{"successMessage":"Message sent. Thank you!"},"backToTop":{"icon":"material-symbols:arrow-upward","text":"Back to top"}}}},"type":"object","default":{"nuxtIcon":{"size":"1em","class":"","aliases":{}},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}},"alpine":{"title":"Alpine","description":"The minimalist blog theme","image":{"src":"/social-card-preview.png","alt":"An image showcasing my project.","width":400,"height":300},"header":{"position":"right","logo":{"path":"/logo.svg","pathDark":"/logo-dark.svg","alt":"Alpine theme logo"}},"footer":{"credits":{"enabled":true,"text":"Alpine","repository":"https://www.github.com/nuxt-themes/alpine"},"navigation":true,"alignment":"center","message":"Follow me on"},"socials":{"twitter":"","instagram":"","github":"","facebook":"","medium":"","youtube":""},"form":{"successMessage":"Message sent. Thank you!"},"backToTop":{"icon":"material-symbols:arrow-upward","text":"Back to top"}}}},"default":{"nuxtIcon":{"size":"1em","class":"","aliases":{}},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}},"alpine":{"title":"Alpine","description":"The minimalist blog theme","image":{"src":"/social-card-preview.png","alt":"An image showcasing my project.","width":400,"height":300},"header":{"position":"right","logo":{"path":"/logo.svg","pathDark":"/logo-dark.svg","alt":"Alpine theme logo"}},"footer":{"credits":{"enabled":true,"text":"Alpine","repository":"https://www.github.com/nuxt-themes/alpine"},"navigation":true,"alignment":"center","message":"Follow me on"},"socials":{"twitter":"","instagram":"","github":"","facebook":"","medium":"","youtube":""},"form":{"successMessage":"Message sent. Thank you!"},"backToTop":{"icon":"material-symbols:arrow-upward","text":"Back to top"}}}},"appConfig":{"nuxt":{"buildId":"07b30e1f-60f5-47aa-9ba1-9185fd48010c"},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"}},"alpine":{"title":"Alpine","description":"The minimalist blog theme","image":{"src":"/social-card-preview.png","alt":"An image showcasing my project.","width":400,"height":300},"header":{"position":"right","logo":{"path":"/logo.svg","pathDark":"/logo-dark.svg","alt":"alpine"}},"footer":{"credits":{"enabled":true,"text":"Alpine","repository":"https://www.github.com/nuxt-themes/alpine"},"navigation":true,"alignment":"center","message":"Follow me on"},"socials":{"twitter":"nuxtlabs","instagram":"atinuxt","github":"","facebook":"","medium":"","youtube":"","linkedin":{"icon":"uil:linkedin","label":"LinkedIn","href":"https://www.linkedin.com/company/nuxtlabs"}},"form":{"successMessage":"Message sent. Thank you!"},"backToTop":{"text":"Back to top","icon":"material-symbols:arrow-upward"}}},"tokensConfigSchema":{"properties":{"id":"#tokensConfig","properties":{"media":{"title":"Your website media queries.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:screenshot-monitor-outline-rounded"],"id":"#tokensConfig/media","properties":{"xs":{"id":"#tokensConfig/media/xs","properties":{"value":{"type":"string","id":"#tokensConfig/media/xs/value","default":"(min-width: 475px)"}},"type":"object","default":{"value":"(min-width: 475px)"}},"sm":{"id":"#tokensConfig/media/sm","properties":{"value":{"type":"string","id":"#tokensConfig/media/sm/value","default":"(min-width: 640px)"}},"type":"object","default":{"value":"(min-width: 640px)"}},"md":{"id":"#tokensConfig/media/md","properties":{"value":{"type":"string","id":"#tokensConfig/media/md/value","default":"(min-width: 768px)"}},"type":"object","default":{"value":"(min-width: 768px)"}},"lg":{"id":"#tokensConfig/media/lg","properties":{"value":{"type":"string","id":"#tokensConfig/media/lg/value","default":"(min-width: 1024px)"}},"type":"object","default":{"value":"(min-width: 1024px)"}},"xl":{"id":"#tokensConfig/media/xl","properties":{"value":{"type":"string","id":"#tokensConfig/media/xl/value","default":"(min-width: 1280px)"}},"type":"object","default":{"value":"(min-width: 1280px)"}},"2xl":{"id":"#tokensConfig/media/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/media/2xl/value","default":"(min-width: 1536px)"}},"type":"object","default":{"value":"(min-width: 1536px)"}},"rm":{"id":"#tokensConfig/media/rm","properties":{"value":{"type":"string","id":"#tokensConfig/media/rm/value","default":"(prefers-reduced-motion: reduce)"}},"type":"object","default":{"value":"(prefers-reduced-motion: reduce)"}},"landscape":{"id":"#tokensConfig/media/landscape","properties":{"value":{"type":"string","id":"#tokensConfig/media/landscape/value","default":"only screen and (orientation: landscape)"}},"type":"object","default":{"value":"only screen and (orientation: landscape)"}},"portrait":{"id":"#tokensConfig/media/portrait","properties":{"value":{"type":"string","id":"#tokensConfig/media/portrait/value","default":"only screen and (orientation: portrait)"}},"type":"object","default":{"value":"only screen and (orientation: portrait)"}}},"type":"object","default":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}}},"color":{"title":"Your website color palette.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon ph:palette"],"id":"#tokensConfig/color","properties":{"white":{"id":"#tokensConfig/color/white","properties":{"value":{"type":"string","id":"#tokensConfig/color/white/value","default":"#FFFFFF"}},"type":"object","default":{"value":"#FFFFFF"}},"black":{"id":"#tokensConfig/color/black","properties":{"value":{"type":"string","id":"#tokensConfig/color/black/value","default":"#0c0c0d"}},"type":"object","default":{"value":"#0c0c0d"}},"gray":{"id":"#tokensConfig/color/gray","properties":{"50":{"id":"#tokensConfig/color/gray/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/50/value","default":"#fafafa"}},"type":"object","default":{"value":"#fafafa"}},"100":{"id":"#tokensConfig/color/gray/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/100/value","default":"#f4f4f5"}},"type":"object","default":{"value":"#f4f4f5"}},"200":{"id":"#tokensConfig/color/gray/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/200/value","default":"#e4e4e7"}},"type":"object","default":{"value":"#e4e4e7"}},"300":{"id":"#tokensConfig/color/gray/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/300/value","default":"#D4d4d8"}},"type":"object","default":{"value":"#D4d4d8"}},"400":{"id":"#tokensConfig/color/gray/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/400/value","default":"#a1a1aa"}},"type":"object","default":{"value":"#a1a1aa"}},"500":{"id":"#tokensConfig/color/gray/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/500/value","default":"#71717A"}},"type":"object","default":{"value":"#71717A"}},"600":{"id":"#tokensConfig/color/gray/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/600/value","default":"#52525B"}},"type":"object","default":{"value":"#52525B"}},"700":{"id":"#tokensConfig/color/gray/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/700/value","default":"#3f3f46"}},"type":"object","default":{"value":"#3f3f46"}},"800":{"id":"#tokensConfig/color/gray/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/800/value","default":"#27272A"}},"type":"object","default":{"value":"#27272A"}},"900":{"id":"#tokensConfig/color/gray/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/900/value","default":"#18181B"}},"type":"object","default":{"value":"#18181B"}}},"type":"object","default":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}}},"green":{"id":"#tokensConfig/color/green","properties":{"50":{"id":"#tokensConfig/color/green/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/50/value","default":"#d6ffee"}},"type":"object","default":{"value":"#d6ffee"}},"100":{"id":"#tokensConfig/color/green/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/100/value","default":"#acffdd"}},"type":"object","default":{"value":"#acffdd"}},"200":{"id":"#tokensConfig/color/green/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/200/value","default":"#83ffcc"}},"type":"object","default":{"value":"#83ffcc"}},"300":{"id":"#tokensConfig/color/green/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/300/value","default":"#30ffaa"}},"type":"object","default":{"value":"#30ffaa"}},"400":{"id":"#tokensConfig/color/green/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/400/value","default":"#00dc82"}},"type":"object","default":{"value":"#00dc82"}},"500":{"id":"#tokensConfig/color/green/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/500/value","default":"#00bd6f"}},"type":"object","default":{"value":"#00bd6f"}},"600":{"id":"#tokensConfig/color/green/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/600/value","default":"#009d5d"}},"type":"object","default":{"value":"#009d5d"}},"700":{"id":"#tokensConfig/color/green/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/700/value","default":"#007e4a"}},"type":"object","default":{"value":"#007e4a"}},"800":{"id":"#tokensConfig/color/green/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/800/value","default":"#005e38"}},"type":"object","default":{"value":"#005e38"}},"900":{"id":"#tokensConfig/color/green/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/900/value","default":"#003f25"}},"type":"object","default":{"value":"#003f25"}}},"type":"object","default":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}}},"yellow":{"id":"#tokensConfig/color/yellow","properties":{"50":{"id":"#tokensConfig/color/yellow/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/50/value","default":"#fdf6db"}},"type":"object","default":{"value":"#fdf6db"}},"100":{"id":"#tokensConfig/color/yellow/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/100/value","default":"#fcedb7"}},"type":"object","default":{"value":"#fcedb7"}},"200":{"id":"#tokensConfig/color/yellow/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/200/value","default":"#fae393"}},"type":"object","default":{"value":"#fae393"}},"300":{"id":"#tokensConfig/color/yellow/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/300/value","default":"#f8da70"}},"type":"object","default":{"value":"#f8da70"}},"400":{"id":"#tokensConfig/color/yellow/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/400/value","default":"#f7d14c"}},"type":"object","default":{"value":"#f7d14c"}},"500":{"id":"#tokensConfig/color/yellow/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/500/value","default":"#f5c828"}},"type":"object","default":{"value":"#f5c828"}},"600":{"id":"#tokensConfig/color/yellow/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/600/value","default":"#daac0a"}},"type":"object","default":{"value":"#daac0a"}},"700":{"id":"#tokensConfig/color/yellow/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/700/value","default":"#a38108"}},"type":"object","default":{"value":"#a38108"}},"800":{"id":"#tokensConfig/color/yellow/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/800/value","default":"#6d5605"}},"type":"object","default":{"value":"#6d5605"}},"900":{"id":"#tokensConfig/color/yellow/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/900/value","default":"#362b03"}},"type":"object","default":{"value":"#362b03"}}},"type":"object","default":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}}},"orange":{"id":"#tokensConfig/color/orange","properties":{"50":{"id":"#tokensConfig/color/orange/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/50/value","default":"#ffe9d9"}},"type":"object","default":{"value":"#ffe9d9"}},"100":{"id":"#tokensConfig/color/orange/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/100/value","default":"#ffd3b3"}},"type":"object","default":{"value":"#ffd3b3"}},"200":{"id":"#tokensConfig/color/orange/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/200/value","default":"#ffbd8d"}},"type":"object","default":{"value":"#ffbd8d"}},"300":{"id":"#tokensConfig/color/orange/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/300/value","default":"#ffa666"}},"type":"object","default":{"value":"#ffa666"}},"400":{"id":"#tokensConfig/color/orange/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/400/value","default":"#ff9040"}},"type":"object","default":{"value":"#ff9040"}},"500":{"id":"#tokensConfig/color/orange/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/500/value","default":"#ff7a1a"}},"type":"object","default":{"value":"#ff7a1a"}},"600":{"id":"#tokensConfig/color/orange/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/600/value","default":"#e15e00"}},"type":"object","default":{"value":"#e15e00"}},"700":{"id":"#tokensConfig/color/orange/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/700/value","default":"#a94700"}},"type":"object","default":{"value":"#a94700"}},"800":{"id":"#tokensConfig/color/orange/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/800/value","default":"#702f00"}},"type":"object","default":{"value":"#702f00"}},"900":{"id":"#tokensConfig/color/orange/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/900/value","default":"#381800"}},"type":"object","default":{"value":"#381800"}}},"type":"object","default":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}}},"red":{"id":"#tokensConfig/color/red","properties":{"50":{"id":"#tokensConfig/color/red/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/50/value","default":"#ffdbd9"}},"type":"object","default":{"value":"#ffdbd9"}},"100":{"id":"#tokensConfig/color/red/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/100/value","default":"#ffb7b3"}},"type":"object","default":{"value":"#ffb7b3"}},"200":{"id":"#tokensConfig/color/red/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/200/value","default":"#ff948d"}},"type":"object","default":{"value":"#ff948d"}},"300":{"id":"#tokensConfig/color/red/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/300/value","default":"#ff7066"}},"type":"object","default":{"value":"#ff7066"}},"400":{"id":"#tokensConfig/color/red/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/400/value","default":"#ff4c40"}},"type":"object","default":{"value":"#ff4c40"}},"500":{"id":"#tokensConfig/color/red/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/500/value","default":"#ff281a"}},"type":"object","default":{"value":"#ff281a"}},"600":{"id":"#tokensConfig/color/red/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/600/value","default":"#e10e00"}},"type":"object","default":{"value":"#e10e00"}},"700":{"id":"#tokensConfig/color/red/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/700/value","default":"#a90a00"}},"type":"object","default":{"value":"#a90a00"}},"800":{"id":"#tokensConfig/color/red/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/800/value","default":"#700700"}},"type":"object","default":{"value":"#700700"}},"900":{"id":"#tokensConfig/color/red/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/900/value","default":"#380300"}},"type":"object","default":{"value":"#380300"}}},"type":"object","default":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}}},"pear":{"id":"#tokensConfig/color/pear","properties":{"50":{"id":"#tokensConfig/color/pear/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/50/value","default":"#f7f8dc"}},"type":"object","default":{"value":"#f7f8dc"}},"100":{"id":"#tokensConfig/color/pear/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/100/value","default":"#eff0ba"}},"type":"object","default":{"value":"#eff0ba"}},"200":{"id":"#tokensConfig/color/pear/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/200/value","default":"#e8e997"}},"type":"object","default":{"value":"#e8e997"}},"300":{"id":"#tokensConfig/color/pear/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/300/value","default":"#e0e274"}},"type":"object","default":{"value":"#e0e274"}},"400":{"id":"#tokensConfig/color/pear/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/400/value","default":"#d8da52"}},"type":"object","default":{"value":"#d8da52"}},"500":{"id":"#tokensConfig/color/pear/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/500/value","default":"#d0d32f"}},"type":"object","default":{"value":"#d0d32f"}},"600":{"id":"#tokensConfig/color/pear/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/600/value","default":"#a8aa24"}},"type":"object","default":{"value":"#a8aa24"}},"700":{"id":"#tokensConfig/color/pear/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/700/value","default":"#7e801b"}},"type":"object","default":{"value":"#7e801b"}},"800":{"id":"#tokensConfig/color/pear/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/800/value","default":"#545512"}},"type":"object","default":{"value":"#545512"}},"900":{"id":"#tokensConfig/color/pear/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/900/value","default":"#2a2b09"}},"type":"object","default":{"value":"#2a2b09"}}},"type":"object","default":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}}},"teal":{"id":"#tokensConfig/color/teal","properties":{"50":{"id":"#tokensConfig/color/teal/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/50/value","default":"#d7faf8"}},"type":"object","default":{"value":"#d7faf8"}},"100":{"id":"#tokensConfig/color/teal/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/100/value","default":"#aff4f0"}},"type":"object","default":{"value":"#aff4f0"}},"200":{"id":"#tokensConfig/color/teal/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/200/value","default":"#87efe9"}},"type":"object","default":{"value":"#87efe9"}},"300":{"id":"#tokensConfig/color/teal/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/300/value","default":"#5fe9e1"}},"type":"object","default":{"value":"#5fe9e1"}},"400":{"id":"#tokensConfig/color/teal/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/400/value","default":"#36e4da"}},"type":"object","default":{"value":"#36e4da"}},"500":{"id":"#tokensConfig/color/teal/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/500/value","default":"#1cd1c6"}},"type":"object","default":{"value":"#1cd1c6"}},"600":{"id":"#tokensConfig/color/teal/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/600/value","default":"#16a79e"}},"type":"object","default":{"value":"#16a79e"}},"700":{"id":"#tokensConfig/color/teal/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/700/value","default":"#117d77"}},"type":"object","default":{"value":"#117d77"}},"800":{"id":"#tokensConfig/color/teal/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/800/value","default":"#0b544f"}},"type":"object","default":{"value":"#0b544f"}},"900":{"id":"#tokensConfig/color/teal/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/900/value","default":"#062a28"}},"type":"object","default":{"value":"#062a28"}}},"type":"object","default":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}}},"lightblue":{"id":"#tokensConfig/color/lightblue","properties":{"50":{"id":"#tokensConfig/color/lightblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/50/value","default":"#d9f8ff"}},"type":"object","default":{"value":"#d9f8ff"}},"100":{"id":"#tokensConfig/color/lightblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/100/value","default":"#b3f1ff"}},"type":"object","default":{"value":"#b3f1ff"}},"200":{"id":"#tokensConfig/color/lightblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/200/value","default":"#8deaff"}},"type":"object","default":{"value":"#8deaff"}},"300":{"id":"#tokensConfig/color/lightblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/300/value","default":"#66e4ff"}},"type":"object","default":{"value":"#66e4ff"}},"400":{"id":"#tokensConfig/color/lightblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/400/value","default":"#40ddff"}},"type":"object","default":{"value":"#40ddff"}},"500":{"id":"#tokensConfig/color/lightblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/500/value","default":"#1ad6ff"}},"type":"object","default":{"value":"#1ad6ff"}},"600":{"id":"#tokensConfig/color/lightblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/600/value","default":"#00b9e1"}},"type":"object","default":{"value":"#00b9e1"}},"700":{"id":"#tokensConfig/color/lightblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/700/value","default":"#008aa9"}},"type":"object","default":{"value":"#008aa9"}},"800":{"id":"#tokensConfig/color/lightblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/800/value","default":"#005c70"}},"type":"object","default":{"value":"#005c70"}},"900":{"id":"#tokensConfig/color/lightblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/900/value","default":"#002e38"}},"type":"object","default":{"value":"#002e38"}}},"type":"object","default":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}}},"blue":{"id":"#tokensConfig/color/blue","properties":{"50":{"id":"#tokensConfig/color/blue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/50/value","default":"#d9f1ff"}},"type":"object","default":{"value":"#d9f1ff"}},"100":{"id":"#tokensConfig/color/blue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/100/value","default":"#b3e4ff"}},"type":"object","default":{"value":"#b3e4ff"}},"200":{"id":"#tokensConfig/color/blue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/200/value","default":"#8dd6ff"}},"type":"object","default":{"value":"#8dd6ff"}},"300":{"id":"#tokensConfig/color/blue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/300/value","default":"#66c8ff"}},"type":"object","default":{"value":"#66c8ff"}},"400":{"id":"#tokensConfig/color/blue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/400/value","default":"#40bbff"}},"type":"object","default":{"value":"#40bbff"}},"500":{"id":"#tokensConfig/color/blue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/500/value","default":"#1aadff"}},"type":"object","default":{"value":"#1aadff"}},"600":{"id":"#tokensConfig/color/blue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/600/value","default":"#0090e1"}},"type":"object","default":{"value":"#0090e1"}},"700":{"id":"#tokensConfig/color/blue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/700/value","default":"#006ca9"}},"type":"object","default":{"value":"#006ca9"}},"800":{"id":"#tokensConfig/color/blue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/800/value","default":"#004870"}},"type":"object","default":{"value":"#004870"}},"900":{"id":"#tokensConfig/color/blue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/900/value","default":"#002438"}},"type":"object","default":{"value":"#002438"}}},"type":"object","default":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}}},"indigoblue":{"id":"#tokensConfig/color/indigoblue","properties":{"50":{"id":"#tokensConfig/color/indigoblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/50/value","default":"#d9e5ff"}},"type":"object","default":{"value":"#d9e5ff"}},"100":{"id":"#tokensConfig/color/indigoblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/100/value","default":"#b3cbff"}},"type":"object","default":{"value":"#b3cbff"}},"200":{"id":"#tokensConfig/color/indigoblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/200/value","default":"#8db0ff"}},"type":"object","default":{"value":"#8db0ff"}},"300":{"id":"#tokensConfig/color/indigoblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/300/value","default":"#6696ff"}},"type":"object","default":{"value":"#6696ff"}},"400":{"id":"#tokensConfig/color/indigoblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/400/value","default":"#407cff"}},"type":"object","default":{"value":"#407cff"}},"500":{"id":"#tokensConfig/color/indigoblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/500/value","default":"#1a62ff"}},"type":"object","default":{"value":"#1a62ff"}},"600":{"id":"#tokensConfig/color/indigoblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/600/value","default":"#0047e1"}},"type":"object","default":{"value":"#0047e1"}},"700":{"id":"#tokensConfig/color/indigoblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/700/value","default":"#0035a9"}},"type":"object","default":{"value":"#0035a9"}},"800":{"id":"#tokensConfig/color/indigoblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/800/value","default":"#002370"}},"type":"object","default":{"value":"#002370"}},"900":{"id":"#tokensConfig/color/indigoblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/900/value","default":"#001238"}},"type":"object","default":{"value":"#001238"}}},"type":"object","default":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}}},"royalblue":{"id":"#tokensConfig/color/royalblue","properties":{"50":{"id":"#tokensConfig/color/royalblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/50/value","default":"#dfdbfb"}},"type":"object","default":{"value":"#dfdbfb"}},"100":{"id":"#tokensConfig/color/royalblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/100/value","default":"#c0b7f7"}},"type":"object","default":{"value":"#c0b7f7"}},"200":{"id":"#tokensConfig/color/royalblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/200/value","default":"#a093f3"}},"type":"object","default":{"value":"#a093f3"}},"300":{"id":"#tokensConfig/color/royalblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/300/value","default":"#806ff0"}},"type":"object","default":{"value":"#806ff0"}},"400":{"id":"#tokensConfig/color/royalblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/400/value","default":"#614bec"}},"type":"object","default":{"value":"#614bec"}},"500":{"id":"#tokensConfig/color/royalblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/500/value","default":"#4127e8"}},"type":"object","default":{"value":"#4127e8"}},"600":{"id":"#tokensConfig/color/royalblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/600/value","default":"#2c15c4"}},"type":"object","default":{"value":"#2c15c4"}},"700":{"id":"#tokensConfig/color/royalblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/700/value","default":"#211093"}},"type":"object","default":{"value":"#211093"}},"800":{"id":"#tokensConfig/color/royalblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/800/value","default":"#160a62"}},"type":"object","default":{"value":"#160a62"}},"900":{"id":"#tokensConfig/color/royalblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/900/value","default":"#0b0531"}},"type":"object","default":{"value":"#0b0531"}}},"type":"object","default":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}}},"purple":{"id":"#tokensConfig/color/purple","properties":{"50":{"id":"#tokensConfig/color/purple/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/50/value","default":"#ead9ff"}},"type":"object","default":{"value":"#ead9ff"}},"100":{"id":"#tokensConfig/color/purple/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/100/value","default":"#d5b3ff"}},"type":"object","default":{"value":"#d5b3ff"}},"200":{"id":"#tokensConfig/color/purple/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/200/value","default":"#c08dff"}},"type":"object","default":{"value":"#c08dff"}},"300":{"id":"#tokensConfig/color/purple/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/300/value","default":"#ab66ff"}},"type":"object","default":{"value":"#ab66ff"}},"400":{"id":"#tokensConfig/color/purple/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/400/value","default":"#9640ff"}},"type":"object","default":{"value":"#9640ff"}},"500":{"id":"#tokensConfig/color/purple/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/500/value","default":"#811aff"}},"type":"object","default":{"value":"#811aff"}},"600":{"id":"#tokensConfig/color/purple/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/600/value","default":"#6500e1"}},"type":"object","default":{"value":"#6500e1"}},"700":{"id":"#tokensConfig/color/purple/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/700/value","default":"#4c00a9"}},"type":"object","default":{"value":"#4c00a9"}},"800":{"id":"#tokensConfig/color/purple/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/800/value","default":"#330070"}},"type":"object","default":{"value":"#330070"}},"900":{"id":"#tokensConfig/color/purple/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/900/value","default":"#190038"}},"type":"object","default":{"value":"#190038"}}},"type":"object","default":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}}},"pink":{"id":"#tokensConfig/color/pink","properties":{"50":{"id":"#tokensConfig/color/pink/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/50/value","default":"#ffd9f2"}},"type":"object","default":{"value":"#ffd9f2"}},"100":{"id":"#tokensConfig/color/pink/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/100/value","default":"#ffb3e5"}},"type":"object","default":{"value":"#ffb3e5"}},"200":{"id":"#tokensConfig/color/pink/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/200/value","default":"#ff8dd8"}},"type":"object","default":{"value":"#ff8dd8"}},"300":{"id":"#tokensConfig/color/pink/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/300/value","default":"#ff66cc"}},"type":"object","default":{"value":"#ff66cc"}},"400":{"id":"#tokensConfig/color/pink/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/400/value","default":"#ff40bf"}},"type":"object","default":{"value":"#ff40bf"}},"500":{"id":"#tokensConfig/color/pink/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/500/value","default":"#ff1ab2"}},"type":"object","default":{"value":"#ff1ab2"}},"600":{"id":"#tokensConfig/color/pink/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/600/value","default":"#e10095"}},"type":"object","default":{"value":"#e10095"}},"700":{"id":"#tokensConfig/color/pink/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/700/value","default":"#a90070"}},"type":"object","default":{"value":"#a90070"}},"800":{"id":"#tokensConfig/color/pink/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/800/value","default":"#70004b"}},"type":"object","default":{"value":"#70004b"}},"900":{"id":"#tokensConfig/color/pink/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/900/value","default":"#380025"}},"type":"object","default":{"value":"#380025"}}},"type":"object","default":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}}},"ruby":{"id":"#tokensConfig/color/ruby","properties":{"50":{"id":"#tokensConfig/color/ruby/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/50/value","default":"#ffd9e4"}},"type":"object","default":{"value":"#ffd9e4"}},"100":{"id":"#tokensConfig/color/ruby/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/100/value","default":"#ffb3c9"}},"type":"object","default":{"value":"#ffb3c9"}},"200":{"id":"#tokensConfig/color/ruby/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/200/value","default":"#ff8dae"}},"type":"object","default":{"value":"#ff8dae"}},"300":{"id":"#tokensConfig/color/ruby/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/300/value","default":"#ff6694"}},"type":"object","default":{"value":"#ff6694"}},"400":{"id":"#tokensConfig/color/ruby/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/400/value","default":"#ff4079"}},"type":"object","default":{"value":"#ff4079"}},"500":{"id":"#tokensConfig/color/ruby/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/500/value","default":"#ff1a5e"}},"type":"object","default":{"value":"#ff1a5e"}},"600":{"id":"#tokensConfig/color/ruby/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/600/value","default":"#e10043"}},"type":"object","default":{"value":"#e10043"}},"700":{"id":"#tokensConfig/color/ruby/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/700/value","default":"#a90032"}},"type":"object","default":{"value":"#a90032"}},"800":{"id":"#tokensConfig/color/ruby/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/800/value","default":"#700021"}},"type":"object","default":{"value":"#700021"}},"900":{"id":"#tokensConfig/color/ruby/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/900/value","default":"#380011"}},"type":"object","default":{"value":"#380011"}}},"type":"object","default":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}},"primary":{"id":"#tokensConfig/color/primary","properties":{"50":{"id":"#tokensConfig/color/primary/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/50/value","default":"#d9f8ff"}},"type":"object","default":{"value":"#d9f8ff"}},"100":{"id":"#tokensConfig/color/primary/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/100/value","default":"#b3f1ff"}},"type":"object","default":{"value":"#b3f1ff"}},"200":{"id":"#tokensConfig/color/primary/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/200/value","default":"#8deaff"}},"type":"object","default":{"value":"#8deaff"}},"300":{"id":"#tokensConfig/color/primary/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/300/value","default":"#66e4ff"}},"type":"object","default":{"value":"#66e4ff"}},"400":{"id":"#tokensConfig/color/primary/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/400/value","default":"#40ddff"}},"type":"object","default":{"value":"#40ddff"}},"500":{"id":"#tokensConfig/color/primary/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/500/value","default":"#1ad6ff"}},"type":"object","default":{"value":"#1ad6ff"}},"600":{"id":"#tokensConfig/color/primary/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/600/value","default":"#00b9e1"}},"type":"object","default":{"value":"#00b9e1"}},"700":{"id":"#tokensConfig/color/primary/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/700/value","default":"#008aa9"}},"type":"object","default":{"value":"#008aa9"}},"800":{"id":"#tokensConfig/color/primary/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/800/value","default":"#005c70"}},"type":"object","default":{"value":"#005c70"}},"900":{"id":"#tokensConfig/color/primary/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/900/value","default":"#002e38"}},"type":"object","default":{"value":"#002e38"}}},"type":"object","default":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}}},"secondary":{"id":"#tokensConfig/color/secondary","properties":{"50":{"id":"#tokensConfig/color/secondary/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/50/value","default":"{color.gray.50}"}},"type":"object","default":{"value":"{color.gray.50}"}},"100":{"id":"#tokensConfig/color/secondary/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/100/value","default":"{color.gray.100}"}},"type":"object","default":{"value":"{color.gray.100}"}},"200":{"id":"#tokensConfig/color/secondary/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/200/value","default":"{color.gray.200}"}},"type":"object","default":{"value":"{color.gray.200}"}},"300":{"id":"#tokensConfig/color/secondary/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/300/value","default":"{color.gray.300}"}},"type":"object","default":{"value":"{color.gray.300}"}},"400":{"id":"#tokensConfig/color/secondary/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/400/value","default":"{color.gray.400}"}},"type":"object","default":{"value":"{color.gray.400}"}},"500":{"id":"#tokensConfig/color/secondary/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/500/value","default":"{color.gray.500}"}},"type":"object","default":{"value":"{color.gray.500}"}},"600":{"id":"#tokensConfig/color/secondary/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/600/value","default":"{color.gray.600}"}},"type":"object","default":{"value":"{color.gray.600}"}},"700":{"id":"#tokensConfig/color/secondary/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/700/value","default":"{color.gray.700}"}},"type":"object","default":{"value":"{color.gray.700}"}},"800":{"id":"#tokensConfig/color/secondary/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/800/value","default":"{color.gray.800}"}},"type":"object","default":{"value":"{color.gray.800}"}},"900":{"id":"#tokensConfig/color/secondary/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/900/value","default":"{color.gray.900}"}},"type":"object","default":{"value":"{color.gray.900}"}}},"type":"object","default":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"type":"object","default":{"white":{"value":"#FFFFFF"},"black":{"value":"#0c0c0d"},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}},"primary":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"width":{"title":"Your website screen sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/width","properties":{"screen":{"id":"#tokensConfig/width/screen","properties":{"value":{"type":"string","id":"#tokensConfig/width/screen/value","default":"100vw"}},"type":"object","default":{"value":"100vw"}}},"type":"object","default":{"screen":{"value":"100vw"}}},"height":{"title":"Your website screen sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/height","properties":{"screen":{"id":"#tokensConfig/height/screen","properties":{"value":{"type":"string","id":"#tokensConfig/height/screen/value","default":"100vh"}},"type":"object","default":{"value":"100vh"}}},"type":"object","default":{"screen":{"value":"100vh"}}},"shadow":{"title":"Your website shadows.","tags":["@studioInput design-token","@studioInputTokenType shadow","@studioIcon mdi:box-shadow"],"id":"#tokensConfig/shadow","properties":{"xs":{"id":"#tokensConfig/shadow/xs","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/xs/value","default":"0px 1px 2px 0px #000000"}},"type":"object","default":{"value":"0px 1px 2px 0px #000000"}},"sm":{"id":"#tokensConfig/shadow/sm","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/sm/value","default":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"}},"type":"object","default":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"}},"md":{"id":"#tokensConfig/shadow/md","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/md/value","default":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"}},"type":"object","default":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"}},"lg":{"id":"#tokensConfig/shadow/lg","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/lg/value","default":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"}},"type":"object","default":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"}},"xl":{"id":"#tokensConfig/shadow/xl","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/xl/value","default":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"}},"type":"object","default":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"}},"2xl":{"id":"#tokensConfig/shadow/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/2xl/value","default":"0px 25px 50px -12px {color.gray.900}"}},"type":"object","default":{"value":"0px 25px 50px -12px {color.gray.900}"}},"none":{"id":"#tokensConfig/shadow/none","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/none/value","default":"0px 0px 0px 0px transparent"}},"type":"object","default":{"value":"0px 0px 0px 0px transparent"}}},"type":"object","default":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}}},"radii":{"title":"Your website border radiuses.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:rounded-corner","@studioInpuTokenType size"],"id":"#tokensConfig/radii","properties":{"none":{"id":"#tokensConfig/radii/none","properties":{"value":{"type":"string","id":"#tokensConfig/radii/none/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"2xs":{"id":"#tokensConfig/radii/2xs","properties":{"value":{"type":"string","id":"#tokensConfig/radii/2xs/value","default":"0.125rem"}},"type":"object","default":{"value":"0.125rem"}},"xs":{"id":"#tokensConfig/radii/xs","properties":{"value":{"type":"string","id":"#tokensConfig/radii/xs/value","default":"0.25rem"}},"type":"object","default":{"value":"0.25rem"}},"sm":{"id":"#tokensConfig/radii/sm","properties":{"value":{"type":"string","id":"#tokensConfig/radii/sm/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"md":{"id":"#tokensConfig/radii/md","properties":{"value":{"type":"string","id":"#tokensConfig/radii/md/value","default":"0.5rem"}},"type":"object","default":{"value":"0.5rem"}},"lg":{"id":"#tokensConfig/radii/lg","properties":{"value":{"type":"string","id":"#tokensConfig/radii/lg/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"xl":{"id":"#tokensConfig/radii/xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/xl/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"2xl":{"id":"#tokensConfig/radii/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/2xl/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"3xl":{"id":"#tokensConfig/radii/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/3xl/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"full":{"id":"#tokensConfig/radii/full","properties":{"value":{"type":"string","id":"#tokensConfig/radii/full/value","default":"9999px"}},"type":"object","default":{"value":"9999px"}}},"type":"object","default":{"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}}},"size":{"title":"Your website sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/size","properties":{"0":{"id":"#tokensConfig/size/0","properties":{"value":{"type":"string","id":"#tokensConfig/size/0/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"2":{"id":"#tokensConfig/size/2","properties":{"value":{"type":"string","id":"#tokensConfig/size/2/value","default":"2px"}},"type":"object","default":{"value":"2px"}},"4":{"id":"#tokensConfig/size/4","properties":{"value":{"type":"string","id":"#tokensConfig/size/4/value","default":"4px"}},"type":"object","default":{"value":"4px"}},"6":{"id":"#tokensConfig/size/6","properties":{"value":{"type":"string","id":"#tokensConfig/size/6/value","default":"6px"}},"type":"object","default":{"value":"6px"}},"8":{"id":"#tokensConfig/size/8","properties":{"value":{"type":"string","id":"#tokensConfig/size/8/value","default":"8px"}},"type":"object","default":{"value":"8px"}},"12":{"id":"#tokensConfig/size/12","properties":{"value":{"type":"string","id":"#tokensConfig/size/12/value","default":"12px"}},"type":"object","default":{"value":"12px"}},"16":{"id":"#tokensConfig/size/16","properties":{"value":{"type":"string","id":"#tokensConfig/size/16/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"20":{"id":"#tokensConfig/size/20","properties":{"value":{"type":"string","id":"#tokensConfig/size/20/value","default":"20px"}},"type":"object","default":{"value":"20px"}},"24":{"id":"#tokensConfig/size/24","properties":{"value":{"type":"string","id":"#tokensConfig/size/24/value","default":"24px"}},"type":"object","default":{"value":"24px"}},"32":{"id":"#tokensConfig/size/32","properties":{"value":{"type":"string","id":"#tokensConfig/size/32/value","default":"32px"}},"type":"object","default":{"value":"32px"}},"40":{"id":"#tokensConfig/size/40","properties":{"value":{"type":"string","id":"#tokensConfig/size/40/value","default":"40px"}},"type":"object","default":{"value":"40px"}},"48":{"id":"#tokensConfig/size/48","properties":{"value":{"type":"string","id":"#tokensConfig/size/48/value","default":"48px"}},"type":"object","default":{"value":"48px"}},"56":{"id":"#tokensConfig/size/56","properties":{"value":{"type":"string","id":"#tokensConfig/size/56/value","default":"56px"}},"type":"object","default":{"value":"56px"}},"64":{"id":"#tokensConfig/size/64","properties":{"value":{"type":"string","id":"#tokensConfig/size/64/value","default":"64px"}},"type":"object","default":{"value":"64px"}},"80":{"id":"#tokensConfig/size/80","properties":{"value":{"type":"string","id":"#tokensConfig/size/80/value","default":"80px"}},"type":"object","default":{"value":"80px"}},"104":{"id":"#tokensConfig/size/104","properties":{"value":{"type":"string","id":"#tokensConfig/size/104/value","default":"104px"}},"type":"object","default":{"value":"104px"}},"200":{"id":"#tokensConfig/size/200","properties":{"value":{"type":"string","id":"#tokensConfig/size/200/value","default":"200px"}},"type":"object","default":{"value":"200px"}},"xs":{"id":"#tokensConfig/size/xs","properties":{"value":{"type":"string","id":"#tokensConfig/size/xs/value","default":"20rem"}},"type":"object","default":{"value":"20rem"}},"sm":{"id":"#tokensConfig/size/sm","properties":{"value":{"type":"string","id":"#tokensConfig/size/sm/value","default":"24rem"}},"type":"object","default":{"value":"24rem"}},"md":{"id":"#tokensConfig/size/md","properties":{"value":{"type":"string","id":"#tokensConfig/size/md/value","default":"28rem"}},"type":"object","default":{"value":"28rem"}},"lg":{"id":"#tokensConfig/size/lg","properties":{"value":{"type":"string","id":"#tokensConfig/size/lg/value","default":"32rem"}},"type":"object","default":{"value":"32rem"}},"xl":{"id":"#tokensConfig/size/xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/xl/value","default":"36rem"}},"type":"object","default":{"value":"36rem"}},"2xl":{"id":"#tokensConfig/size/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/2xl/value","default":"42rem"}},"type":"object","default":{"value":"42rem"}},"3xl":{"id":"#tokensConfig/size/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/3xl/value","default":"48rem"}},"type":"object","default":{"value":"48rem"}},"4xl":{"id":"#tokensConfig/size/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/4xl/value","default":"56rem"}},"type":"object","default":{"value":"56rem"}},"5xl":{"id":"#tokensConfig/size/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/5xl/value","default":"64rem"}},"type":"object","default":{"value":"64rem"}},"6xl":{"id":"#tokensConfig/size/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/6xl/value","default":"72rem"}},"type":"object","default":{"value":"72rem"}},"7xl":{"id":"#tokensConfig/size/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/7xl/value","default":"80rem"}},"type":"object","default":{"value":"80rem"}},"full":{"id":"#tokensConfig/size/full","properties":{"value":{"type":"string","id":"#tokensConfig/size/full/value","default":"100%"}},"type":"object","default":{"value":"100%"}}},"type":"object","default":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}}},"space":{"title":"Your website spacings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/space","properties":{"0":{"id":"#tokensConfig/space/0","properties":{"value":{"type":"string","id":"#tokensConfig/space/0/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"1":{"id":"#tokensConfig/space/1","properties":{"value":{"type":"string","id":"#tokensConfig/space/1/value","default":"0.25rem"}},"type":"object","default":{"value":"0.25rem"}},"2":{"id":"#tokensConfig/space/2","properties":{"value":{"type":"string","id":"#tokensConfig/space/2/value","default":"0.5rem"}},"type":"object","default":{"value":"0.5rem"}},"3":{"id":"#tokensConfig/space/3","properties":{"value":{"type":"string","id":"#tokensConfig/space/3/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"4":{"id":"#tokensConfig/space/4","properties":{"value":{"type":"string","id":"#tokensConfig/space/4/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"5":{"id":"#tokensConfig/space/5","properties":{"value":{"type":"string","id":"#tokensConfig/space/5/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"6":{"id":"#tokensConfig/space/6","properties":{"value":{"type":"string","id":"#tokensConfig/space/6/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"7":{"id":"#tokensConfig/space/7","properties":{"value":{"type":"string","id":"#tokensConfig/space/7/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"8":{"id":"#tokensConfig/space/8","properties":{"value":{"type":"string","id":"#tokensConfig/space/8/value","default":"2rem"}},"type":"object","default":{"value":"2rem"}},"9":{"id":"#tokensConfig/space/9","properties":{"value":{"type":"string","id":"#tokensConfig/space/9/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"10":{"id":"#tokensConfig/space/10","properties":{"value":{"type":"string","id":"#tokensConfig/space/10/value","default":"2.5rem"}},"type":"object","default":{"value":"2.5rem"}},"11":{"id":"#tokensConfig/space/11","properties":{"value":{"type":"string","id":"#tokensConfig/space/11/value","default":"2.75rem"}},"type":"object","default":{"value":"2.75rem"}},"12":{"id":"#tokensConfig/space/12","properties":{"value":{"type":"string","id":"#tokensConfig/space/12/value","default":"3rem"}},"type":"object","default":{"value":"3rem"}},"14":{"id":"#tokensConfig/space/14","properties":{"value":{"type":"string","id":"#tokensConfig/space/14/value","default":"3.5rem"}},"type":"object","default":{"value":"3.5rem"}},"16":{"id":"#tokensConfig/space/16","properties":{"value":{"type":"string","id":"#tokensConfig/space/16/value","default":"4rem"}},"type":"object","default":{"value":"4rem"}},"20":{"id":"#tokensConfig/space/20","properties":{"value":{"type":"string","id":"#tokensConfig/space/20/value","default":"5rem"}},"type":"object","default":{"value":"5rem"}},"24":{"id":"#tokensConfig/space/24","properties":{"value":{"type":"string","id":"#tokensConfig/space/24/value","default":"6rem"}},"type":"object","default":{"value":"6rem"}},"28":{"id":"#tokensConfig/space/28","properties":{"value":{"type":"string","id":"#tokensConfig/space/28/value","default":"7rem"}},"type":"object","default":{"value":"7rem"}},"32":{"id":"#tokensConfig/space/32","properties":{"value":{"type":"string","id":"#tokensConfig/space/32/value","default":"8rem"}},"type":"object","default":{"value":"8rem"}},"36":{"id":"#tokensConfig/space/36","properties":{"value":{"type":"string","id":"#tokensConfig/space/36/value","default":"9rem"}},"type":"object","default":{"value":"9rem"}},"40":{"id":"#tokensConfig/space/40","properties":{"value":{"type":"string","id":"#tokensConfig/space/40/value","default":"10rem"}},"type":"object","default":{"value":"10rem"}},"44":{"id":"#tokensConfig/space/44","properties":{"value":{"type":"string","id":"#tokensConfig/space/44/value","default":"11rem"}},"type":"object","default":{"value":"11rem"}},"48":{"id":"#tokensConfig/space/48","properties":{"value":{"type":"string","id":"#tokensConfig/space/48/value","default":"12rem"}},"type":"object","default":{"value":"12rem"}},"52":{"id":"#tokensConfig/space/52","properties":{"value":{"type":"string","id":"#tokensConfig/space/52/value","default":"13rem"}},"type":"object","default":{"value":"13rem"}},"56":{"id":"#tokensConfig/space/56","properties":{"value":{"type":"string","id":"#tokensConfig/space/56/value","default":"14rem"}},"type":"object","default":{"value":"14rem"}},"60":{"id":"#tokensConfig/space/60","properties":{"value":{"type":"string","id":"#tokensConfig/space/60/value","default":"15rem"}},"type":"object","default":{"value":"15rem"}},"64":{"id":"#tokensConfig/space/64","properties":{"value":{"type":"string","id":"#tokensConfig/space/64/value","default":"16rem"}},"type":"object","default":{"value":"16rem"}},"72":{"id":"#tokensConfig/space/72","properties":{"value":{"type":"string","id":"#tokensConfig/space/72/value","default":"18rem"}},"type":"object","default":{"value":"18rem"}},"80":{"id":"#tokensConfig/space/80","properties":{"value":{"type":"string","id":"#tokensConfig/space/80/value","default":"20rem"}},"type":"object","default":{"value":"20rem"}},"96":{"id":"#tokensConfig/space/96","properties":{"value":{"type":"string","id":"#tokensConfig/space/96/value","default":"24rem"}},"type":"object","default":{"value":"24rem"}},"128":{"id":"#tokensConfig/space/128","properties":{"value":{"type":"string","id":"#tokensConfig/space/128/value","default":"32rem"}},"type":"object","default":{"value":"32rem"}},"px":{"id":"#tokensConfig/space/px","properties":{"value":{"type":"string","id":"#tokensConfig/space/px/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"rem":{"id":"#tokensConfig/space/rem","properties":{"125":{"id":"#tokensConfig/space/rem/125","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/125/value","default":"0.125rem"}},"type":"object","default":{"value":"0.125rem"}},"375":{"id":"#tokensConfig/space/rem/375","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/375/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"625":{"id":"#tokensConfig/space/rem/625","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/625/value","default":"0.625rem"}},"type":"object","default":{"value":"0.625rem"}},"875":{"id":"#tokensConfig/space/rem/875","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/875/value","default":"0.875rem"}},"type":"object","default":{"value":"0.875rem"}}},"type":"object","default":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}}},"type":"object","default":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"128":{"value":"32rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}}},"borderWidth":{"title":"Your website border widths.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:border-all-outline-rounded"],"id":"#tokensConfig/borderWidth","properties":{"noBorder":{"id":"#tokensConfig/borderWidth/noBorder","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/noBorder/value","default":"0"}},"type":"object","default":{"value":"0"}},"sm":{"id":"#tokensConfig/borderWidth/sm","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/sm/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"md":{"id":"#tokensConfig/borderWidth/md","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/md/value","default":"2px"}},"type":"object","default":{"value":"2px"}},"lg":{"id":"#tokensConfig/borderWidth/lg","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/lg/value","default":"3px"}},"type":"object","default":{"value":"3px"}}},"type":"object","default":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}}},"opacity":{"title":"Your website opacities.","tags":["@studioInput design-token","@studioInputTokenType opacity","@studioIcon material-symbols:opacity"],"id":"#tokensConfig/opacity","properties":{"noOpacity":{"id":"#tokensConfig/opacity/noOpacity","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/noOpacity/value","default":"0"}},"type":"object","default":{"value":"0"}},"bright":{"id":"#tokensConfig/opacity/bright","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/bright/value","default":"0.1"}},"type":"object","default":{"value":"0.1"}},"light":{"id":"#tokensConfig/opacity/light","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/light/value","default":"0.15"}},"type":"object","default":{"value":"0.15"}},"soft":{"id":"#tokensConfig/opacity/soft","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/soft/value","default":"0.3"}},"type":"object","default":{"value":"0.3"}},"medium":{"id":"#tokensConfig/opacity/medium","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/medium/value","default":"0.5"}},"type":"object","default":{"value":"0.5"}},"high":{"id":"#tokensConfig/opacity/high","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/high/value","default":"0.8"}},"type":"object","default":{"value":"0.8"}},"total":{"id":"#tokensConfig/opacity/total","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/total/value","default":"1"}},"type":"object","default":{"value":"1"}}},"type":"object","default":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}}},"font":{"title":"Your website fonts","tags":["@studioInput design-token","@studioInputTokenType font","@studioIcon material-symbols:font-download-rounded"],"id":"#tokensConfig/font","properties":{"sans":{"id":"#tokensConfig/font/sans","properties":{"value":{"type":"string","id":"#tokensConfig/font/sans/value","default":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"}},"type":"object","default":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"}},"serif":{"id":"#tokensConfig/font/serif","properties":{"value":{"type":"string","id":"#tokensConfig/font/serif/value","default":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"}},"type":"object","default":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"}},"mono":{"id":"#tokensConfig/font/mono","properties":{"value":{"type":"string","id":"#tokensConfig/font/mono/value","default":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"type":"object","default":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}}},"type":"object","default":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}}},"fontWeight":{"title":"Your website font weights.","tags":["@studioInput design-token","@studioInputTokenType font-weight","@studioIcon radix-icons:font-style"],"id":"#tokensConfig/fontWeight","properties":{"thin":{"id":"#tokensConfig/fontWeight/thin","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/thin/value","default":"100"}},"type":"object","default":{"value":"100"}},"extralight":{"id":"#tokensConfig/fontWeight/extralight","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/extralight/value","default":"200"}},"type":"object","default":{"value":"200"}},"light":{"id":"#tokensConfig/fontWeight/light","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/light/value","default":"300"}},"type":"object","default":{"value":"300"}},"normal":{"id":"#tokensConfig/fontWeight/normal","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/normal/value","default":"400"}},"type":"object","default":{"value":"400"}},"medium":{"id":"#tokensConfig/fontWeight/medium","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/medium/value","default":"500"}},"type":"object","default":{"value":"500"}},"semibold":{"id":"#tokensConfig/fontWeight/semibold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/semibold/value","default":"600"}},"type":"object","default":{"value":"600"}},"bold":{"id":"#tokensConfig/fontWeight/bold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/bold/value","default":"700"}},"type":"object","default":{"value":"700"}},"extrabold":{"id":"#tokensConfig/fontWeight/extrabold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/extrabold/value","default":"800"}},"type":"object","default":{"value":"800"}},"black":{"id":"#tokensConfig/fontWeight/black","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/black/value","default":"900"}},"type":"object","default":{"value":"900"}}},"type":"object","default":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}}},"fontSize":{"title":"Your website font sizes.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon radix-icons:font-style"],"id":"#tokensConfig/fontSize","properties":{"xs":{"id":"#tokensConfig/fontSize/xs","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/xs/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"sm":{"id":"#tokensConfig/fontSize/sm","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/sm/value","default":"0.875rem"}},"type":"object","default":{"value":"0.875rem"}},"base":{"id":"#tokensConfig/fontSize/base","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/base/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"lg":{"id":"#tokensConfig/fontSize/lg","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/lg/value","default":"1.125rem"}},"type":"object","default":{"value":"1.125rem"}},"xl":{"id":"#tokensConfig/fontSize/xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/xl/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"2xl":{"id":"#tokensConfig/fontSize/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/2xl/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"3xl":{"id":"#tokensConfig/fontSize/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/3xl/value","default":"1.875rem"}},"type":"object","default":{"value":"1.875rem"}},"4xl":{"id":"#tokensConfig/fontSize/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/4xl/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"5xl":{"id":"#tokensConfig/fontSize/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/5xl/value","default":"3rem"}},"type":"object","default":{"value":"3rem"}},"6xl":{"id":"#tokensConfig/fontSize/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/6xl/value","default":"3.75rem"}},"type":"object","default":{"value":"3.75rem"}},"7xl":{"id":"#tokensConfig/fontSize/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/7xl/value","default":"4.5rem"}},"type":"object","default":{"value":"4.5rem"}},"8xl":{"id":"#tokensConfig/fontSize/8xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/8xl/value","default":"6rem"}},"type":"object","default":{"value":"6rem"}},"9xl":{"id":"#tokensConfig/fontSize/9xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/9xl/value","default":"8rem"}},"type":"object","default":{"value":"8rem"}}},"type":"object","default":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}}},"letterSpacing":{"title":"Your website letter spacings.","tags":["@studioInput design-token","@studioInputTokenType letter-spacing","@studioIcon fluent:font-space-tracking-out-24-filled"],"id":"#tokensConfig/letterSpacing","properties":{"tighter":{"id":"#tokensConfig/letterSpacing/tighter","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/tighter/value","default":"-0.05em"}},"type":"object","default":{"value":"-0.05em"}},"tight":{"id":"#tokensConfig/letterSpacing/tight","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/tight/value","default":"-0.025em"}},"type":"object","default":{"value":"-0.025em"}},"normal":{"id":"#tokensConfig/letterSpacing/normal","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/normal/value","default":"0em"}},"type":"object","default":{"value":"0em"}},"wide":{"id":"#tokensConfig/letterSpacing/wide","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/wide/value","default":"0.025em"}},"type":"object","default":{"value":"0.025em"}},"wider":{"id":"#tokensConfig/letterSpacing/wider","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/wider/value","default":"0.05em"}},"type":"object","default":{"value":"0.05em"}},"widest":{"id":"#tokensConfig/letterSpacing/widest","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/widest/value","default":"0.1em"}},"type":"object","default":{"value":"0.1em"}}},"type":"object","default":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}}},"lead":{"title":"Your website line heights.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon icon-park-outline:auto-line-height"],"id":"#tokensConfig/lead","properties":{"1":{"id":"#tokensConfig/lead/1","properties":{"value":{"type":"string","id":"#tokensConfig/lead/1/value","default":".025rem"}},"type":"object","default":{"value":".025rem"}},"2":{"id":"#tokensConfig/lead/2","properties":{"value":{"type":"string","id":"#tokensConfig/lead/2/value","default":".5rem"}},"type":"object","default":{"value":".5rem"}},"3":{"id":"#tokensConfig/lead/3","properties":{"value":{"type":"string","id":"#tokensConfig/lead/3/value","default":".75rem"}},"type":"object","default":{"value":".75rem"}},"4":{"id":"#tokensConfig/lead/4","properties":{"value":{"type":"string","id":"#tokensConfig/lead/4/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"5":{"id":"#tokensConfig/lead/5","properties":{"value":{"type":"string","id":"#tokensConfig/lead/5/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"6":{"id":"#tokensConfig/lead/6","properties":{"value":{"type":"string","id":"#tokensConfig/lead/6/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"7":{"id":"#tokensConfig/lead/7","properties":{"value":{"type":"string","id":"#tokensConfig/lead/7/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"8":{"id":"#tokensConfig/lead/8","properties":{"value":{"type":"string","id":"#tokensConfig/lead/8/value","default":"2rem"}},"type":"object","default":{"value":"2rem"}},"9":{"id":"#tokensConfig/lead/9","properties":{"value":{"type":"string","id":"#tokensConfig/lead/9/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"10":{"id":"#tokensConfig/lead/10","properties":{"value":{"type":"string","id":"#tokensConfig/lead/10/value","default":"2.5rem"}},"type":"object","default":{"value":"2.5rem"}},"none":{"id":"#tokensConfig/lead/none","properties":{"value":{"type":"string","id":"#tokensConfig/lead/none/value","default":"1"}},"type":"object","default":{"value":"1"}},"tight":{"id":"#tokensConfig/lead/tight","properties":{"value":{"type":"string","id":"#tokensConfig/lead/tight/value","default":"1.25"}},"type":"object","default":{"value":"1.25"}},"snug":{"id":"#tokensConfig/lead/snug","properties":{"value":{"type":"string","id":"#tokensConfig/lead/snug/value","default":"1.375"}},"type":"object","default":{"value":"1.375"}},"normal":{"id":"#tokensConfig/lead/normal","properties":{"value":{"type":"string","id":"#tokensConfig/lead/normal/value","default":"1.5"}},"type":"object","default":{"value":"1.5"}},"relaxed":{"id":"#tokensConfig/lead/relaxed","properties":{"value":{"type":"string","id":"#tokensConfig/lead/relaxed/value","default":"1.625"}},"type":"object","default":{"value":"1.625"}},"loose":{"id":"#tokensConfig/lead/loose","properties":{"value":{"type":"string","id":"#tokensConfig/lead/loose/value","default":"2"}},"type":"object","default":{"value":"2"}}},"type":"object","default":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}}},"text":{"title":"Your website text scales.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:format-size-rounded"],"id":"#tokensConfig/text","properties":{"xs":{"id":"#tokensConfig/text/xs","properties":{"fontSize":{"id":"#tokensConfig/text/xs/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/xs/fontSize/value","default":"{fontSize.xs}"}},"type":"object","default":{"value":"{fontSize.xs}"}},"lineHeight":{"id":"#tokensConfig/text/xs/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/xs/lineHeight/value","default":"{lead.4}"}},"type":"object","default":{"value":"{lead.4}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}}},"sm":{"id":"#tokensConfig/text/sm","properties":{"fontSize":{"id":"#tokensConfig/text/sm/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/sm/fontSize/value","default":"{fontSize.sm}"}},"type":"object","default":{"value":"{fontSize.sm}"}},"lineHeight":{"id":"#tokensConfig/text/sm/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/sm/lineHeight/value","default":"{lead.5}"}},"type":"object","default":{"value":"{lead.5}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}}},"base":{"id":"#tokensConfig/text/base","properties":{"fontSize":{"id":"#tokensConfig/text/base/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/base/fontSize/value","default":"{fontSize.base}"}},"type":"object","default":{"value":"{fontSize.base}"}},"lineHeight":{"id":"#tokensConfig/text/base/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/base/lineHeight/value","default":"{lead.6}"}},"type":"object","default":{"value":"{lead.6}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}}},"lg":{"id":"#tokensConfig/text/lg","properties":{"fontSize":{"id":"#tokensConfig/text/lg/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/lg/fontSize/value","default":"{fontSize.lg}"}},"type":"object","default":{"value":"{fontSize.lg}"}},"lineHeight":{"id":"#tokensConfig/text/lg/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/lg/lineHeight/value","default":"{lead.7}"}},"type":"object","default":{"value":"{lead.7}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}}},"xl":{"id":"#tokensConfig/text/xl","properties":{"fontSize":{"id":"#tokensConfig/text/xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/xl/fontSize/value","default":"{fontSize.xl}"}},"type":"object","default":{"value":"{fontSize.xl}"}},"lineHeight":{"id":"#tokensConfig/text/xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/xl/lineHeight/value","default":"{lead.7}"}},"type":"object","default":{"value":"{lead.7}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}}},"2xl":{"id":"#tokensConfig/text/2xl","properties":{"fontSize":{"id":"#tokensConfig/text/2xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/2xl/fontSize/value","default":"{fontSize.2xl}"}},"type":"object","default":{"value":"{fontSize.2xl}"}},"lineHeight":{"id":"#tokensConfig/text/2xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/2xl/lineHeight/value","default":"{lead.8}"}},"type":"object","default":{"value":"{lead.8}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}}},"3xl":{"id":"#tokensConfig/text/3xl","properties":{"fontSize":{"id":"#tokensConfig/text/3xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/3xl/fontSize/value","default":"{fontSize.3xl}"}},"type":"object","default":{"value":"{fontSize.3xl}"}},"lineHeight":{"id":"#tokensConfig/text/3xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/3xl/lineHeight/value","default":"{lead.9}"}},"type":"object","default":{"value":"{lead.9}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}}},"4xl":{"id":"#tokensConfig/text/4xl","properties":{"fontSize":{"id":"#tokensConfig/text/4xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/4xl/fontSize/value","default":"{fontSize.4xl}"}},"type":"object","default":{"value":"{fontSize.4xl}"}},"lineHeight":{"id":"#tokensConfig/text/4xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/4xl/lineHeight/value","default":"{lead.10}"}},"type":"object","default":{"value":"{lead.10}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}}},"5xl":{"id":"#tokensConfig/text/5xl","properties":{"fontSize":{"id":"#tokensConfig/text/5xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/5xl/fontSize/value","default":"{fontSize.5xl}"}},"type":"object","default":{"value":"{fontSize.5xl}"}},"lineHeight":{"id":"#tokensConfig/text/5xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/5xl/lineHeight/value","default":"{lead.none}"}},"type":"object","default":{"value":"{lead.none}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}}},"6xl":{"id":"#tokensConfig/text/6xl","properties":{"fontSize":{"id":"#tokensConfig/text/6xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/6xl/fontSize/value","default":"{fontSize.6xl}"}},"type":"object","default":{"value":"{fontSize.6xl}"}},"lineHeight":{"id":"#tokensConfig/text/6xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/6xl/lineHeight/value","default":"{lead.none}"}},"type":"object","default":{"value":"{lead.none}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}},"type":"object","default":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}},"elements":{"title":"All the configurable tokens for your Elements.","tags":["@studioIcon uiw:component"],"id":"#tokensConfig/elements","properties":{"text":{"id":"#tokensConfig/elements/text","properties":{"primary":{"id":"#tokensConfig/elements/text/primary","properties":{"color":{"id":"#tokensConfig/elements/text/primary/color","properties":{"static":{"id":"#tokensConfig/elements/text/primary/color/static","properties":{"value":{"id":"#tokensConfig/elements/text/primary/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/primary/color/static/value/initial","default":"{color.gray.900}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/primary/color/static/value/dark","default":"{color.gray.50}"}},"type":"object","default":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}}},"type":"object","default":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}}},"hover":{"id":"#tokensConfig/elements/text/primary/color/hover","type":"any","default":{}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}}},"type":"object","default":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}}},"secondary":{"id":"#tokensConfig/elements/text/secondary","properties":{"color":{"id":"#tokensConfig/elements/text/secondary/color","properties":{"static":{"id":"#tokensConfig/elements/text/secondary/color/static","properties":{"value":{"id":"#tokensConfig/elements/text/secondary/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/static/value/initial","default":"{color.gray.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/static/value/dark","default":"{color.gray.400}"}},"type":"object","default":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}}},"type":"object","default":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}}},"hover":{"id":"#tokensConfig/elements/text/secondary/color/hover","properties":{"value":{"id":"#tokensConfig/elements/text/secondary/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/hover/value/initial","default":"{color.gray.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/hover/value/dark","default":"{color.gray.200}"}},"type":"object","default":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}},"type":"object","default":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"type":"object","default":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}}},"type":"object","default":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}}},"container":{"title":"Main container sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:width-full-outline"],"id":"#tokensConfig/elements/container","properties":{"maxWidth":{"id":"#tokensConfig/elements/container/maxWidth","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/maxWidth/value","default":"64rem"}},"type":"object","default":{"value":"64rem"}},"padding":{"id":"#tokensConfig/elements/container/padding","properties":{"mobile":{"id":"#tokensConfig/elements/container/padding/mobile","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/mobile/value","default":"{space.6}"}},"type":"object","default":{"value":"{space.6}"}},"xs":{"id":"#tokensConfig/elements/container/padding/xs","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/xs/value","default":"{space.8}"}},"type":"object","default":{"value":"{space.8}"}},"sm":{"id":"#tokensConfig/elements/container/padding/sm","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/sm/value","default":"{space.12}"}},"type":"object","default":{"value":"{space.12}"}},"md":{"id":"#tokensConfig/elements/container/padding/md","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/md/value","default":"{space.16}"}},"type":"object","default":{"value":"{space.16}"}}},"type":"object","default":{"mobile":{"value":"{space.6}"},"xs":{"value":"{space.8}"},"sm":{"value":"{space.12}"},"md":{"value":"{space.16}"}}}},"type":"object","default":{"maxWidth":{"value":"64rem"},"padding":{"mobile":{"value":"{space.6}"},"xs":{"value":"{space.8}"},"sm":{"value":"{space.12}"},"md":{"value":"{space.16}"}}}},"backdrop":{"title":"Backdrops used in Elements.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:blur-circular"],"id":"#tokensConfig/elements/backdrop","properties":{"filter":{"id":"#tokensConfig/elements/backdrop/filter","properties":{"value":{"type":"string","id":"#tokensConfig/elements/backdrop/filter/value","default":"saturate(200%) blur(20px)"}},"type":"object","default":{"value":"saturate(200%) blur(20px)"}},"background":{"id":"#tokensConfig/elements/backdrop/background","properties":{"value":{"id":"#tokensConfig/elements/backdrop/background/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/backdrop/background/value/initial","default":"#fffc"},"dark":{"type":"string","id":"#tokensConfig/elements/backdrop/background/value/dark","default":"#0c0d0ccc"}},"type":"object","default":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"type":"object","default":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}}},"type":"object","default":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}}},"border":{"title":"Borders used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:border-all-outline-rounded"],"id":"#tokensConfig/elements/border","properties":{"primary":{"id":"#tokensConfig/elements/border/primary","properties":{"static":{"id":"#tokensConfig/elements/border/primary/static","properties":{"value":{"id":"#tokensConfig/elements/border/primary/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/primary/static/value/initial","default":"{color.gray.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/primary/static/value/dark","default":"{color.gray.900}"}},"type":"object","default":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"type":"object","default":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"hover":{"id":"#tokensConfig/elements/border/primary/hover","properties":{"value":{"id":"#tokensConfig/elements/border/primary/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/primary/hover/value/initial","default":"{color.gray.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/primary/hover/value/dark","default":"{color.gray.800}"}},"type":"object","default":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"type":"object","default":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"secondary":{"id":"#tokensConfig/elements/border/secondary","properties":{"static":{"id":"#tokensConfig/elements/border/secondary/static","properties":{"value":{"id":"#tokensConfig/elements/border/secondary/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/secondary/static/value/initial","default":"{color.gray.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/secondary/static/value/dark","default":"{color.gray.800}"}},"type":"object","default":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"type":"object","default":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"hover":{"id":"#tokensConfig/elements/border/secondary/hover","properties":{"value":{"id":"#tokensConfig/elements/border/secondary/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/secondary/hover/value/initial","default":""},"dark":{"type":"string","id":"#tokensConfig/elements/border/secondary/hover/value/dark","default":""}},"type":"object","default":{"initial":"","dark":""}}},"type":"object","default":{"value":{"initial":"","dark":""}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}}},"type":"object","default":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}}},"surface":{"title":"Surfaces used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon fluent:surface-hub-20-filled"],"id":"#tokensConfig/elements/surface","properties":{"background":{"id":"#tokensConfig/elements/surface/background","properties":{"base":{"id":"#tokensConfig/elements/surface/background/base","properties":{"value":{"id":"#tokensConfig/elements/surface/background/base/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/surface/background/base/value/initial","default":"{color.gray.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/surface/background/base/value/dark","default":"{color.gray.900}"}},"type":"object","default":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"type":"object","default":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"type":"object","default":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"primary":{"id":"#tokensConfig/elements/surface/primary","properties":{"backgroundColor":{"id":"#tokensConfig/elements/surface/primary/backgroundColor","properties":{"value":{"id":"#tokensConfig/elements/surface/primary/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/surface/primary/backgroundColor/value/initial","default":"{color.gray.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/surface/primary/backgroundColor/value/dark","default":"{color.gray.900}"}},"type":"object","default":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"type":"object","default":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"type":"object","default":{"backgroundColor":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"secondary":{"id":"#tokensConfig/elements/surface/secondary","properties":{"backgroundColor":{"id":"#tokensConfig/elements/surface/secondary/backgroundColor","properties":{"value":{"id":"#tokensConfig/elements/surface/secondary/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/surface/secondary/backgroundColor/value/initial","default":"{color.gray.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/surface/secondary/backgroundColor/value/dark","default":"{color.gray.800}"}},"type":"object","default":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"type":"object","default":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"type":"object","default":{"backgroundColor":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}}},"type":"object","default":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"primary":{"backgroundColor":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"secondary":{"backgroundColor":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}}},"state":{"title":"Color states used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon mdi:palette-advanced"],"id":"#tokensConfig/elements/state","properties":{"primary":{"id":"#tokensConfig/elements/state/primary","properties":{"color":{"id":"#tokensConfig/elements/state/primary/color","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/color/primary/value/initial","default":"{color.primary.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/color/primary/value/dark","default":"{color.primary.400}"}},"type":"object","default":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}}},"type":"object","default":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/color/secondary/value/initial","default":"{color.primary.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/color/secondary/value/dark","default":"{color.primary.200}"}},"type":"object","default":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"type":"object","default":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/primary/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value/initial","default":"{color.primary.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value/dark","default":"{color.primary.900}"}},"type":"object","default":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}}},"type":"object","default":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value/initial","default":"{color.primary.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value/dark","default":"{color.primary.800}"}},"type":"object","default":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"type":"object","default":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/primary/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/primary/value/initial","default":"{color.primary.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/primary/value/dark","default":"{color.primary.800}"}},"type":"object","default":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"type":"object","default":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/secondary/value/initial","default":"{color.primary.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/secondary/value/dark","default":"{color.primary.700}"}},"type":"object","default":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}},"type":"object","default":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}}},"info":{"id":"#tokensConfig/elements/state/info","properties":{"color":{"id":"#tokensConfig/elements/state/info/color","properties":{"primary":{"id":"#tokensConfig/elements/state/info/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/color/primary/value/initial","default":"{color.blue.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/color/primary/value/dark","default":"{color.blue.400}"}},"type":"object","default":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}}},"type":"object","default":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/color/secondary/value/initial","default":"{color.blue.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/color/secondary/value/dark","default":"{color.blue.200}"}},"type":"object","default":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"type":"object","default":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/info/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/info/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/primary/value/initial","default":"{color.blue.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/primary/value/dark","default":"{color.blue.900}"}},"type":"object","default":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}}},"type":"object","default":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value/initial","default":"{color.blue.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value/dark","default":"{color.blue.800}"}},"type":"object","default":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"type":"object","default":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/info/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/info/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/primary/value/initial","default":"{color.blue.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/primary/value/dark","default":"{color.blue.800}"}},"type":"object","default":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"type":"object","default":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/secondary/value/initial","default":"{color.blue.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/secondary/value/dark","default":"{color.blue.700}"}},"type":"object","default":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}},"type":"object","default":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}}},"success":{"id":"#tokensConfig/elements/state/success","properties":{"color":{"id":"#tokensConfig/elements/state/success/color","properties":{"primary":{"id":"#tokensConfig/elements/state/success/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/color/primary/value/initial","default":"{color.green.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/color/primary/value/dark","default":"{color.green.400}"}},"type":"object","default":{"initial":"{color.green.500}","dark":"{color.green.400}"}}},"type":"object","default":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/color/secondary/value/initial","default":"{color.green.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/color/secondary/value/dark","default":"{color.green.200}"}},"type":"object","default":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"type":"object","default":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/success/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/success/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/primary/value/initial","default":"{color.green.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/primary/value/dark","default":"{color.green.900}"}},"type":"object","default":{"initial":"{color.green.50}","dark":"{color.green.900}"}}},"type":"object","default":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value/initial","default":"{color.green.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value/dark","default":"{color.green.800}"}},"type":"object","default":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"type":"object","default":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/success/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/success/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/primary/value/initial","default":"{color.green.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/primary/value/dark","default":"{color.green.800}"}},"type":"object","default":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"type":"object","default":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/secondary/value/initial","default":"{color.green.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/secondary/value/dark","default":"{color.green.700}"}},"type":"object","default":{"initial":"{color.green.200}","dark":"{color.green.700}"}}},"type":"object","default":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}}},"warning":{"id":"#tokensConfig/elements/state/warning","properties":{"color":{"id":"#tokensConfig/elements/state/warning/color","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/color/primary/value/initial","default":"{color.yellow.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/color/primary/value/dark","default":"{color.yellow.400}"}},"type":"object","default":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/color/secondary/value/initial","default":"{color.yellow.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/color/secondary/value/dark","default":"{color.yellow.200}"}},"type":"object","default":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/warning/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value/initial","default":"{color.yellow.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value/dark","default":"{color.yellow.900}"}},"type":"object","default":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value/initial","default":"{color.yellow.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value/dark","default":"{color.yellow.800}"}},"type":"object","default":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/warning/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/primary/value/initial","default":"{color.yellow.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/primary/value/dark","default":"{color.yellow.800}"}},"type":"object","default":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/secondary/value/initial","default":"{color.yellow.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/secondary/value/dark","default":"{color.yellow.700}"}},"type":"object","default":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}}},"danger":{"id":"#tokensConfig/elements/state/danger","properties":{"color":{"id":"#tokensConfig/elements/state/danger/color","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/color/primary/value/initial","default":"{color.red.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/color/primary/value/dark","default":"{color.red.300}"}},"type":"object","default":{"initial":"{color.red.500}","dark":"{color.red.300}"}}},"type":"object","default":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/color/secondary/value/initial","default":"{color.red.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/color/secondary/value/dark","default":"{color.red.200}"}},"type":"object","default":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"type":"object","default":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/danger/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value/initial","default":"{color.red.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value/dark","default":"{color.red.900}"}},"type":"object","default":{"initial":"{color.red.50}","dark":"{color.red.900}"}}},"type":"object","default":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value/initial","default":"{color.red.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value/dark","default":"{color.red.800}"}},"type":"object","default":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"type":"object","default":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/danger/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/primary/value/initial","default":"{color.red.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/primary/value/dark","default":"{color.red.800}"}},"type":"object","default":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"type":"object","default":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/secondary/value/initial","default":"{color.red.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/secondary/value/dark","default":"{color.red.700}"}},"type":"object","default":{"initial":"{color.red.200}","dark":"{color.red.700}"}}},"type":"object","default":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"type":"object","default":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}}},"type":"object","default":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"64rem"},"padding":{"mobile":{"value":"{space.6}"},"xs":{"value":"{space.8}"},"sm":{"value":"{space.12}"},"md":{"value":"{space.16}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"primary":{"backgroundColor":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"secondary":{"backgroundColor":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}}},"typography":{"title":"All the configurable tokens for your Typography.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:article"],"id":"#tokensConfig/typography","properties":{"body":{"id":"#tokensConfig/typography/body","properties":{"color":{"id":"#tokensConfig/typography/body/color","properties":{"value":{"id":"#tokensConfig/typography/body/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/typography/body/color/value/initial","default":"{color.black}"},"dark":{"type":"string","id":"#tokensConfig/typography/body/color/value/dark","default":"{color.white}"}},"type":"object","default":{"initial":"{color.black}","dark":"{color.white}"}}},"type":"object","default":{"value":{"initial":"{color.black}","dark":"{color.white}"}}},"backgroundColor":{"id":"#tokensConfig/typography/body/backgroundColor","properties":{"value":{"id":"#tokensConfig/typography/body/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/typography/body/backgroundColor/value/initial","default":"{color.white}"},"dark":{"type":"string","id":"#tokensConfig/typography/body/backgroundColor/value/dark","default":"{color.black}"}},"type":"object","default":{"initial":"{color.white}","dark":"{color.black}"}}},"type":"object","default":{"value":{"initial":"{color.white}","dark":"{color.black}"}}}},"type":"object","default":{"color":{"value":{"initial":"{color.black}","dark":"{color.white}"}},"backgroundColor":{"value":{"initial":"{color.white}","dark":"{color.black}"}}}},"verticalMargin":{"title":"Vertical spacings between paragraphs.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon mingcute:line-height-line"],"id":"#tokensConfig/typography/verticalMargin","properties":{"sm":{"id":"#tokensConfig/typography/verticalMargin/sm","properties":{"value":{"type":"string","id":"#tokensConfig/typography/verticalMargin/sm/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"base":{"id":"#tokensConfig/typography/verticalMargin/base","properties":{"value":{"type":"string","id":"#tokensConfig/typography/verticalMargin/base/value","default":"24px"}},"type":"object","default":{"value":"24px"}}},"type":"object","default":{"sm":{"value":"16px"},"base":{"value":"24px"}}},"letterSpacing":{"title":"Horizontal spacings between letters.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon mingcute:letter-spacing-line"],"id":"#tokensConfig/typography/letterSpacing","properties":{"tight":{"id":"#tokensConfig/typography/letterSpacing/tight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/letterSpacing/tight/value","default":"-0.025em"}},"type":"object","default":{"value":"-0.025em"}},"wide":{"id":"#tokensConfig/typography/letterSpacing/wide","properties":{"value":{"type":"string","id":"#tokensConfig/typography/letterSpacing/wide/value","default":"0.025em"}},"type":"object","default":{"value":"0.025em"}}},"type":"object","default":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}}},"fontSize":{"title":"Horizontal spacings between letters.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon mingcute:font-size-fill"],"id":"#tokensConfig/typography/fontSize","properties":{"xs":{"id":"#tokensConfig/typography/fontSize/xs","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/xs/value","default":"12px"}},"type":"object","default":{"value":"12px"}},"sm":{"id":"#tokensConfig/typography/fontSize/sm","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/sm/value","default":"14px"}},"type":"object","default":{"value":"14px"}},"base":{"id":"#tokensConfig/typography/fontSize/base","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/base/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"lg":{"id":"#tokensConfig/typography/fontSize/lg","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/lg/value","default":"18px"}},"type":"object","default":{"value":"18px"}},"xl":{"id":"#tokensConfig/typography/fontSize/xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/xl/value","default":"20px"}},"type":"object","default":{"value":"20px"}},"2xl":{"id":"#tokensConfig/typography/fontSize/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/2xl/value","default":"24px"}},"type":"object","default":{"value":"24px"}},"3xl":{"id":"#tokensConfig/typography/fontSize/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/3xl/value","default":"30px"}},"type":"object","default":{"value":"30px"}},"4xl":{"id":"#tokensConfig/typography/fontSize/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/4xl/value","default":"36px"}},"type":"object","default":{"value":"36px"}},"5xl":{"id":"#tokensConfig/typography/fontSize/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/5xl/value","default":"48px"}},"type":"object","default":{"value":"48px"}},"6xl":{"id":"#tokensConfig/typography/fontSize/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/6xl/value","default":"60px"}},"type":"object","default":{"value":"60px"}},"7xl":{"id":"#tokensConfig/typography/fontSize/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/7xl/value","default":"72px"}},"type":"object","default":{"value":"72px"}},"8xl":{"id":"#tokensConfig/typography/fontSize/8xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/8xl/value","default":"96px"}},"type":"object","default":{"value":"96px"}},"9xl":{"id":"#tokensConfig/typography/fontSize/9xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/9xl/value","default":"128px"}},"type":"object","default":{"value":"128px"}}},"type":"object","default":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}}},"fontWeight":{"title":"Font weights used in typography.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon mingcute:bold-fill"],"id":"#tokensConfig/typography/fontWeight","properties":{"thin":{"id":"#tokensConfig/typography/fontWeight/thin","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/thin/value","default":"100"}},"type":"object","default":{"value":"100"}},"extralight":{"id":"#tokensConfig/typography/fontWeight/extralight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/extralight/value","default":"200"}},"type":"object","default":{"value":"200"}},"light":{"id":"#tokensConfig/typography/fontWeight/light","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/light/value","default":"300"}},"type":"object","default":{"value":"300"}},"normal":{"id":"#tokensConfig/typography/fontWeight/normal","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/normal/value","default":"400"}},"type":"object","default":{"value":"400"}},"medium":{"id":"#tokensConfig/typography/fontWeight/medium","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/medium/value","default":"500"}},"type":"object","default":{"value":"500"}},"semibold":{"id":"#tokensConfig/typography/fontWeight/semibold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/semibold/value","default":"600"}},"type":"object","default":{"value":"600"}},"bold":{"id":"#tokensConfig/typography/fontWeight/bold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/bold/value","default":"700"}},"type":"object","default":{"value":"700"}},"extrabold":{"id":"#tokensConfig/typography/fontWeight/extrabold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/extrabold/value","default":"800"}},"type":"object","default":{"value":"800"}},"black":{"id":"#tokensConfig/typography/fontWeight/black","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/black/value","default":"900"}},"type":"object","default":{"value":"900"}}},"type":"object","default":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}}},"lead":{"title":"Line heights used in your typography.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon material-symbols:height-rounded"],"id":"#tokensConfig/typography/lead","properties":{"1":{"id":"#tokensConfig/typography/lead/1","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/1/value","default":".025rem"}},"type":"object","default":{"value":".025rem"}},"2":{"id":"#tokensConfig/typography/lead/2","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/2/value","default":".5rem"}},"type":"object","default":{"value":".5rem"}},"3":{"id":"#tokensConfig/typography/lead/3","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/3/value","default":".75rem"}},"type":"object","default":{"value":".75rem"}},"4":{"id":"#tokensConfig/typography/lead/4","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/4/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"5":{"id":"#tokensConfig/typography/lead/5","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/5/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"6":{"id":"#tokensConfig/typography/lead/6","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/6/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"7":{"id":"#tokensConfig/typography/lead/7","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/7/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"8":{"id":"#tokensConfig/typography/lead/8","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/8/value","default":"2rem"}},"type":"object","default":{"value":"2rem"}},"9":{"id":"#tokensConfig/typography/lead/9","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/9/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"10":{"id":"#tokensConfig/typography/lead/10","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/10/value","default":"2.5rem"}},"type":"object","default":{"value":"2.5rem"}},"none":{"id":"#tokensConfig/typography/lead/none","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/none/value","default":"1"}},"type":"object","default":{"value":"1"}},"tight":{"id":"#tokensConfig/typography/lead/tight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/tight/value","default":"1.25"}},"type":"object","default":{"value":"1.25"}},"snug":{"id":"#tokensConfig/typography/lead/snug","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/snug/value","default":"1.375"}},"type":"object","default":{"value":"1.375"}},"normal":{"id":"#tokensConfig/typography/lead/normal","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/normal/value","default":"1.5"}},"type":"object","default":{"value":"1.5"}},"relaxed":{"id":"#tokensConfig/typography/lead/relaxed","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/relaxed/value","default":"1.625"}},"type":"object","default":{"value":"1.625"}},"loose":{"id":"#tokensConfig/typography/lead/loose","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/loose/value","default":"2"}},"type":"object","default":{"value":"2"}}},"type":"object","default":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}}},"font":{"title":"Your typography fonts","tags":["@studioInput design-token","@studioInputTokenType font","@studioIcon material-symbols:font-download-rounded"],"id":"#tokensConfig/typography/font","properties":{"display":{"id":"#tokensConfig/typography/font/display","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/display/value","default":"{font.sans}"}},"type":"object","default":{"value":"{font.sans}"}},"body":{"id":"#tokensConfig/typography/font/body","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/body/value","default":"{font.sans}"}},"type":"object","default":{"value":"{font.sans}"}},"code":{"id":"#tokensConfig/typography/font/code","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/code/value","default":"{font.mono}"}},"type":"object","default":{"value":"{font.mono}"}}},"type":"object","default":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}}},"color":{"title":"Your typography color palette.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon ph:palette"],"id":"#tokensConfig/typography/color","properties":{"primary":{"id":"#tokensConfig/typography/color/primary","properties":{"50":{"id":"#tokensConfig/typography/color/primary/50","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/50/value","default":"{color.primary.50}"}},"type":"object","default":{"value":"{color.primary.50}"}},"100":{"id":"#tokensConfig/typography/color/primary/100","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/100/value","default":"{color.primary.100}"}},"type":"object","default":{"value":"{color.primary.100}"}},"200":{"id":"#tokensConfig/typography/color/primary/200","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/200/value","default":"{color.primary.200}"}},"type":"object","default":{"value":"{color.primary.200}"}},"300":{"id":"#tokensConfig/typography/color/primary/300","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/300/value","default":"{color.primary.300}"}},"type":"object","default":{"value":"{color.primary.300}"}},"400":{"id":"#tokensConfig/typography/color/primary/400","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/400/value","default":"{color.primary.400}"}},"type":"object","default":{"value":"{color.primary.400}"}},"500":{"id":"#tokensConfig/typography/color/primary/500","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/500/value","default":"{color.primary.500}"}},"type":"object","default":{"value":"{color.primary.500}"}},"600":{"id":"#tokensConfig/typography/color/primary/600","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/600/value","default":"{color.primary.600}"}},"type":"object","default":{"value":"{color.primary.600}"}},"700":{"id":"#tokensConfig/typography/color/primary/700","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/700/value","default":"{color.primary.700}"}},"type":"object","default":{"value":"{color.primary.700}"}},"800":{"id":"#tokensConfig/typography/color/primary/800","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/800/value","default":"{color.primary.800}"}},"type":"object","default":{"value":"{color.primary.800}"}},"900":{"id":"#tokensConfig/typography/color/primary/900","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/900/value","default":"{color.primary.900}"}},"type":"object","default":{"value":"{color.primary.900}"}}},"type":"object","default":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}}},"secondary":{"id":"#tokensConfig/typography/color/secondary","properties":{"50":{"id":"#tokensConfig/typography/color/secondary/50","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/50/value","default":"{color.secondary.50}"}},"type":"object","default":{"value":"{color.secondary.50}"}},"100":{"id":"#tokensConfig/typography/color/secondary/100","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/100/value","default":"{color.secondary.100}"}},"type":"object","default":{"value":"{color.secondary.100}"}},"200":{"id":"#tokensConfig/typography/color/secondary/200","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/200/value","default":"{color.secondary.200}"}},"type":"object","default":{"value":"{color.secondary.200}"}},"300":{"id":"#tokensConfig/typography/color/secondary/300","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/300/value","default":"{color.secondary.300}"}},"type":"object","default":{"value":"{color.secondary.300}"}},"400":{"id":"#tokensConfig/typography/color/secondary/400","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/400/value","default":"{color.secondary.400}"}},"type":"object","default":{"value":"{color.secondary.400}"}},"500":{"id":"#tokensConfig/typography/color/secondary/500","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/500/value","default":"{color.secondary.500}"}},"type":"object","default":{"value":"{color.secondary.500}"}},"600":{"id":"#tokensConfig/typography/color/secondary/600","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/600/value","default":"{color.secondary.600}"}},"type":"object","default":{"value":"{color.secondary.600}"}},"700":{"id":"#tokensConfig/typography/color/secondary/700","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/700/value","default":"{color.secondary.700}"}},"type":"object","default":{"value":"{color.secondary.700}"}},"800":{"id":"#tokensConfig/typography/color/secondary/800","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/800/value","default":"{color.secondary.800}"}},"type":"object","default":{"value":"{color.secondary.800}"}},"900":{"id":"#tokensConfig/typography/color/secondary/900","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/900/value","default":"{color.secondary.900}"}},"type":"object","default":{"value":"{color.secondary.900}"}}},"type":"object","default":{"50":{"value":"{color.secondary.50}"},"100":{"value":"{color.secondary.100}"},"200":{"value":"{color.secondary.200}"},"300":{"value":"{color.secondary.300}"},"400":{"value":"{color.secondary.400}"},"500":{"value":"{color.secondary.500}"},"600":{"value":"{color.secondary.600}"},"700":{"value":"{color.secondary.700}"},"800":{"value":"{color.secondary.800}"},"900":{"value":"{color.secondary.900}"}}}},"type":"object","default":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.secondary.50}"},"100":{"value":"{color.secondary.100}"},"200":{"value":"{color.secondary.200}"},"300":{"value":"{color.secondary.300}"},"400":{"value":"{color.secondary.400}"},"500":{"value":"{color.secondary.500}"},"600":{"value":"{color.secondary.600}"},"700":{"value":"{color.secondary.700}"},"800":{"value":"{color.secondary.800}"},"900":{"value":"{color.secondary.900}"}}}}},"type":"object","default":{"body":{"color":{"value":{"initial":"{color.black}","dark":"{color.white}"}},"backgroundColor":{"value":{"initial":"{color.white}","dark":"{color.black}"}}},"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"24px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.secondary.50}"},"100":{"value":"{color.secondary.100}"},"200":{"value":"{color.secondary.200}"},"300":{"value":"{color.secondary.300}"},"400":{"value":"{color.secondary.400}"},"500":{"value":"{color.secondary.500}"},"600":{"value":"{color.secondary.600}"},"700":{"value":"{color.secondary.700}"},"800":{"value":"{color.secondary.800}"},"900":{"value":"{color.secondary.900}"}}}}},"prose":{"title":"All the configurable tokens for your Prose components.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon lucide:component"],"id":"#tokensConfig/prose","properties":{"p":{"id":"#tokensConfig/prose/p","properties":{"fontSize":{"id":"#tokensConfig/prose/p/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/fontSize/value","default":"18px"}},"type":"object","default":{"value":"18px"}},"lineHeight":{"id":"#tokensConfig/prose/p/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/lineHeight/value","default":"{typography.lead.normal}"}},"type":"object","default":{"value":"{typography.lead.normal}"}},"margin":{"id":"#tokensConfig/prose/p/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"br":{"id":"#tokensConfig/prose/p/br","properties":{"margin":{"id":"#tokensConfig/prose/p/br/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/br/margin/value","default":"{typography.verticalMargin.base} 0 0 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}}},"type":"object","default":{"fontSize":{"value":"18px"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}}},"h1":{"id":"#tokensConfig/prose/h1","properties":{"margin":{"id":"#tokensConfig/prose/h1/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/margin/value","default":"0 0 2rem"}},"type":"object","default":{"value":"0 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h1/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/fontSize/value","default":"{typography.fontSize.5xl}"}},"type":"object","default":{"value":"{typography.fontSize.5xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h1/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/lineHeight/value","default":"{typography.lead.tight}"}},"type":"object","default":{"value":"{typography.lead.tight}"}},"fontWeight":{"id":"#tokensConfig/prose/h1/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/fontWeight/value","default":"{typography.fontWeight.bold}"}},"type":"object","default":{"value":"{typography.fontWeight.bold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h1/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h1/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/iconSize/value","default":"{typography.fontSize.3xl}"}},"type":"object","default":{"value":"{typography.fontSize.3xl}"}}},"type":"object","default":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}}},"h2":{"id":"#tokensConfig/prose/h2","properties":{"margin":{"id":"#tokensConfig/prose/h2/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h2/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/fontSize/value","default":"{typography.fontSize.4xl}"}},"type":"object","default":{"value":"{typography.fontSize.4xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h2/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/lineHeight/value","default":"{typography.lead.tight}"}},"type":"object","default":{"value":"{typography.lead.tight}"}},"fontWeight":{"id":"#tokensConfig/prose/h2/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h2/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h2/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/iconSize/value","default":"{typography.fontSize.2xl}"}},"type":"object","default":{"value":"{typography.fontSize.2xl}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}}},"h3":{"id":"#tokensConfig/prose/h3","properties":{"margin":{"id":"#tokensConfig/prose/h3/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h3/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/fontSize/value","default":"{typography.fontSize.3xl}"}},"type":"object","default":{"value":"{typography.fontSize.3xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h3/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h3/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h3/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h3/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/iconSize/value","default":"{typography.fontSize.xl}"}},"type":"object","default":{"value":"{typography.fontSize.xl}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}}},"h4":{"id":"#tokensConfig/prose/h4","properties":{"margin":{"id":"#tokensConfig/prose/h4/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h4/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/fontSize/value","default":"{typography.fontSize.2xl}"}},"type":"object","default":{"value":"{typography.fontSize.2xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h4/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h4/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h4/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h4/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/iconSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}}},"h5":{"id":"#tokensConfig/prose/h5","properties":{"margin":{"id":"#tokensConfig/prose/h5/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h5/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/fontSize/value","default":"{typography.fontSize.xl}"}},"type":"object","default":{"value":"{typography.fontSize.xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h5/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h5/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"iconSize":{"id":"#tokensConfig/prose/h5/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/iconSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}}},"h6":{"id":"#tokensConfig/prose/h6","properties":{"margin":{"id":"#tokensConfig/prose/h6/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h6/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/fontSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}},"lineHeight":{"id":"#tokensConfig/prose/h6/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/lineHeight/value","default":"{typography.lead.normal}"}},"type":"object","default":{"value":"{typography.lead.normal}"}},"fontWeight":{"id":"#tokensConfig/prose/h6/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"iconSize":{"id":"#tokensConfig/prose/h6/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/iconSize/value","default":"{typography.fontSize.base}"}},"type":"object","default":{"value":"{typography.fontSize.base}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}}},"strong":{"id":"#tokensConfig/prose/strong","properties":{"fontWeight":{"id":"#tokensConfig/prose/strong/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/strong/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}}},"type":"object","default":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}}},"img":{"id":"#tokensConfig/prose/img","properties":{"margin":{"id":"#tokensConfig/prose/img/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/img/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"}}},"a":{"id":"#tokensConfig/prose/a","properties":{"textDecoration":{"id":"#tokensConfig/prose/a/textDecoration","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/textDecoration/value","default":"none"}},"type":"object","default":{"value":"none"}},"color":{"id":"#tokensConfig/prose/a/color","properties":{"static":{"id":"#tokensConfig/prose/a/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/color/static/value/initial","default":"inherit"},"dark":{"type":"string","id":"#tokensConfig/prose/a/color/static/value/dark","default":"inherit"}},"type":"object","default":{"initial":"inherit","dark":"inherit"}}},"type":"object","default":{"value":{"initial":"inherit","dark":"inherit"}}},"hover":{"id":"#tokensConfig/prose/a/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/color/hover/value/initial","default":"{typography.color.primary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/color/hover/value/dark","default":"{typography.color.primary.400}"}},"type":"object","default":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}}},"type":"object","default":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}}},"border":{"id":"#tokensConfig/prose/a/border","properties":{"width":{"id":"#tokensConfig/prose/a/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/a/border/style","properties":{"static":{"id":"#tokensConfig/prose/a/border/style/static","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/style/static/value","default":"dashed"}},"type":"object","default":{"value":"dashed"}},"hover":{"id":"#tokensConfig/prose/a/border/style/hover","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/style/hover/value","default":"solid"}},"type":"object","default":{"value":"solid"}}},"type":"object","default":{"static":{"value":"dashed"},"hover":{"value":"solid"}}},"color":{"id":"#tokensConfig/prose/a/border/color","properties":{"static":{"id":"#tokensConfig/prose/a/border/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/border/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/border/color/static/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/border/color/static/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}},"hover":{"id":"#tokensConfig/prose/a/border/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/border/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/border/color/hover/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/border/color/hover/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"type":"object","default":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"distance":{"id":"#tokensConfig/prose/a/border/distance","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/distance/value","default":"2px"}},"type":"object","default":{"value":"2px"}}},"type":"object","default":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}}},"fontWeight":{"id":"#tokensConfig/prose/a/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/fontWeight/value","default":"{typography.fontWeight.medium}"}},"type":"object","default":{"value":"{typography.fontWeight.medium}"}},"hasCode":{"id":"#tokensConfig/prose/a/hasCode","properties":{"borderBottom":{"id":"#tokensConfig/prose/a/hasCode/borderBottom","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/hasCode/borderBottom/value","default":"none"}},"type":"object","default":{"value":"none"}}},"type":"object","default":{"borderBottom":{"value":"none"}}},"code":{"id":"#tokensConfig/prose/a/code","properties":{"border":{"id":"#tokensConfig/prose/a/code/border","properties":{"width":{"id":"#tokensConfig/prose/a/code/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/code/border/width/value","default":"{prose.a.border.width}"}},"type":"object","default":{"value":"{prose.a.border.width}"}},"style":{"id":"#tokensConfig/prose/a/code/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/code/border/style/value","default":"{prose.a.border.style.static}"}},"type":"object","default":{"value":"{prose.a.border.style.static}"}},"color":{"id":"#tokensConfig/prose/a/code/border/color","properties":{"static":{"id":"#tokensConfig/prose/a/code/border/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/code/border/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/static/value/initial","default":"{typography.color.secondary.400}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/static/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}}},"hover":{"id":"#tokensConfig/prose/a/code/border/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/border/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/hover/value/initial","default":"{typography.color.primary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/hover/value/dark","default":"{typography.color.primary.600}"}},"type":"object","default":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"type":"object","default":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}}},"type":"object","default":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}}},"color":{"id":"#tokensConfig/prose/a/code/color","properties":{"static":{"id":"#tokensConfig/prose/a/code/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/code/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/color/static/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/color/static/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}},"hover":{"id":"#tokensConfig/prose/a/code/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/color/hover/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/color/hover/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"type":"object","default":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"background":{"id":"#tokensConfig/prose/a/code/background","properties":{"static":{"id":"#tokensConfig/prose/a/code/background/static","type":"any","default":{}},"hover":{"id":"#tokensConfig/prose/a/code/background/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/background/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/background/hover/value/initial","default":"{typography.color.primary.50}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/background/hover/value/dark","default":"{typography.color.primary.900}"}},"type":"object","default":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}},"type":"object","default":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"type":"object","default":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}}},"type":"object","default":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}}},"blockquote":{"id":"#tokensConfig/prose/blockquote","properties":{"margin":{"id":"#tokensConfig/prose/blockquote/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"paddingInlineStart":{"id":"#tokensConfig/prose/blockquote/paddingInlineStart","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/paddingInlineStart/value","default":"24px"}},"type":"object","default":{"value":"24px"}},"quotes":{"id":"#tokensConfig/prose/blockquote/quotes","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/quotes/value","default":"'201C' '201D' '2018' '2019'"}},"type":"object","default":{"value":"'201C' '201D' '2018' '2019'"}},"color":{"id":"#tokensConfig/prose/blockquote/color","properties":{"value":{"id":"#tokensConfig/prose/blockquote/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/blockquote/color/value/initial","default":"{typography.color.secondary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/blockquote/color/value/dark","default":"{typography.color.secondary.400}"}},"type":"object","default":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}}},"border":{"id":"#tokensConfig/prose/blockquote/border","properties":{"width":{"id":"#tokensConfig/prose/blockquote/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/border/width/value","default":"4px"}},"type":"object","default":{"value":"4px"}},"style":{"id":"#tokensConfig/prose/blockquote/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/blockquote/border/color","properties":{"value":{"id":"#tokensConfig/prose/blockquote/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/blockquote/border/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/blockquote/border/color/value/dark","default":"{typography.color.secondary.700}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"type":"object","default":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}}},"ul":{"id":"#tokensConfig/prose/ul","properties":{"listStyleType":{"id":"#tokensConfig/prose/ul/listStyleType","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/listStyleType/value","default":"disc"}},"type":"object","default":{"value":"disc"}},"margin":{"id":"#tokensConfig/prose/ul/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"paddingInlineStart":{"id":"#tokensConfig/prose/ul/paddingInlineStart","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/paddingInlineStart/value","default":"21px"}},"type":"object","default":{"value":"21px"}},"li":{"id":"#tokensConfig/prose/ul/li","properties":{"markerColor":{"id":"#tokensConfig/prose/ul/li/markerColor","properties":{"value":{"id":"#tokensConfig/prose/ul/li/markerColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/ul/li/markerColor/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/ul/li/markerColor/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"type":"object","default":{"markerColor":{"value":{"initial":"currentColor","dark":"currentColor"}}}}},"type":"object","default":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"21px"},"li":{"markerColor":{"value":{"initial":"currentColor","dark":"currentColor"}}}}},"ol":{"id":"#tokensConfig/prose/ol","properties":{"listStyleType":{"id":"#tokensConfig/prose/ol/listStyleType","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/listStyleType/value","default":"decimal"}},"type":"object","default":{"value":"decimal"}},"margin":{"id":"#tokensConfig/prose/ol/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"paddingInlineStart":{"id":"#tokensConfig/prose/ol/paddingInlineStart","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/paddingInlineStart/value","default":"21px"}},"type":"object","default":{"value":"21px"}},"li":{"id":"#tokensConfig/prose/ol/li","properties":{"markerColor":{"id":"#tokensConfig/prose/ol/li/markerColor","properties":{"value":{"id":"#tokensConfig/prose/ol/li/markerColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/ol/li/markerColor/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/ol/li/markerColor/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"type":"object","default":{"markerColor":{"value":{"initial":"currentColor","dark":"currentColor"}}}}},"type":"object","default":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"21px"},"li":{"markerColor":{"value":{"initial":"currentColor","dark":"currentColor"}}}}},"li":{"id":"#tokensConfig/prose/li","properties":{"margin":{"id":"#tokensConfig/prose/li/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/li/margin/value","default":"{typography.verticalMargin.sm} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.sm} 0"}},"listStylePosition":{"id":"#tokensConfig/prose/li/listStylePosition","properties":{"value":{"type":"string","id":"#tokensConfig/prose/li/listStylePosition/value","default":"outside"}},"type":"object","default":{"value":"outside"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}}},"hr":{"id":"#tokensConfig/prose/hr","properties":{"margin":{"id":"#tokensConfig/prose/hr/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"style":{"id":"#tokensConfig/prose/hr/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"width":{"id":"#tokensConfig/prose/hr/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"color":{"id":"#tokensConfig/prose/hr/color","properties":{"value":{"id":"#tokensConfig/prose/hr/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/hr/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/hr/color/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"table":{"id":"#tokensConfig/prose/table","properties":{"margin":{"id":"#tokensConfig/prose/table/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"textAlign":{"id":"#tokensConfig/prose/table/textAlign","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/textAlign/value","default":"start"}},"type":"object","default":{"value":"start"}},"fontSize":{"id":"#tokensConfig/prose/table/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"lineHeight":{"id":"#tokensConfig/prose/table/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/lineHeight/value","default":"{typography.lead.6}"}},"type":"object","default":{"value":"{typography.lead.6}"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"start"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"{typography.lead.6}"}}},"thead":{"id":"#tokensConfig/prose/thead","properties":{"border":{"id":"#tokensConfig/prose/thead/border","properties":{"width":{"id":"#tokensConfig/prose/thead/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/border/width/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"style":{"id":"#tokensConfig/prose/thead/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/thead/border/color","properties":{"value":{"id":"#tokensConfig/prose/thead/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/thead/border/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/thead/border/color/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"type":"object","default":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"borderBottom":{"id":"#tokensConfig/prose/thead/borderBottom","properties":{"width":{"id":"#tokensConfig/prose/thead/borderBottom/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/thead/borderBottom/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/thead/borderBottom/color","properties":{"value":{"id":"#tokensConfig/prose/thead/borderBottom/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/color/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}}},"type":"object","default":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}}},"th":{"id":"#tokensConfig/prose/th","properties":{"color":{"id":"#tokensConfig/prose/th/color","properties":{"value":{"id":"#tokensConfig/prose/th/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/th/color/value/initial","default":"{typography.color.secondary.600}"},"dark":{"type":"string","id":"#tokensConfig/prose/th/color/value/dark","default":"{typography.color.secondary.400}"}},"type":"object","default":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}}},"padding":{"id":"#tokensConfig/prose/th/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/th/padding/value","default":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"}},"type":"object","default":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"}},"fontWeight":{"id":"#tokensConfig/prose/th/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/th/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"textAlign":{"id":"#tokensConfig/prose/th/textAlign","properties":{"value":{"type":"string","id":"#tokensConfig/prose/th/textAlign/value","default":"inherit"}},"type":"object","default":{"value":"inherit"}}},"type":"object","default":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"textAlign":{"value":"inherit"}}},"tbody":{"id":"#tokensConfig/prose/tbody","properties":{"tr":{"id":"#tokensConfig/prose/tbody/tr","properties":{"borderBottom":{"id":"#tokensConfig/prose/tbody/tr/borderBottom","properties":{"width":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/style/value","default":"dashed"}},"type":"object","default":{"value":"dashed"}},"color":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/color","properties":{"value":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}}},"type":"object","default":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}}},"td":{"id":"#tokensConfig/prose/tbody/td","properties":{"padding":{"id":"#tokensConfig/prose/tbody/td/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/td/padding/value","default":"{typography.verticalMargin.sm}"}},"type":"object","default":{"value":"{typography.verticalMargin.sm}"}}},"type":"object","default":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"code":{"id":"#tokensConfig/prose/tbody/code","properties":{"inline":{"id":"#tokensConfig/prose/tbody/code/inline","properties":{"fontSize":{"id":"#tokensConfig/prose/tbody/code/inline/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/code/inline/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"type":"object","default":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}}},"type":"object","default":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}}},"code":{"id":"#tokensConfig/prose/code","properties":{"block":{"id":"#tokensConfig/prose/code/block","properties":{"fontSize":{"id":"#tokensConfig/prose/code/block/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"margin":{"id":"#tokensConfig/prose/code/block/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"border":{"id":"#tokensConfig/prose/code/block/border","properties":{"width":{"id":"#tokensConfig/prose/code/block/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/border/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/code/block/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/code/block/border/color","properties":{"value":{"id":"#tokensConfig/prose/code/block/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/border/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/border/color/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"color":{"id":"#tokensConfig/prose/code/block/color","properties":{"value":{"id":"#tokensConfig/prose/code/block/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/color/value/initial","default":"{typography.color.secondary.700}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/color/value/dark","default":"{typography.color.secondary.200}"}},"type":"object","default":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"backgroundColor":{"id":"#tokensConfig/prose/code/block/backgroundColor","properties":{"value":{"id":"#tokensConfig/prose/code/block/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/backgroundColor/value/initial","default":"{typography.color.secondary.100}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/backgroundColor/value/dark","default":"{typography.color.secondary.900}"}},"type":"object","default":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"backdropFilter":{"id":"#tokensConfig/prose/code/block/backdropFilter","properties":{"value":{"id":"#tokensConfig/prose/code/block/backdropFilter/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/backdropFilter/value/initial","default":"contrast(1)"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/backdropFilter/value/dark","default":"contrast(1)"}},"type":"object","default":{"initial":"contrast(1)","dark":"contrast(1)"}}},"type":"object","default":{"value":{"initial":"contrast(1)","dark":"contrast(1)"}}},"pre":{"id":"#tokensConfig/prose/code/block/pre","properties":{"padding":{"id":"#tokensConfig/prose/code/block/pre/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/pre/padding/value","default":"{typography.verticalMargin.sm}"}},"type":"object","default":{"value":"{typography.verticalMargin.sm}"}}},"type":"object","default":{"padding":{"value":"{typography.verticalMargin.sm}"}}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"backdropFilter":{"value":{"initial":"contrast(1)","dark":"contrast(1)"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}}},"inline":{"id":"#tokensConfig/prose/code/inline","properties":{"borderRadius":{"id":"#tokensConfig/prose/code/inline/borderRadius","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/borderRadius/value","default":"{radii.xs}"}},"type":"object","default":{"value":"{radii.xs}"}},"padding":{"id":"#tokensConfig/prose/code/inline/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/padding/value","default":"0.2rem 0.375rem 0.2rem 0.375rem"}},"type":"object","default":{"value":"0.2rem 0.375rem 0.2rem 0.375rem"}},"fontSize":{"id":"#tokensConfig/prose/code/inline/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"fontWeight":{"id":"#tokensConfig/prose/code/inline/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/fontWeight/value","default":"{typography.fontWeight.normal}"}},"type":"object","default":{"value":"{typography.fontWeight.normal}"}},"color":{"id":"#tokensConfig/prose/code/inline/color","properties":{"value":{"id":"#tokensConfig/prose/code/inline/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/inline/color/value/initial","default":"{typography.color.secondary.700}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/inline/color/value/dark","default":"{typography.color.secondary.200}"}},"type":"object","default":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"backgroundColor":{"id":"#tokensConfig/prose/code/inline/backgroundColor","properties":{"value":{"id":"#tokensConfig/prose/code/inline/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/inline/backgroundColor/value/initial","default":"{typography.color.secondary.100}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/inline/backgroundColor/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"borderRadius":{"value":"{radii.xs}"},"padding":{"value":"0.2rem 0.375rem 0.2rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.800}"}}}}},"type":"object","default":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"backdropFilter":{"value":{"initial":"contrast(1)","dark":"contrast(1)"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"{radii.xs}"},"padding":{"value":"0.2rem 0.375rem 0.2rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.800}"}}}}}},"type":"object","default":{"p":{"fontSize":{"value":"18px"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"21px"},"li":{"markerColor":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"21px"},"li":{"markerColor":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"start"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"{typography.lead.6}"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"textAlign":{"value":"inherit"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"backdropFilter":{"value":{"initial":"contrast(1)","dark":"contrast(1)"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"{radii.xs}"},"padding":{"value":"0.2rem 0.375rem 0.2rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.800}"}}}}}},"alpine":{"title":"All the configurable tokens from Alpine.","tags":["@studio-icon carbon:blog"],"id":"#tokensConfig/alpine","properties":{"body":{"id":"#tokensConfig/alpine/body","properties":{"backgroundColor":{"id":"#tokensConfig/alpine/body/backgroundColor","properties":{"value":{"id":"#tokensConfig/alpine/body/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/alpine/body/backgroundColor/value/initial","default":"{color.white}"},"dark":{"type":"string","id":"#tokensConfig/alpine/body/backgroundColor/value/dark","default":"{color.black}"}},"type":"object","default":{"initial":"{color.white}","dark":"{color.black}"}}},"type":"object","default":{"value":{"initial":"{color.white}","dark":"{color.black}"}}},"color":{"id":"#tokensConfig/alpine/body/color","properties":{"value":{"id":"#tokensConfig/alpine/body/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/alpine/body/color/value/initial","default":"{color.gray.800}"},"dark":{"type":"string","id":"#tokensConfig/alpine/body/color/value/dark","default":"{color.gray.200}"}},"type":"object","default":{"initial":"{color.gray.800}","dark":"{color.gray.200}"}}},"type":"object","default":{"value":{"initial":"{color.gray.800}","dark":"{color.gray.200}"}}}},"type":"object","default":{"backgroundColor":{"value":{"initial":"{color.white}","dark":"{color.black}"}},"color":{"value":{"initial":"{color.gray.800}","dark":"{color.gray.200}"}}}},"backdrop":{"id":"#tokensConfig/alpine/backdrop","properties":{"backgroundColor":{"id":"#tokensConfig/alpine/backdrop/backgroundColor","properties":{"value":{"id":"#tokensConfig/alpine/backdrop/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/alpine/backdrop/backgroundColor/value/initial","default":"#f4f4f5b3"},"dark":{"type":"string","id":"#tokensConfig/alpine/backdrop/backgroundColor/value/dark","default":"#18181bb3"}},"type":"object","default":{"initial":"#f4f4f5b3","dark":"#18181bb3"}}},"type":"object","default":{"value":{"initial":"#f4f4f5b3","dark":"#18181bb3"}}}},"type":"object","default":{"backgroundColor":{"value":{"initial":"#f4f4f5b3","dark":"#18181bb3"}}}},"readableLine":{"id":"#tokensConfig/alpine/readableLine","properties":{"value":{"type":"string","id":"#tokensConfig/alpine/readableLine/value","default":"68ch"}},"type":"object","default":{"value":"68ch"}}},"type":"object","default":{"body":{"backgroundColor":{"value":{"initial":"{color.white}","dark":"{color.black}"}},"color":{"value":{"initial":"{color.gray.800}","dark":"{color.gray.200}"}}},"backdrop":{"backgroundColor":{"value":{"initial":"#f4f4f5b3","dark":"#18181bb3"}}},"readableLine":{"value":"68ch"}}}},"type":"object","default":{"media":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}},"color":{"white":{"value":"#FFFFFF"},"black":{"value":"#0c0c0d"},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}},"primary":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}},"width":{"screen":{"value":"100vw"}},"height":{"screen":{"value":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}},"radii":{"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}},"size":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}},"space":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"128":{"value":"32rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}},"opacity":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"fontSize":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}},"letterSpacing":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"text":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"64rem"},"padding":{"mobile":{"value":"{space.6}"},"xs":{"value":"{space.8}"},"sm":{"value":"{space.12}"},"md":{"value":"{space.16}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"primary":{"backgroundColor":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"secondary":{"backgroundColor":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"body":{"color":{"value":{"initial":"{color.black}","dark":"{color.white}"}},"backgroundColor":{"value":{"initial":"{color.white}","dark":"{color.black}"}}},"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"24px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.secondary.50}"},"100":{"value":"{color.secondary.100}"},"200":{"value":"{color.secondary.200}"},"300":{"value":"{color.secondary.300}"},"400":{"value":"{color.secondary.400}"},"500":{"value":"{color.secondary.500}"},"600":{"value":"{color.secondary.600}"},"700":{"value":"{color.secondary.700}"},"800":{"value":"{color.secondary.800}"},"900":{"value":"{color.secondary.900}"}}}},"prose":{"p":{"fontSize":{"value":"18px"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"21px"},"li":{"markerColor":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"21px"},"li":{"markerColor":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"start"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"{typography.lead.6}"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"textAlign":{"value":"inherit"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"backdropFilter":{"value":{"initial":"contrast(1)","dark":"contrast(1)"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"{radii.xs}"},"padding":{"value":"0.2rem 0.375rem 0.2rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.800}"}}}}},"alpine":{"body":{"backgroundColor":{"value":{"initial":"{color.white}","dark":"{color.black}"}},"color":{"value":{"initial":"{color.gray.800}","dark":"{color.gray.200}"}}},"backdrop":{"backgroundColor":{"value":{"initial":"#f4f4f5b3","dark":"#18181bb3"}}},"readableLine":{"value":"68ch"}}}},"default":{"media":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}},"color":{"white":{"value":"#FFFFFF"},"black":{"value":"#0c0c0d"},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}},"primary":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}},"width":{"screen":{"value":"100vw"}},"height":{"screen":{"value":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}},"radii":{"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}},"size":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}},"space":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"128":{"value":"32rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}},"opacity":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"fontSize":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}},"letterSpacing":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"text":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"64rem"},"padding":{"mobile":{"value":"{space.6}"},"xs":{"value":"{space.8}"},"sm":{"value":"{space.12}"},"md":{"value":"{space.16}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"primary":{"backgroundColor":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"secondary":{"backgroundColor":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"body":{"color":{"value":{"initial":"{color.black}","dark":"{color.white}"}},"backgroundColor":{"value":{"initial":"{color.white}","dark":"{color.black}"}}},"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"24px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.secondary.50}"},"100":{"value":"{color.secondary.100}"},"200":{"value":"{color.secondary.200}"},"300":{"value":"{color.secondary.300}"},"400":{"value":"{color.secondary.400}"},"500":{"value":"{color.secondary.500}"},"600":{"value":"{color.secondary.600}"},"700":{"value":"{color.secondary.700}"},"800":{"value":"{color.secondary.800}"},"900":{"value":"{color.secondary.900}"}}}},"prose":{"p":{"fontSize":{"value":"18px"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"21px"},"li":{"markerColor":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"21px"},"li":{"markerColor":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"start"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"{typography.lead.6}"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"textAlign":{"value":"inherit"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"backdropFilter":{"value":{"initial":"contrast(1)","dark":"contrast(1)"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"{radii.xs}"},"padding":{"value":"0.2rem 0.375rem 0.2rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.800}"}}}}},"alpine":{"body":{"backgroundColor":{"value":{"initial":"{color.white}","dark":"{color.black}"}},"color":{"value":{"initial":"{color.gray.800}","dark":"{color.gray.200}"}}},"backdrop":{"backgroundColor":{"value":{"initial":"#f4f4f5b3","dark":"#18181bb3"}}},"readableLine":{"value":"68ch"}}}},"tokensConfig":{"media":{"xs":{"value":"(min-width: 475px)","variable":"var(--media-xs)","raw":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)","variable":"var(--media-sm)","raw":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)","variable":"var(--media-md)","raw":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)","variable":"var(--media-lg)","raw":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)","variable":"var(--media-xl)","raw":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)","variable":"var(--media-2xl)","raw":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)","variable":"var(--media-rm)","raw":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)","variable":"var(--media-landscape)","raw":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)","variable":"var(--media-portrait)","raw":"only screen and (orientation: portrait)"}},"color":{"white":{"value":"#FFFFFF","variable":"var(--color-white)","raw":"#FFFFFF"},"black":{"value":"#0c0c0d","variable":"var(--color-black)","raw":"#0c0c0d"},"gray":{"50":{"value":"#fafafa","variable":"var(--color-gray-50)","raw":"#fafafa"},"100":{"value":"#f4f4f5","variable":"var(--color-gray-100)","raw":"#f4f4f5"},"200":{"value":"#e4e4e7","variable":"var(--color-gray-200)","raw":"#e4e4e7"},"300":{"value":"#D4d4d8","variable":"var(--color-gray-300)","raw":"#D4d4d8"},"400":{"value":"#a1a1aa","variable":"var(--color-gray-400)","raw":"#a1a1aa"},"500":{"value":"#71717A","variable":"var(--color-gray-500)","raw":"#71717A"},"600":{"value":"#52525B","variable":"var(--color-gray-600)","raw":"#52525B"},"700":{"value":"#3f3f46","variable":"var(--color-gray-700)","raw":"#3f3f46"},"800":{"value":"#27272A","variable":"var(--color-gray-800)","raw":"#27272A"},"900":{"value":"#18181B","variable":"var(--color-gray-900)","raw":"#18181B"}},"green":{"50":{"value":"#d6ffee","variable":"var(--color-green-50)","raw":"#d6ffee"},"100":{"value":"#acffdd","variable":"var(--color-green-100)","raw":"#acffdd"},"200":{"value":"#83ffcc","variable":"var(--color-green-200)","raw":"#83ffcc"},"300":{"value":"#30ffaa","variable":"var(--color-green-300)","raw":"#30ffaa"},"400":{"value":"#00dc82","variable":"var(--color-green-400)","raw":"#00dc82"},"500":{"value":"#00bd6f","variable":"var(--color-green-500)","raw":"#00bd6f"},"600":{"value":"#009d5d","variable":"var(--color-green-600)","raw":"#009d5d"},"700":{"value":"#007e4a","variable":"var(--color-green-700)","raw":"#007e4a"},"800":{"value":"#005e38","variable":"var(--color-green-800)","raw":"#005e38"},"900":{"value":"#003f25","variable":"var(--color-green-900)","raw":"#003f25"}},"yellow":{"50":{"value":"#fdf6db","variable":"var(--color-yellow-50)","raw":"#fdf6db"},"100":{"value":"#fcedb7","variable":"var(--color-yellow-100)","raw":"#fcedb7"},"200":{"value":"#fae393","variable":"var(--color-yellow-200)","raw":"#fae393"},"300":{"value":"#f8da70","variable":"var(--color-yellow-300)","raw":"#f8da70"},"400":{"value":"#f7d14c","variable":"var(--color-yellow-400)","raw":"#f7d14c"},"500":{"value":"#f5c828","variable":"var(--color-yellow-500)","raw":"#f5c828"},"600":{"value":"#daac0a","variable":"var(--color-yellow-600)","raw":"#daac0a"},"700":{"value":"#a38108","variable":"var(--color-yellow-700)","raw":"#a38108"},"800":{"value":"#6d5605","variable":"var(--color-yellow-800)","raw":"#6d5605"},"900":{"value":"#362b03","variable":"var(--color-yellow-900)","raw":"#362b03"}},"orange":{"50":{"value":"#ffe9d9","variable":"var(--color-orange-50)","raw":"#ffe9d9"},"100":{"value":"#ffd3b3","variable":"var(--color-orange-100)","raw":"#ffd3b3"},"200":{"value":"#ffbd8d","variable":"var(--color-orange-200)","raw":"#ffbd8d"},"300":{"value":"#ffa666","variable":"var(--color-orange-300)","raw":"#ffa666"},"400":{"value":"#ff9040","variable":"var(--color-orange-400)","raw":"#ff9040"},"500":{"value":"#ff7a1a","variable":"var(--color-orange-500)","raw":"#ff7a1a"},"600":{"value":"#e15e00","variable":"var(--color-orange-600)","raw":"#e15e00"},"700":{"value":"#a94700","variable":"var(--color-orange-700)","raw":"#a94700"},"800":{"value":"#702f00","variable":"var(--color-orange-800)","raw":"#702f00"},"900":{"value":"#381800","variable":"var(--color-orange-900)","raw":"#381800"}},"red":{"50":{"value":"#ffdbd9","variable":"var(--color-red-50)","raw":"#ffdbd9"},"100":{"value":"#ffb7b3","variable":"var(--color-red-100)","raw":"#ffb7b3"},"200":{"value":"#ff948d","variable":"var(--color-red-200)","raw":"#ff948d"},"300":{"value":"#ff7066","variable":"var(--color-red-300)","raw":"#ff7066"},"400":{"value":"#ff4c40","variable":"var(--color-red-400)","raw":"#ff4c40"},"500":{"value":"#ff281a","variable":"var(--color-red-500)","raw":"#ff281a"},"600":{"value":"#e10e00","variable":"var(--color-red-600)","raw":"#e10e00"},"700":{"value":"#a90a00","variable":"var(--color-red-700)","raw":"#a90a00"},"800":{"value":"#700700","variable":"var(--color-red-800)","raw":"#700700"},"900":{"value":"#380300","variable":"var(--color-red-900)","raw":"#380300"}},"pear":{"50":{"value":"#f7f8dc","variable":"var(--color-pear-50)","raw":"#f7f8dc"},"100":{"value":"#eff0ba","variable":"var(--color-pear-100)","raw":"#eff0ba"},"200":{"value":"#e8e997","variable":"var(--color-pear-200)","raw":"#e8e997"},"300":{"value":"#e0e274","variable":"var(--color-pear-300)","raw":"#e0e274"},"400":{"value":"#d8da52","variable":"var(--color-pear-400)","raw":"#d8da52"},"500":{"value":"#d0d32f","variable":"var(--color-pear-500)","raw":"#d0d32f"},"600":{"value":"#a8aa24","variable":"var(--color-pear-600)","raw":"#a8aa24"},"700":{"value":"#7e801b","variable":"var(--color-pear-700)","raw":"#7e801b"},"800":{"value":"#545512","variable":"var(--color-pear-800)","raw":"#545512"},"900":{"value":"#2a2b09","variable":"var(--color-pear-900)","raw":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8","variable":"var(--color-teal-50)","raw":"#d7faf8"},"100":{"value":"#aff4f0","variable":"var(--color-teal-100)","raw":"#aff4f0"},"200":{"value":"#87efe9","variable":"var(--color-teal-200)","raw":"#87efe9"},"300":{"value":"#5fe9e1","variable":"var(--color-teal-300)","raw":"#5fe9e1"},"400":{"value":"#36e4da","variable":"var(--color-teal-400)","raw":"#36e4da"},"500":{"value":"#1cd1c6","variable":"var(--color-teal-500)","raw":"#1cd1c6"},"600":{"value":"#16a79e","variable":"var(--color-teal-600)","raw":"#16a79e"},"700":{"value":"#117d77","variable":"var(--color-teal-700)","raw":"#117d77"},"800":{"value":"#0b544f","variable":"var(--color-teal-800)","raw":"#0b544f"},"900":{"value":"#062a28","variable":"var(--color-teal-900)","raw":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff","variable":"var(--color-lightblue-50)","raw":"#d9f8ff"},"100":{"value":"#b3f1ff","variable":"var(--color-lightblue-100)","raw":"#b3f1ff"},"200":{"value":"#8deaff","variable":"var(--color-lightblue-200)","raw":"#8deaff"},"300":{"value":"#66e4ff","variable":"var(--color-lightblue-300)","raw":"#66e4ff"},"400":{"value":"#40ddff","variable":"var(--color-lightblue-400)","raw":"#40ddff"},"500":{"value":"#1ad6ff","variable":"var(--color-lightblue-500)","raw":"#1ad6ff"},"600":{"value":"#00b9e1","variable":"var(--color-lightblue-600)","raw":"#00b9e1"},"700":{"value":"#008aa9","variable":"var(--color-lightblue-700)","raw":"#008aa9"},"800":{"value":"#005c70","variable":"var(--color-lightblue-800)","raw":"#005c70"},"900":{"value":"#002e38","variable":"var(--color-lightblue-900)","raw":"#002e38"}},"blue":{"50":{"value":"#d9f1ff","variable":"var(--color-blue-50)","raw":"#d9f1ff"},"100":{"value":"#b3e4ff","variable":"var(--color-blue-100)","raw":"#b3e4ff"},"200":{"value":"#8dd6ff","variable":"var(--color-blue-200)","raw":"#8dd6ff"},"300":{"value":"#66c8ff","variable":"var(--color-blue-300)","raw":"#66c8ff"},"400":{"value":"#40bbff","variable":"var(--color-blue-400)","raw":"#40bbff"},"500":{"value":"#1aadff","variable":"var(--color-blue-500)","raw":"#1aadff"},"600":{"value":"#0090e1","variable":"var(--color-blue-600)","raw":"#0090e1"},"700":{"value":"#006ca9","variable":"var(--color-blue-700)","raw":"#006ca9"},"800":{"value":"#004870","variable":"var(--color-blue-800)","raw":"#004870"},"900":{"value":"#002438","variable":"var(--color-blue-900)","raw":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff","variable":"var(--color-indigoblue-50)","raw":"#d9e5ff"},"100":{"value":"#b3cbff","variable":"var(--color-indigoblue-100)","raw":"#b3cbff"},"200":{"value":"#8db0ff","variable":"var(--color-indigoblue-200)","raw":"#8db0ff"},"300":{"value":"#6696ff","variable":"var(--color-indigoblue-300)","raw":"#6696ff"},"400":{"value":"#407cff","variable":"var(--color-indigoblue-400)","raw":"#407cff"},"500":{"value":"#1a62ff","variable":"var(--color-indigoblue-500)","raw":"#1a62ff"},"600":{"value":"#0047e1","variable":"var(--color-indigoblue-600)","raw":"#0047e1"},"700":{"value":"#0035a9","variable":"var(--color-indigoblue-700)","raw":"#0035a9"},"800":{"value":"#002370","variable":"var(--color-indigoblue-800)","raw":"#002370"},"900":{"value":"#001238","variable":"var(--color-indigoblue-900)","raw":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb","variable":"var(--color-royalblue-50)","raw":"#dfdbfb"},"100":{"value":"#c0b7f7","variable":"var(--color-royalblue-100)","raw":"#c0b7f7"},"200":{"value":"#a093f3","variable":"var(--color-royalblue-200)","raw":"#a093f3"},"300":{"value":"#806ff0","variable":"var(--color-royalblue-300)","raw":"#806ff0"},"400":{"value":"#614bec","variable":"var(--color-royalblue-400)","raw":"#614bec"},"500":{"value":"#4127e8","variable":"var(--color-royalblue-500)","raw":"#4127e8"},"600":{"value":"#2c15c4","variable":"var(--color-royalblue-600)","raw":"#2c15c4"},"700":{"value":"#211093","variable":"var(--color-royalblue-700)","raw":"#211093"},"800":{"value":"#160a62","variable":"var(--color-royalblue-800)","raw":"#160a62"},"900":{"value":"#0b0531","variable":"var(--color-royalblue-900)","raw":"#0b0531"}},"purple":{"50":{"value":"#ead9ff","variable":"var(--color-purple-50)","raw":"#ead9ff"},"100":{"value":"#d5b3ff","variable":"var(--color-purple-100)","raw":"#d5b3ff"},"200":{"value":"#c08dff","variable":"var(--color-purple-200)","raw":"#c08dff"},"300":{"value":"#ab66ff","variable":"var(--color-purple-300)","raw":"#ab66ff"},"400":{"value":"#9640ff","variable":"var(--color-purple-400)","raw":"#9640ff"},"500":{"value":"#811aff","variable":"var(--color-purple-500)","raw":"#811aff"},"600":{"value":"#6500e1","variable":"var(--color-purple-600)","raw":"#6500e1"},"700":{"value":"#4c00a9","variable":"var(--color-purple-700)","raw":"#4c00a9"},"800":{"value":"#330070","variable":"var(--color-purple-800)","raw":"#330070"},"900":{"value":"#190038","variable":"var(--color-purple-900)","raw":"#190038"}},"pink":{"50":{"value":"#ffd9f2","variable":"var(--color-pink-50)","raw":"#ffd9f2"},"100":{"value":"#ffb3e5","variable":"var(--color-pink-100)","raw":"#ffb3e5"},"200":{"value":"#ff8dd8","variable":"var(--color-pink-200)","raw":"#ff8dd8"},"300":{"value":"#ff66cc","variable":"var(--color-pink-300)","raw":"#ff66cc"},"400":{"value":"#ff40bf","variable":"var(--color-pink-400)","raw":"#ff40bf"},"500":{"value":"#ff1ab2","variable":"var(--color-pink-500)","raw":"#ff1ab2"},"600":{"value":"#e10095","variable":"var(--color-pink-600)","raw":"#e10095"},"700":{"value":"#a90070","variable":"var(--color-pink-700)","raw":"#a90070"},"800":{"value":"#70004b","variable":"var(--color-pink-800)","raw":"#70004b"},"900":{"value":"#380025","variable":"var(--color-pink-900)","raw":"#380025"}},"ruby":{"50":{"value":"#ffd9e4","variable":"var(--color-ruby-50)","raw":"#ffd9e4"},"100":{"value":"#ffb3c9","variable":"var(--color-ruby-100)","raw":"#ffb3c9"},"200":{"value":"#ff8dae","variable":"var(--color-ruby-200)","raw":"#ff8dae"},"300":{"value":"#ff6694","variable":"var(--color-ruby-300)","raw":"#ff6694"},"400":{"value":"#ff4079","variable":"var(--color-ruby-400)","raw":"#ff4079"},"500":{"value":"#ff1a5e","variable":"var(--color-ruby-500)","raw":"#ff1a5e"},"600":{"value":"#e10043","variable":"var(--color-ruby-600)","raw":"#e10043"},"700":{"value":"#a90032","variable":"var(--color-ruby-700)","raw":"#a90032"},"800":{"value":"#700021","variable":"var(--color-ruby-800)","raw":"#700021"},"900":{"value":"#380011","variable":"var(--color-ruby-900)","raw":"#380011"}},"primary":{"50":{"value":"#d9f8ff","variable":"var(--color-primary-50)","raw":"#d9f8ff"},"100":{"value":"#b3f1ff","variable":"var(--color-primary-100)","raw":"#b3f1ff"},"200":{"value":"#8deaff","variable":"var(--color-primary-200)","raw":"#8deaff"},"300":{"value":"#66e4ff","variable":"var(--color-primary-300)","raw":"#66e4ff"},"400":{"value":"#40ddff","variable":"var(--color-primary-400)","raw":"#40ddff"},"500":{"value":"#1ad6ff","variable":"var(--color-primary-500)","raw":"#1ad6ff"},"600":{"value":"#00b9e1","variable":"var(--color-primary-600)","raw":"#00b9e1"},"700":{"value":"#008aa9","variable":"var(--color-primary-700)","raw":"#008aa9"},"800":{"value":"#005c70","variable":"var(--color-primary-800)","raw":"#005c70"},"900":{"value":"#002e38","variable":"var(--color-primary-900)","raw":"#002e38"}},"secondary":{"50":{"value":"var(--color-gray-50)","variable":"var(--color-secondary-50)","raw":"{color.gray.50}"},"100":{"value":"var(--color-gray-100)","variable":"var(--color-secondary-100)","raw":"{color.gray.100}"},"200":{"value":"var(--color-gray-200)","variable":"var(--color-secondary-200)","raw":"{color.gray.200}"},"300":{"value":"var(--color-gray-300)","variable":"var(--color-secondary-300)","raw":"{color.gray.300}"},"400":{"value":"var(--color-gray-400)","variable":"var(--color-secondary-400)","raw":"{color.gray.400}"},"500":{"value":"var(--color-gray-500)","variable":"var(--color-secondary-500)","raw":"{color.gray.500}"},"600":{"value":"var(--color-gray-600)","variable":"var(--color-secondary-600)","raw":"{color.gray.600}"},"700":{"value":"var(--color-gray-700)","variable":"var(--color-secondary-700)","raw":"{color.gray.700}"},"800":{"value":"var(--color-gray-800)","variable":"var(--color-secondary-800)","raw":"{color.gray.800}"},"900":{"value":"var(--color-gray-900)","variable":"var(--color-secondary-900)","raw":"{color.gray.900}"}}},"width":{"screen":{"value":"100vw","variable":"var(--width-screen)","raw":"100vw"}},"height":{"screen":{"value":"100vh","variable":"var(--height-screen)","raw":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000","variable":"var(--shadow-xs)","raw":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000","variable":"var(--shadow-sm)","raw":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000","variable":"var(--shadow-md)","raw":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000","variable":"var(--shadow-lg)","raw":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px var(--color-gray-400), 0px 8px 10px -6px #000000","variable":"var(--shadow-xl)","raw":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px var(--color-gray-900)","variable":"var(--shadow-2xl)","raw":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent","variable":"var(--shadow-none)","raw":"0px 0px 0px 0px transparent"}},"radii":{"none":{"value":"0px","variable":"var(--radii-none)","raw":"0px"},"2xs":{"value":"0.125rem","variable":"var(--radii-2xs)","raw":"0.125rem"},"xs":{"value":"0.25rem","variable":"var(--radii-xs)","raw":"0.25rem"},"sm":{"value":"0.375rem","variable":"var(--radii-sm)","raw":"0.375rem"},"md":{"value":"0.5rem","variable":"var(--radii-md)","raw":"0.5rem"},"lg":{"value":"0.75rem","variable":"var(--radii-lg)","raw":"0.75rem"},"xl":{"value":"1rem","variable":"var(--radii-xl)","raw":"1rem"},"2xl":{"value":"1.5rem","variable":"var(--radii-2xl)","raw":"1.5rem"},"3xl":{"value":"1.75rem","variable":"var(--radii-3xl)","raw":"1.75rem"},"full":{"value":"9999px","variable":"var(--radii-full)","raw":"9999px"}},"size":{"0":{"value":"0px","variable":"var(--size-0)","raw":"0px"},"2":{"value":"2px","variable":"var(--size-2)","raw":"2px"},"4":{"value":"4px","variable":"var(--size-4)","raw":"4px"},"6":{"value":"6px","variable":"var(--size-6)","raw":"6px"},"8":{"value":"8px","variable":"var(--size-8)","raw":"8px"},"12":{"value":"12px","variable":"var(--size-12)","raw":"12px"},"16":{"value":"16px","variable":"var(--size-16)","raw":"16px"},"20":{"value":"20px","variable":"var(--size-20)","raw":"20px"},"24":{"value":"24px","variable":"var(--size-24)","raw":"24px"},"32":{"value":"32px","variable":"var(--size-32)","raw":"32px"},"40":{"value":"40px","variable":"var(--size-40)","raw":"40px"},"48":{"value":"48px","variable":"var(--size-48)","raw":"48px"},"56":{"value":"56px","variable":"var(--size-56)","raw":"56px"},"64":{"value":"64px","variable":"var(--size-64)","raw":"64px"},"80":{"value":"80px","variable":"var(--size-80)","raw":"80px"},"104":{"value":"104px","variable":"var(--size-104)","raw":"104px"},"200":{"value":"200px","variable":"var(--size-200)","raw":"200px"},"xs":{"value":"20rem","variable":"var(--size-xs)","raw":"20rem"},"sm":{"value":"24rem","variable":"var(--size-sm)","raw":"24rem"},"md":{"value":"28rem","variable":"var(--size-md)","raw":"28rem"},"lg":{"value":"32rem","variable":"var(--size-lg)","raw":"32rem"},"xl":{"value":"36rem","variable":"var(--size-xl)","raw":"36rem"},"2xl":{"value":"42rem","variable":"var(--size-2xl)","raw":"42rem"},"3xl":{"value":"48rem","variable":"var(--size-3xl)","raw":"48rem"},"4xl":{"value":"56rem","variable":"var(--size-4xl)","raw":"56rem"},"5xl":{"value":"64rem","variable":"var(--size-5xl)","raw":"64rem"},"6xl":{"value":"72rem","variable":"var(--size-6xl)","raw":"72rem"},"7xl":{"value":"80rem","variable":"var(--size-7xl)","raw":"80rem"},"full":{"value":"100%","variable":"var(--size-full)","raw":"100%"}},"space":{"0":{"value":"0px","variable":"var(--space-0)","raw":"0px"},"1":{"value":"0.25rem","variable":"var(--space-1)","raw":"0.25rem"},"2":{"value":"0.5rem","variable":"var(--space-2)","raw":"0.5rem"},"3":{"value":"0.75rem","variable":"var(--space-3)","raw":"0.75rem"},"4":{"value":"1rem","variable":"var(--space-4)","raw":"1rem"},"5":{"value":"1.25rem","variable":"var(--space-5)","raw":"1.25rem"},"6":{"value":"1.5rem","variable":"var(--space-6)","raw":"1.5rem"},"7":{"value":"1.75rem","variable":"var(--space-7)","raw":"1.75rem"},"8":{"value":"2rem","variable":"var(--space-8)","raw":"2rem"},"9":{"value":"2.25rem","variable":"var(--space-9)","raw":"2.25rem"},"10":{"value":"2.5rem","variable":"var(--space-10)","raw":"2.5rem"},"11":{"value":"2.75rem","variable":"var(--space-11)","raw":"2.75rem"},"12":{"value":"3rem","variable":"var(--space-12)","raw":"3rem"},"14":{"value":"3.5rem","variable":"var(--space-14)","raw":"3.5rem"},"16":{"value":"4rem","variable":"var(--space-16)","raw":"4rem"},"20":{"value":"5rem","variable":"var(--space-20)","raw":"5rem"},"24":{"value":"6rem","variable":"var(--space-24)","raw":"6rem"},"28":{"value":"7rem","variable":"var(--space-28)","raw":"7rem"},"32":{"value":"8rem","variable":"var(--space-32)","raw":"8rem"},"36":{"value":"9rem","variable":"var(--space-36)","raw":"9rem"},"40":{"value":"10rem","variable":"var(--space-40)","raw":"10rem"},"44":{"value":"11rem","variable":"var(--space-44)","raw":"11rem"},"48":{"value":"12rem","variable":"var(--space-48)","raw":"12rem"},"52":{"value":"13rem","variable":"var(--space-52)","raw":"13rem"},"56":{"value":"14rem","variable":"var(--space-56)","raw":"14rem"},"60":{"value":"15rem","variable":"var(--space-60)","raw":"15rem"},"64":{"value":"16rem","variable":"var(--space-64)","raw":"16rem"},"72":{"value":"18rem","variable":"var(--space-72)","raw":"18rem"},"80":{"value":"20rem","variable":"var(--space-80)","raw":"20rem"},"96":{"value":"24rem","variable":"var(--space-96)","raw":"24rem"},"128":{"value":"32rem","variable":"var(--space-128)","raw":"32rem"},"px":{"value":"1px","variable":"var(--space-px)","raw":"1px"},"rem":{"125":{"value":"0.125rem","variable":"var(--space-rem-125)","raw":"0.125rem"},"375":{"value":"0.375rem","variable":"var(--space-rem-375)","raw":"0.375rem"},"625":{"value":"0.625rem","variable":"var(--space-rem-625)","raw":"0.625rem"},"875":{"value":"0.875rem","variable":"var(--space-rem-875)","raw":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0","variable":"var(--borderWidth-noBorder)","raw":"0"},"sm":{"value":"1px","variable":"var(--borderWidth-sm)","raw":"1px"},"md":{"value":"2px","variable":"var(--borderWidth-md)","raw":"2px"},"lg":{"value":"3px","variable":"var(--borderWidth-lg)","raw":"3px"}},"opacity":{"noOpacity":{"value":"0","variable":"var(--opacity-noOpacity)","raw":"0"},"bright":{"value":"0.1","variable":"var(--opacity-bright)","raw":"0.1"},"light":{"value":"0.15","variable":"var(--opacity-light)","raw":"0.15"},"soft":{"value":"0.3","variable":"var(--opacity-soft)","raw":"0.3"},"medium":{"value":"0.5","variable":"var(--opacity-medium)","raw":"0.5"},"high":{"value":"0.8","variable":"var(--opacity-high)","raw":"0.8"},"total":{"value":"1","variable":"var(--opacity-total)","raw":"1"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji","variable":"var(--font-sans)","raw":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif","variable":"var(--font-serif)","raw":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace","variable":"var(--font-mono)","raw":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"fontWeight":{"thin":{"value":"100","variable":"var(--fontWeight-thin)","raw":"100"},"extralight":{"value":"200","variable":"var(--fontWeight-extralight)","raw":"200"},"light":{"value":"300","variable":"var(--fontWeight-light)","raw":"300"},"normal":{"value":"400","variable":"var(--fontWeight-normal)","raw":"400"},"medium":{"value":"500","variable":"var(--fontWeight-medium)","raw":"500"},"semibold":{"value":"600","variable":"var(--fontWeight-semibold)","raw":"600"},"bold":{"value":"700","variable":"var(--fontWeight-bold)","raw":"700"},"extrabold":{"value":"800","variable":"var(--fontWeight-extrabold)","raw":"800"},"black":{"value":"900","variable":"var(--fontWeight-black)","raw":"900"}},"fontSize":{"xs":{"value":"0.75rem","variable":"var(--fontSize-xs)","raw":"0.75rem"},"sm":{"value":"0.875rem","variable":"var(--fontSize-sm)","raw":"0.875rem"},"base":{"value":"1rem","variable":"var(--fontSize-base)","raw":"1rem"},"lg":{"value":"1.125rem","variable":"var(--fontSize-lg)","raw":"1.125rem"},"xl":{"value":"1.25rem","variable":"var(--fontSize-xl)","raw":"1.25rem"},"2xl":{"value":"1.5rem","variable":"var(--fontSize-2xl)","raw":"1.5rem"},"3xl":{"value":"1.875rem","variable":"var(--fontSize-3xl)","raw":"1.875rem"},"4xl":{"value":"2.25rem","variable":"var(--fontSize-4xl)","raw":"2.25rem"},"5xl":{"value":"3rem","variable":"var(--fontSize-5xl)","raw":"3rem"},"6xl":{"value":"3.75rem","variable":"var(--fontSize-6xl)","raw":"3.75rem"},"7xl":{"value":"4.5rem","variable":"var(--fontSize-7xl)","raw":"4.5rem"},"8xl":{"value":"6rem","variable":"var(--fontSize-8xl)","raw":"6rem"},"9xl":{"value":"8rem","variable":"var(--fontSize-9xl)","raw":"8rem"}},"letterSpacing":{"tighter":{"value":"-0.05em","variable":"var(--letterSpacing-tighter)","raw":"-0.05em"},"tight":{"value":"-0.025em","variable":"var(--letterSpacing-tight)","raw":"-0.025em"},"normal":{"value":"0em","variable":"var(--letterSpacing-normal)","raw":"0em"},"wide":{"value":"0.025em","variable":"var(--letterSpacing-wide)","raw":"0.025em"},"wider":{"value":"0.05em","variable":"var(--letterSpacing-wider)","raw":"0.05em"},"widest":{"value":"0.1em","variable":"var(--letterSpacing-widest)","raw":"0.1em"}},"lead":{"1":{"value":".025rem","variable":"var(--lead-1)","raw":".025rem"},"2":{"value":".5rem","variable":"var(--lead-2)","raw":".5rem"},"3":{"value":".75rem","variable":"var(--lead-3)","raw":".75rem"},"4":{"value":"1rem","variable":"var(--lead-4)","raw":"1rem"},"5":{"value":"1.25rem","variable":"var(--lead-5)","raw":"1.25rem"},"6":{"value":"1.5rem","variable":"var(--lead-6)","raw":"1.5rem"},"7":{"value":"1.75rem","variable":"var(--lead-7)","raw":"1.75rem"},"8":{"value":"2rem","variable":"var(--lead-8)","raw":"2rem"},"9":{"value":"2.25rem","variable":"var(--lead-9)","raw":"2.25rem"},"10":{"value":"2.5rem","variable":"var(--lead-10)","raw":"2.5rem"},"none":{"value":"1","variable":"var(--lead-none)","raw":"1"},"tight":{"value":"1.25","variable":"var(--lead-tight)","raw":"1.25"},"snug":{"value":"1.375","variable":"var(--lead-snug)","raw":"1.375"},"normal":{"value":"1.5","variable":"var(--lead-normal)","raw":"1.5"},"relaxed":{"value":"1.625","variable":"var(--lead-relaxed)","raw":"1.625"},"loose":{"value":"2","variable":"var(--lead-loose)","raw":"2"}},"text":{"xs":{"fontSize":{"value":"var(--fontSize-xs)","variable":"var(--text-xs-fontSize)","raw":"{fontSize.xs}"},"lineHeight":{"value":"var(--lead-4)","variable":"var(--text-xs-lineHeight)","raw":"{lead.4}"}},"sm":{"fontSize":{"value":"var(--fontSize-sm)","variable":"var(--text-sm-fontSize)","raw":"{fontSize.sm}"},"lineHeight":{"value":"var(--lead-5)","variable":"var(--text-sm-lineHeight)","raw":"{lead.5}"}},"base":{"fontSize":{"value":"var(--fontSize-base)","variable":"var(--text-base-fontSize)","raw":"{fontSize.base}"},"lineHeight":{"value":"var(--lead-6)","variable":"var(--text-base-lineHeight)","raw":"{lead.6}"}},"lg":{"fontSize":{"value":"var(--fontSize-lg)","variable":"var(--text-lg-fontSize)","raw":"{fontSize.lg}"},"lineHeight":{"value":"var(--lead-7)","variable":"var(--text-lg-lineHeight)","raw":"{lead.7}"}},"xl":{"fontSize":{"value":"var(--fontSize-xl)","variable":"var(--text-xl-fontSize)","raw":"{fontSize.xl}"},"lineHeight":{"value":"var(--lead-7)","variable":"var(--text-xl-lineHeight)","raw":"{lead.7}"}},"2xl":{"fontSize":{"value":"var(--fontSize-2xl)","variable":"var(--text-2xl-fontSize)","raw":"{fontSize.2xl}"},"lineHeight":{"value":"var(--lead-8)","variable":"var(--text-2xl-lineHeight)","raw":"{lead.8}"}},"3xl":{"fontSize":{"value":"var(--fontSize-3xl)","variable":"var(--text-3xl-fontSize)","raw":"{fontSize.3xl}"},"lineHeight":{"value":"var(--lead-9)","variable":"var(--text-3xl-lineHeight)","raw":"{lead.9}"}},"4xl":{"fontSize":{"value":"var(--fontSize-4xl)","variable":"var(--text-4xl-fontSize)","raw":"{fontSize.4xl}"},"lineHeight":{"value":"var(--lead-10)","variable":"var(--text-4xl-lineHeight)","raw":"{lead.10}"}},"5xl":{"fontSize":{"value":"var(--fontSize-5xl)","variable":"var(--text-5xl-fontSize)","raw":"{fontSize.5xl}"},"lineHeight":{"value":"var(--lead-none)","variable":"var(--text-5xl-lineHeight)","raw":"{lead.none}"}},"6xl":{"fontSize":{"value":"var(--fontSize-6xl)","variable":"var(--text-6xl-fontSize)","raw":"{fontSize.6xl}"},"lineHeight":{"value":"var(--lead-none)","variable":"var(--text-6xl-lineHeight)","raw":"{lead.none}"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"var(--color-gray-900)","dark":"var(--color-gray-50)"},"variable":"var(--elements-text-primary-color-static)","raw":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"var(--color-gray-500)","dark":"var(--color-gray-400)"},"variable":"var(--elements-text-secondary-color-static)","raw":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"var(--color-gray-700)","dark":"var(--color-gray-200)"},"variable":"var(--elements-text-secondary-color-hover)","raw":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"64rem","variable":"var(--elements-container-maxWidth)","raw":"64rem"},"padding":{"mobile":{"value":"var(--space-6)","variable":"var(--elements-container-padding-mobile)","raw":"{space.6}"},"xs":{"value":"var(--space-8)","variable":"var(--elements-container-padding-xs)","raw":"{space.8}"},"sm":{"value":"var(--space-12)","variable":"var(--elements-container-padding-sm)","raw":"{space.12}"},"md":{"value":"var(--space-16)","variable":"var(--elements-container-padding-md)","raw":"{space.16}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)","variable":"var(--elements-backdrop-filter)","raw":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"},"variable":"var(--elements-backdrop-background)","raw":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"var(--color-gray-100)","dark":"var(--color-gray-900)"},"variable":"var(--elements-border-primary-static)","raw":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"var(--color-gray-200)","dark":"var(--color-gray-800)"},"variable":"var(--elements-border-primary-hover)","raw":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"var(--color-gray-200)","dark":"var(--color-gray-800)"},"variable":"var(--elements-border-secondary-static)","raw":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""},"variable":"var(--elements-border-secondary-hover)","raw":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"var(--color-gray-100)","dark":"var(--color-gray-900)"},"variable":"var(--elements-surface-background-base)","raw":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"primary":{"backgroundColor":{"value":{"initial":"var(--color-gray-100)","dark":"var(--color-gray-900)"},"variable":"var(--elements-surface-primary-backgroundColor)","raw":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"secondary":{"backgroundColor":{"value":{"initial":"var(--color-gray-200)","dark":"var(--color-gray-800)"},"variable":"var(--elements-surface-secondary-backgroundColor)","raw":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"var(--color-primary-600)","dark":"var(--color-primary-400)"},"variable":"var(--elements-state-primary-color-primary)","raw":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"var(--color-primary-700)","dark":"var(--color-primary-200)"},"variable":"var(--elements-state-primary-color-secondary)","raw":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-primary-50)","dark":"var(--color-primary-900)"},"variable":"var(--elements-state-primary-backgroundColor-primary)","raw":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"var(--color-primary-100)","dark":"var(--color-primary-800)"},"variable":"var(--elements-state-primary-backgroundColor-secondary)","raw":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-primary-100)","dark":"var(--color-primary-800)"},"variable":"var(--elements-state-primary-borderColor-primary)","raw":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"var(--color-primary-200)","dark":"var(--color-primary-700)"},"variable":"var(--elements-state-primary-borderColor-secondary)","raw":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"var(--color-blue-500)","dark":"var(--color-blue-400)"},"variable":"var(--elements-state-info-color-primary)","raw":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"var(--color-blue-600)","dark":"var(--color-blue-200)"},"variable":"var(--elements-state-info-color-secondary)","raw":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-blue-50)","dark":"var(--color-blue-900)"},"variable":"var(--elements-state-info-backgroundColor-primary)","raw":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"var(--color-blue-100)","dark":"var(--color-blue-800)"},"variable":"var(--elements-state-info-backgroundColor-secondary)","raw":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-blue-100)","dark":"var(--color-blue-800)"},"variable":"var(--elements-state-info-borderColor-primary)","raw":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"var(--color-blue-200)","dark":"var(--color-blue-700)"},"variable":"var(--elements-state-info-borderColor-secondary)","raw":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"var(--color-green-500)","dark":"var(--color-green-400)"},"variable":"var(--elements-state-success-color-primary)","raw":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"var(--color-green-600)","dark":"var(--color-green-200)"},"variable":"var(--elements-state-success-color-secondary)","raw":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-green-50)","dark":"var(--color-green-900)"},"variable":"var(--elements-state-success-backgroundColor-primary)","raw":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"var(--color-green-100)","dark":"var(--color-green-800)"},"variable":"var(--elements-state-success-backgroundColor-secondary)","raw":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-green-100)","dark":"var(--color-green-800)"},"variable":"var(--elements-state-success-borderColor-primary)","raw":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"var(--color-green-200)","dark":"var(--color-green-700)"},"variable":"var(--elements-state-success-borderColor-secondary)","raw":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"var(--color-yellow-600)","dark":"var(--color-yellow-400)"},"variable":"var(--elements-state-warning-color-primary)","raw":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"var(--color-yellow-700)","dark":"var(--color-yellow-200)"},"variable":"var(--elements-state-warning-color-secondary)","raw":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-yellow-50)","dark":"var(--color-yellow-900)"},"variable":"var(--elements-state-warning-backgroundColor-primary)","raw":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"var(--color-yellow-100)","dark":"var(--color-yellow-800)"},"variable":"var(--elements-state-warning-backgroundColor-secondary)","raw":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-yellow-100)","dark":"var(--color-yellow-800)"},"variable":"var(--elements-state-warning-borderColor-primary)","raw":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"var(--color-yellow-200)","dark":"var(--color-yellow-700)"},"variable":"var(--elements-state-warning-borderColor-secondary)","raw":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"var(--color-red-500)","dark":"var(--color-red-300)"},"variable":"var(--elements-state-danger-color-primary)","raw":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"var(--color-red-600)","dark":"var(--color-red-200)"},"variable":"var(--elements-state-danger-color-secondary)","raw":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-red-50)","dark":"var(--color-red-900)"},"variable":"var(--elements-state-danger-backgroundColor-primary)","raw":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"var(--color-red-100)","dark":"var(--color-red-800)"},"variable":"var(--elements-state-danger-backgroundColor-secondary)","raw":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-red-100)","dark":"var(--color-red-800)"},"variable":"var(--elements-state-danger-borderColor-primary)","raw":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"var(--color-red-200)","dark":"var(--color-red-700)"},"variable":"var(--elements-state-danger-borderColor-secondary)","raw":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"body":{"color":{"value":{"initial":"var(--color-black)","dark":"var(--color-white)"},"variable":"var(--typography-body-color)","raw":{"initial":"{color.black}","dark":"{color.white}"}},"backgroundColor":{"value":{"initial":"var(--color-white)","dark":"var(--color-black)"},"variable":"var(--typography-body-backgroundColor)","raw":{"initial":"{color.white}","dark":"{color.black}"}}},"verticalMargin":{"sm":{"value":"16px","variable":"var(--typography-verticalMargin-sm)","raw":"16px"},"base":{"value":"24px","variable":"var(--typography-verticalMargin-base)","raw":"24px"}},"letterSpacing":{"tight":{"value":"-0.025em","variable":"var(--typography-letterSpacing-tight)","raw":"-0.025em"},"wide":{"value":"0.025em","variable":"var(--typography-letterSpacing-wide)","raw":"0.025em"}},"fontSize":{"xs":{"value":"12px","variable":"var(--typography-fontSize-xs)","raw":"12px"},"sm":{"value":"14px","variable":"var(--typography-fontSize-sm)","raw":"14px"},"base":{"value":"16px","variable":"var(--typography-fontSize-base)","raw":"16px"},"lg":{"value":"18px","variable":"var(--typography-fontSize-lg)","raw":"18px"},"xl":{"value":"20px","variable":"var(--typography-fontSize-xl)","raw":"20px"},"2xl":{"value":"24px","variable":"var(--typography-fontSize-2xl)","raw":"24px"},"3xl":{"value":"30px","variable":"var(--typography-fontSize-3xl)","raw":"30px"},"4xl":{"value":"36px","variable":"var(--typography-fontSize-4xl)","raw":"36px"},"5xl":{"value":"48px","variable":"var(--typography-fontSize-5xl)","raw":"48px"},"6xl":{"value":"60px","variable":"var(--typography-fontSize-6xl)","raw":"60px"},"7xl":{"value":"72px","variable":"var(--typography-fontSize-7xl)","raw":"72px"},"8xl":{"value":"96px","variable":"var(--typography-fontSize-8xl)","raw":"96px"},"9xl":{"value":"128px","variable":"var(--typography-fontSize-9xl)","raw":"128px"}},"fontWeight":{"thin":{"value":"100","variable":"var(--typography-fontWeight-thin)","raw":"100"},"extralight":{"value":"200","variable":"var(--typography-fontWeight-extralight)","raw":"200"},"light":{"value":"300","variable":"var(--typography-fontWeight-light)","raw":"300"},"normal":{"value":"400","variable":"var(--typography-fontWeight-normal)","raw":"400"},"medium":{"value":"500","variable":"var(--typography-fontWeight-medium)","raw":"500"},"semibold":{"value":"600","variable":"var(--typography-fontWeight-semibold)","raw":"600"},"bold":{"value":"700","variable":"var(--typography-fontWeight-bold)","raw":"700"},"extrabold":{"value":"800","variable":"var(--typography-fontWeight-extrabold)","raw":"800"},"black":{"value":"900","variable":"var(--typography-fontWeight-black)","raw":"900"}},"lead":{"1":{"value":".025rem","variable":"var(--typography-lead-1)","raw":".025rem"},"2":{"value":".5rem","variable":"var(--typography-lead-2)","raw":".5rem"},"3":{"value":".75rem","variable":"var(--typography-lead-3)","raw":".75rem"},"4":{"value":"1rem","variable":"var(--typography-lead-4)","raw":"1rem"},"5":{"value":"1.25rem","variable":"var(--typography-lead-5)","raw":"1.25rem"},"6":{"value":"1.5rem","variable":"var(--typography-lead-6)","raw":"1.5rem"},"7":{"value":"1.75rem","variable":"var(--typography-lead-7)","raw":"1.75rem"},"8":{"value":"2rem","variable":"var(--typography-lead-8)","raw":"2rem"},"9":{"value":"2.25rem","variable":"var(--typography-lead-9)","raw":"2.25rem"},"10":{"value":"2.5rem","variable":"var(--typography-lead-10)","raw":"2.5rem"},"none":{"value":"1","variable":"var(--typography-lead-none)","raw":"1"},"tight":{"value":"1.25","variable":"var(--typography-lead-tight)","raw":"1.25"},"snug":{"value":"1.375","variable":"var(--typography-lead-snug)","raw":"1.375"},"normal":{"value":"1.5","variable":"var(--typography-lead-normal)","raw":"1.5"},"relaxed":{"value":"1.625","variable":"var(--typography-lead-relaxed)","raw":"1.625"},"loose":{"value":"2","variable":"var(--typography-lead-loose)","raw":"2"}},"font":{"display":{"value":"var(--font-sans)","variable":"var(--typography-font-display)","raw":"{font.sans}"},"body":{"value":"var(--font-sans)","variable":"var(--typography-font-body)","raw":"{font.sans}"},"code":{"value":"var(--font-mono)","variable":"var(--typography-font-code)","raw":"{font.mono}"}},"color":{"primary":{"50":{"value":"var(--color-primary-50)","variable":"var(--typography-color-primary-50)","raw":"{color.primary.50}"},"100":{"value":"var(--color-primary-100)","variable":"var(--typography-color-primary-100)","raw":"{color.primary.100}"},"200":{"value":"var(--color-primary-200)","variable":"var(--typography-color-primary-200)","raw":"{color.primary.200}"},"300":{"value":"var(--color-primary-300)","variable":"var(--typography-color-primary-300)","raw":"{color.primary.300}"},"400":{"value":"var(--color-primary-400)","variable":"var(--typography-color-primary-400)","raw":"{color.primary.400}"},"500":{"value":"var(--color-primary-500)","variable":"var(--typography-color-primary-500)","raw":"{color.primary.500}"},"600":{"value":"var(--color-primary-600)","variable":"var(--typography-color-primary-600)","raw":"{color.primary.600}"},"700":{"value":"var(--color-primary-700)","variable":"var(--typography-color-primary-700)","raw":"{color.primary.700}"},"800":{"value":"var(--color-primary-800)","variable":"var(--typography-color-primary-800)","raw":"{color.primary.800}"},"900":{"value":"var(--color-primary-900)","variable":"var(--typography-color-primary-900)","raw":"{color.primary.900}"}},"secondary":{"50":{"value":"var(--color-secondary-50)","variable":"var(--typography-color-secondary-50)","raw":"{color.secondary.50}"},"100":{"value":"var(--color-secondary-100)","variable":"var(--typography-color-secondary-100)","raw":"{color.secondary.100}"},"200":{"value":"var(--color-secondary-200)","variable":"var(--typography-color-secondary-200)","raw":"{color.secondary.200}"},"300":{"value":"var(--color-secondary-300)","variable":"var(--typography-color-secondary-300)","raw":"{color.secondary.300}"},"400":{"value":"var(--color-secondary-400)","variable":"var(--typography-color-secondary-400)","raw":"{color.secondary.400}"},"500":{"value":"var(--color-secondary-500)","variable":"var(--typography-color-secondary-500)","raw":"{color.secondary.500}"},"600":{"value":"var(--color-secondary-600)","variable":"var(--typography-color-secondary-600)","raw":"{color.secondary.600}"},"700":{"value":"var(--color-secondary-700)","variable":"var(--typography-color-secondary-700)","raw":"{color.secondary.700}"},"800":{"value":"var(--color-secondary-800)","variable":"var(--typography-color-secondary-800)","raw":"{color.secondary.800}"},"900":{"value":"var(--color-secondary-900)","variable":"var(--typography-color-secondary-900)","raw":"{color.secondary.900}"}}}},"prose":{"p":{"fontSize":{"value":"18px","variable":"var(--prose-p-fontSize)","raw":"18px"},"lineHeight":{"value":"var(--typography-lead-normal)","variable":"var(--prose-p-lineHeight)","raw":"{typography.lead.normal}"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-p-margin)","raw":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"var(--typography-verticalMargin-base) 0 0 0","variable":"var(--prose-p-br-margin)","raw":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem","variable":"var(--prose-h1-margin)","raw":"0 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-5xl)","variable":"var(--prose-h1-fontSize)","raw":"{typography.fontSize.5xl}"},"lineHeight":{"value":"var(--typography-lead-tight)","variable":"var(--prose-h1-lineHeight)","raw":"{typography.lead.tight}"},"fontWeight":{"value":"var(--typography-fontWeight-bold)","variable":"var(--prose-h1-fontWeight)","raw":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h1-letterSpacing)","raw":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-3xl)","variable":"var(--prose-h1-iconSize)","raw":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h2-margin)","raw":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-4xl)","variable":"var(--prose-h2-fontSize)","raw":"{typography.fontSize.4xl}"},"lineHeight":{"value":"var(--typography-lead-tight)","variable":"var(--prose-h2-lineHeight)","raw":"{typography.lead.tight}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h2-fontWeight)","raw":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h2-letterSpacing)","raw":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-2xl)","variable":"var(--prose-h2-iconSize)","raw":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h3-margin)","raw":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-3xl)","variable":"var(--prose-h3-fontSize)","raw":"{typography.fontSize.3xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h3-lineHeight)","raw":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h3-fontWeight)","raw":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h3-letterSpacing)","raw":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-xl)","variable":"var(--prose-h3-iconSize)","raw":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h4-margin)","raw":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-2xl)","variable":"var(--prose-h4-fontSize)","raw":"{typography.fontSize.2xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h4-lineHeight)","raw":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h4-fontWeight)","raw":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h4-letterSpacing)","raw":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h4-iconSize)","raw":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h5-margin)","raw":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-xl)","variable":"var(--prose-h5-fontSize)","raw":"{typography.fontSize.xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h5-lineHeight)","raw":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h5-fontWeight)","raw":"{typography.fontWeight.semibold}"},"iconSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h5-iconSize)","raw":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h6-margin)","raw":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h6-fontSize)","raw":"{typography.fontSize.lg}"},"lineHeight":{"value":"var(--typography-lead-normal)","variable":"var(--prose-h6-lineHeight)","raw":"{typography.lead.normal}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h6-fontWeight)","raw":"{typography.fontWeight.semibold}"},"iconSize":{"value":"var(--typography-fontSize-base)","variable":"var(--prose-h6-iconSize)","raw":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-strong-fontWeight)","raw":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-img-margin)","raw":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none","variable":"var(--prose-a-textDecoration)","raw":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"},"variable":"var(--prose-a-color-static)","raw":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"var(--typography-color-primary-500)","dark":"var(--typography-color-primary-400)"},"variable":"var(--prose-a-color-hover)","raw":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px","variable":"var(--prose-a-border-width)","raw":"1px"},"style":{"static":{"value":"dashed","variable":"var(--prose-a-border-style-static)","raw":"dashed"},"hover":{"value":"solid","variable":"var(--prose-a-border-style-hover)","raw":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-border-color-static)","raw":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-border-color-hover)","raw":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px","variable":"var(--prose-a-border-distance)","raw":"2px"}},"fontWeight":{"value":"var(--typography-fontWeight-medium)","variable":"var(--prose-a-fontWeight)","raw":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none","variable":"var(--prose-a-hasCode-borderBottom)","raw":"none"}},"code":{"border":{"width":{"value":"var(--prose-a-border-width)","variable":"var(--prose-a-code-border-width)","raw":"{prose.a.border.width}"},"style":{"value":"var(--prose-a-border-style-static)","variable":"var(--prose-a-code-border-style)","raw":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"var(--typography-color-secondary-400)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-a-code-border-color-static)","raw":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"var(--typography-color-primary-500)","dark":"var(--typography-color-primary-600)"},"variable":"var(--prose-a-code-border-color-hover)","raw":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-code-color-static)","raw":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-code-color-hover)","raw":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"var(--typography-color-primary-50)","dark":"var(--typography-color-primary-900)"},"variable":"var(--prose-a-code-background-hover)","raw":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-blockquote-margin)","raw":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"24px","variable":"var(--prose-blockquote-paddingInlineStart)","raw":"24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'","variable":"var(--prose-blockquote-quotes)","raw":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"var(--typography-color-secondary-500)","dark":"var(--typography-color-secondary-400)"},"variable":"var(--prose-blockquote-color)","raw":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px","variable":"var(--prose-blockquote-border-width)","raw":"4px"},"style":{"value":"solid","variable":"var(--prose-blockquote-border-style)","raw":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-700)"},"variable":"var(--prose-blockquote-border-color)","raw":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc","variable":"var(--prose-ul-listStyleType)","raw":"disc"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-ul-margin)","raw":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"21px","variable":"var(--prose-ul-paddingInlineStart)","raw":"21px"},"li":{"markerColor":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-ul-li-markerColor)","raw":{"initial":"currentColor","dark":"currentColor"}}}},"ol":{"listStyleType":{"value":"decimal","variable":"var(--prose-ol-listStyleType)","raw":"decimal"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-ol-margin)","raw":"{typography.verticalMargin.base} 0"},"paddingInlineStart":{"value":"21px","variable":"var(--prose-ol-paddingInlineStart)","raw":"21px"},"li":{"markerColor":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-ol-li-markerColor)","raw":{"initial":"currentColor","dark":"currentColor"}}}},"li":{"margin":{"value":"var(--typography-verticalMargin-sm) 0","variable":"var(--prose-li-margin)","raw":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside","variable":"var(--prose-li-listStylePosition)","raw":"outside"}},"hr":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-hr-margin)","raw":"{typography.verticalMargin.base} 0"},"style":{"value":"solid","variable":"var(--prose-hr-style)","raw":"solid"},"width":{"value":"1px","variable":"var(--prose-hr-width)","raw":"1px"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-hr-color)","raw":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-table-margin)","raw":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"start","variable":"var(--prose-table-textAlign)","raw":"start"},"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-table-fontSize)","raw":"{typography.fontSize.sm}"},"lineHeight":{"value":"var(--typography-lead-6)","variable":"var(--prose-table-lineHeight)","raw":"{typography.lead.6}"}},"thead":{"border":{"width":{"value":"0px","variable":"var(--prose-thead-border-width)","raw":"0px"},"style":{"value":"solid","variable":"var(--prose-thead-border-style)","raw":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-thead-border-color)","raw":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px","variable":"var(--prose-thead-borderBottom-width)","raw":"1px"},"style":{"value":"solid","variable":"var(--prose-thead-borderBottom-style)","raw":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-thead-borderBottom-color)","raw":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"th":{"color":{"value":{"initial":"var(--typography-color-secondary-600)","dark":"var(--typography-color-secondary-400)"},"variable":"var(--prose-th-color)","raw":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm)","variable":"var(--prose-th-padding)","raw":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-th-fontWeight)","raw":"{typography.fontWeight.semibold}"},"textAlign":{"value":"inherit","variable":"var(--prose-th-textAlign)","raw":"inherit"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px","variable":"var(--prose-tbody-tr-borderBottom-width)","raw":"1px"},"style":{"value":"dashed","variable":"var(--prose-tbody-tr-borderBottom-style)","raw":"dashed"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-tbody-tr-borderBottom-color)","raw":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"td":{"padding":{"value":"var(--typography-verticalMargin-sm)","variable":"var(--prose-tbody-td-padding)","raw":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-tbody-code-inline-fontSize)","raw":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-code-block-fontSize)","raw":"{typography.fontSize.sm}"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-code-block-margin)","raw":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px","variable":"var(--prose-code-block-border-width)","raw":"1px"},"style":{"value":"solid","variable":"var(--prose-code-block-border-style)","raw":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-code-block-border-color)","raw":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"var(--typography-color-secondary-700)","dark":"var(--typography-color-secondary-200)"},"variable":"var(--prose-code-block-color)","raw":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"var(--typography-color-secondary-100)","dark":"var(--typography-color-secondary-900)"},"variable":"var(--prose-code-block-backgroundColor)","raw":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"backdropFilter":{"value":{"initial":"contrast(1)","dark":"contrast(1)"},"variable":"var(--prose-code-block-backdropFilter)","raw":{"initial":"contrast(1)","dark":"contrast(1)"}},"pre":{"padding":{"value":"var(--typography-verticalMargin-sm)","variable":"var(--prose-code-block-pre-padding)","raw":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"var(--radii-xs)","variable":"var(--prose-code-inline-borderRadius)","raw":"{radii.xs}"},"padding":{"value":"0.2rem 0.375rem 0.2rem 0.375rem","variable":"var(--prose-code-inline-padding)","raw":"0.2rem 0.375rem 0.2rem 0.375rem"},"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-code-inline-fontSize)","raw":"{typography.fontSize.sm}"},"fontWeight":{"value":"var(--typography-fontWeight-normal)","variable":"var(--prose-code-inline-fontWeight)","raw":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"var(--typography-color-secondary-700)","dark":"var(--typography-color-secondary-200)"},"variable":"var(--prose-code-inline-color)","raw":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"var(--typography-color-secondary-100)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-code-inline-backgroundColor)","raw":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.800}"}}}}},"alpine":{"body":{"backgroundColor":{"value":{"initial":"var(--color-white)","dark":"var(--color-black)"},"variable":"var(--alpine-body-backgroundColor)","raw":{"initial":"{color.white}","dark":"{color.black}"}},"color":{"value":{"initial":"var(--color-gray-800)","dark":"var(--color-gray-200)"},"variable":"var(--alpine-body-color)","raw":{"initial":"{color.gray.800}","dark":"{color.gray.200}"}}},"backdrop":{"backgroundColor":{"value":{"initial":"#f4f4f5b3","dark":"#18181bb3"},"variable":"var(--alpine-backdrop-backgroundColor)","raw":{"initial":"#f4f4f5b3","dark":"#18181bb3"}}},"readableLine":{"value":"68ch","variable":"var(--alpine-readableLine)","raw":"68ch"}}},"content":{"sources":{},"ignores":[],"locales":[],"highlight":{"theme":{"default":"github-light","dark":"github-dark"},"preload":["json","js","ts","html","css","vue","diff","shell","markdown","yaml","bash","ini","c","cpp"]},"navigation":{"fields":["navTitle","layout"]},"documentDriven":true,"experimental":{"clientDB":false,"cacheContents":true,"stripQueryParameters":false,"advanceQuery":false,"search":""}},"components":[{"name":"ArticlesList","path":"../../components/content/ArticlesList.vue","meta":{"props":[{"name":"path","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/content/ArticlesList.vue","range":[96,149]}],"schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"articles\""}],"slots":[],"events":[]}},{"name":"ArticlesListItem","path":"../../components/content/ArticlesListItem.vue","meta":{"props":[{"name":"article","global":false,"description":"","tags":[],"required":true,"type":"Record","declarations":[{"file":"/home/runner/work/alpine/alpine/components/content/ArticlesListItem.vue","range":[249,418]},{"file":"/home/runner/work/alpine/alpine/components/content/ArticlesListItem.vue","range":[249,418]}],"schema":"Record"},{"name":"featured","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/content/ArticlesListItem.vue","range":[422,475]}],"schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"}],"slots":[],"events":[]}},{"name":"ContactForm","path":"../../components/content/ContactForm.vue","meta":{"props":[{"name":"submitButtonText","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/content/ContactForm.vue","range":[322,391]}],"schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Send message\""},{"name":"fields","global":false,"description":"","tags":[],"required":false,"type":"Field[] | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/content/ContactForm.vue","range":[395,1127]}],"schema":{"kind":"enum","type":"Field[] | undefined","schema":["undefined",{"kind":"array","type":"Field[]","schema":[{"kind":"object","type":"Field","schema":{"type":{"name":"type","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/types/contact.ts","range":[27,41]}],"schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]}},"name":{"name":"name","global":false,"description":"","tags":[],"required":true,"type":"string","declarations":[{"file":"/home/runner/work/alpine/alpine/types/contact.ts","range":[44,57]}],"schema":"string"},"placeholder":{"name":"placeholder","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/types/contact.ts","range":[60,81]}],"schema":"string | undefined"},"label":{"name":"label","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/types/contact.ts","range":[84,99]}],"schema":"string | undefined"},"required":{"name":"required","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/types/contact.ts","range":[102,121]}],"schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]}}}}]}]},"default":"[\n {\n type: \"text\",\n model: \"name\",\n name: \"Name\",\n placeholder: \"Your name\",\n required: true,\n layout: \"default\"\n },\n {\n type: \"email\",\n model: \"email\",\n name: \"Email\",\n placeholder: \"Your email\",\n required: true,\n layout: \"default\"\n },\n {\n type: \"text\",\n model: \"text\",\n name: \"Subject\",\n required: false,\n layout: \"default\"\n },\n {\n type: \"textarea\",\n model: \"message\",\n name: \"Message\",\n placeholder: \"Your message\",\n required: true,\n layout: \"big\"\n }\n]"}],"slots":[],"events":[]}},{"name":"Gallery","path":"../../components/content/Gallery.vue","meta":{"props":[{"name":"images","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/content/Gallery.vue","range":[78,152]}],"schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]},"default":"[]"}],"slots":[],"events":[]}},{"name":"Hero","path":"../../components/content/Hero.vue","meta":{"props":[{"name":"image","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/content/Hero.vue","range":[41,89]}],"schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"null"},{"name":"imageAlt","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/content/Hero.vue","range":[93,152]}],"schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Hero Image\""},{"name":"imagePosition","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/content/Hero.vue","range":[156,215]}],"schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"right\""}],"slots":[],"events":[]}},{"name":"Input","path":"../../components/data-entry/Input.vue","meta":{"props":[{"name":"modelValue","global":false,"description":"","tags":[],"required":true,"type":"string","declarations":[{"file":"/home/runner/work/alpine/alpine/components/data-entry/Input.vue","range":[160,214]},{"file":"/home/runner/work/alpine/alpine/components/data-entry/Input.vue","range":[160,214]}],"schema":"string"},{"name":"field","global":false,"description":"","tags":[],"required":true,"type":"any","declarations":[{"file":"/home/runner/work/alpine/alpine/components/data-entry/Input.vue","range":[218,400]},{"file":"/home/runner/work/alpine/alpine/components/data-entry/Input.vue","range":[218,400]}],"schema":"any"}],"slots":[],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","declarations":[{"file":"/home/runner/work/alpine/alpine/node_modules/.pnpm/@vue+runtime-core@3.4.15/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","range":[4472,4507]}],"schema":["any"]}]}},{"name":"AppFooter","path":"../../components/AppFooter.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeader","path":"../../components/AppHeader.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppLayout","path":"../../components/AppLayout.vue","meta":{"props":[{"name":"padded","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/AppLayout.vue","range":[79,129]}],"schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"true"}],"slots":[{"name":"default","type":"{}","description":"","declarations":[],"schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"AppLoadingBar","path":"../../components/AppLoadingBar.vue","meta":{"props":[{"name":"throttle","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/AppLoadingBar.vue","range":[111,161]}],"schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"200"},{"name":"duration","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/AppLoadingBar.vue","range":[165,216]}],"schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"2000"},{"name":"height","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/AppLoadingBar.vue","range":[220,266]}],"schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"3"}],"slots":[],"events":[]}},{"name":"Button","path":"../../components/Button.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/Button.vue","range":[41,92]}],"schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"submit\""},{"name":"disabled","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/Button.vue","range":[96,149]}],"schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"}],"slots":[{"name":"default","type":"{}","description":"","declarations":[],"schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ColorModeSwitch","path":"../../components/ColorModeSwitch.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"MainNav","path":"../../components/MainNav.vue","meta":{"props":[],"slots":[],"events":[{"name":"linkClick","type":"any[]","signature":"(event: \"linkClick\", ...args: any[]): void","declarations":[{"file":"/home/runner/work/alpine/alpine/node_modules/.pnpm/@vue+runtime-core@3.4.15/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","range":[4472,4507]}],"schema":["any"]}]}},{"name":"SocialIcons","path":"../../components/SocialIcons.vue","meta":{"props":[{"name":"socials","global":false,"description":"","tags":[],"required":false,"type":"Record | undefined","declarations":[{"file":"/home/runner/work/alpine/alpine/components/SocialIcons.vue","range":[55,109]}],"schema":{"kind":"enum","type":"Record | undefined","schema":["undefined","Record"]},"default":"() => { }"}],"slots":[],"events":[]}},{"name":"Alert","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/Alert.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Badge","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/Badge.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ButtonLink","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Callout","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/Callout.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"CodeBlock","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"CodeGroup","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Container","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/Container.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"CopyButton","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Ellipsis","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"List","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/List.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"NuxtImg","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Props","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/Props.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Sandbox","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"SourceLink","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"TabsHeader","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Terminal","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/Terminal.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"VideoPlayer","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconCodeSandBox","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconDocus","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxt","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtContent","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtLabs","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtStudio","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconStackBlitz","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconVueTelescope","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"BlockHero","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Card","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/landing/Card.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"CardGrid","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"VoltaBoard","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ComponentPlayground","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ComponentPlaygroundData","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ComponentPlaygroundProps","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ComponentPlaygroundSlots","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ComponentPlaygroundTokens","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"PreviewLayout","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/meta/PreviewLayout.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"TokensPlayground","path":"../../node_modules/.pnpm/@nuxt-themes+elements@0.9.5_rollup@3.29.3_vue@3.4.15/node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue","meta":{"props":[],"slots":[],"events":[]}}]} \ No newline at end of file diff --git a/_nuxt/Alert.GtxI_vOc.js b/_nuxt/Alert.GtxI_vOc.js new file mode 100644 index 000000000..5b0734d9c --- /dev/null +++ b/_nuxt/Alert.GtxI_vOc.js @@ -0,0 +1 @@ +import"./MDCSlot.3Uw_wiOf.js";import{r as a}from"./slot.-hZqRm-7.js";import{d as r,b as s,c as o,e as n,n as c,k as d}from"./entry.uIHGwm26.js";const l={class:"alert-content"},i=r({__name:"Alert",props:{type:{type:String,default:"info",validator(e){return["info","success","warning","danger","primary"].includes(e)}}},setup(e){return(t,p)=>(s(),o("div",{class:c(["alert",[e.type]])},[n("div",l,[a(t.$slots,"default",{unwrap:"p"},void 0,!0)])],2))}}),f=d(i,[["__scopeId","data-v-2a88a1dd"]]);export{f as default}; diff --git a/_nuxt/Alert.dRu2JuWW.css b/_nuxt/Alert.dRu2JuWW.css new file mode 100644 index 000000000..d24c494f6 --- /dev/null +++ b/_nuxt/Alert.dRu2JuWW.css @@ -0,0 +1 @@ +.alert[data-v-2a88a1dd]{border:1px solid;border-radius:var(--radii-md);font-size:var(--text-sm-fontSize);line-height:var(--text-sm-lineHeight);margin-bottom:var(--space-8);margin-top:var(--space-8);padding:var(--space-3) var(--space-4)}.alert.primary[data-v-2a88a1dd]{background-color:var(--elements-state-primary-backgroundColor-primary)!important;border-color:var(--elements-state-primary-borderColor-primary)!important;color:var(--elements-state-primary-color-primary)!important}.alert.primary[data-v-2a88a1dd] p code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.alert.primary[data-v-2a88a1dd] code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-primary)!important}.alert.primary[data-v-2a88a1dd] a code{border-color:var(--elements-state-primary-borderColor-primary)!important}.alert.primary[data-v-2a88a1dd] a{border-color:currentColor}.alert.primary[data-v-2a88a1dd] a code{background-color:var(--elements-state-primary-backgroundColor-primary)!important}.alert.primary[data-v-2a88a1dd] a:hover{border-color:currentColor!important;color:var(--elements-state-primary-color-secondary)!important}.alert.primary[data-v-2a88a1dd] a:hover code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;border-color:var(--elements-state-primary-borderColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.alert.info[data-v-2a88a1dd]{background-color:var(--elements-state-info-backgroundColor-primary)!important;border-color:var(--elements-state-info-borderColor-primary)!important;color:var(--elements-state-info-color-primary)!important}.alert.info[data-v-2a88a1dd] p code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.alert.info[data-v-2a88a1dd] code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-primary)!important}.alert.info[data-v-2a88a1dd] a code{border-color:var(--elements-state-info-borderColor-primary)!important}.alert.info[data-v-2a88a1dd] a{border-color:currentColor}.alert.info[data-v-2a88a1dd] a code{background-color:var(--elements-state-info-backgroundColor-primary)!important}.alert.info[data-v-2a88a1dd] a:hover{border-color:currentColor!important;color:var(--elements-state-info-color-secondary)!important}.alert.info[data-v-2a88a1dd] a:hover code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;border-color:var(--elements-state-info-borderColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.alert.success[data-v-2a88a1dd]{background-color:var(--elements-state-success-backgroundColor-primary)!important;border-color:var(--elements-state-success-borderColor-primary)!important;color:var(--elements-state-success-color-primary)!important}.alert.success[data-v-2a88a1dd] p code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.alert.success[data-v-2a88a1dd] code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-primary)!important}.alert.success[data-v-2a88a1dd] a code{border-color:var(--elements-state-success-borderColor-primary)!important}.alert.success[data-v-2a88a1dd] a{border-color:currentColor}.alert.success[data-v-2a88a1dd] a code{background-color:var(--elements-state-success-backgroundColor-primary)!important}.alert.success[data-v-2a88a1dd] a:hover{border-color:currentColor!important;color:var(--elements-state-success-color-secondary)!important}.alert.success[data-v-2a88a1dd] a:hover code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;border-color:var(--elements-state-success-borderColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.alert.warning[data-v-2a88a1dd]{background-color:var(--elements-state-warning-backgroundColor-primary)!important;border-color:var(--elements-state-warning-borderColor-primary)!important;color:var(--elements-state-warning-color-primary)!important}.alert.warning[data-v-2a88a1dd] p code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.alert.warning[data-v-2a88a1dd] code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-primary)!important}.alert.warning[data-v-2a88a1dd] a code{border-color:var(--elements-state-warning-borderColor-primary)!important}.alert.warning[data-v-2a88a1dd] a{border-color:currentColor}.alert.warning[data-v-2a88a1dd] a code{background-color:var(--elements-state-warning-backgroundColor-primary)!important}.alert.warning[data-v-2a88a1dd] a:hover{border-color:currentColor!important;color:var(--elements-state-warning-color-secondary)!important}.alert.warning[data-v-2a88a1dd] a:hover code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;border-color:var(--elements-state-warning-borderColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.alert.danger[data-v-2a88a1dd]{background-color:var(--elements-state-danger-backgroundColor-primary)!important;border-color:var(--elements-state-danger-borderColor-primary)!important;color:var(--elements-state-danger-color-primary)!important}.alert.danger[data-v-2a88a1dd] p code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}.alert.danger[data-v-2a88a1dd] code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-primary)!important}.alert.danger[data-v-2a88a1dd] a code{border-color:var(--elements-state-danger-borderColor-primary)!important}.alert.danger[data-v-2a88a1dd] a{border-color:currentColor}.alert.danger[data-v-2a88a1dd] a code{background-color:var(--elements-state-danger-backgroundColor-primary)!important}.alert.danger[data-v-2a88a1dd] a:hover{border-color:currentColor!important;color:var(--elements-state-danger-color-secondary)!important}.alert.danger[data-v-2a88a1dd] a:hover code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;border-color:var(--elements-state-danger-borderColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important} diff --git a/_nuxt/ArticlesList.lBtJjnNZ.css b/_nuxt/ArticlesList.lBtJjnNZ.css new file mode 100644 index 000000000..995776252 --- /dev/null +++ b/_nuxt/ArticlesList.lBtJjnNZ.css @@ -0,0 +1 @@ +@media (min-width:640px){.articles-list[data-v-01e93ac2]{padding-left:var(--space-12);padding-right:var(--space-12)}}@media (min-width:768px){.articles-list[data-v-01e93ac2]{padding-left:0;padding-right:0}}.articles-list .featured[data-v-01e93ac2]{margin-bottom:var(--space-12);margin-top:var(--space-12)}@media (min-width:768px){.articles-list .featured[data-v-01e93ac2]{margin-bottom:var(--space-8);margin-top:var(--space-8)}}.articles-list .layout[data-v-01e93ac2]{display:grid;gap:var(--space-12);grid-template-columns:repeat(1,minmax(0,1fr))}@media (min-width:768px){.articles-list .layout[data-v-01e93ac2]{gap:var(--space-8);grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.articles-list .layout[data-v-01e93ac2]{grid-template-columns:repeat(3,minmax(0,1fr))}}.tour[data-v-01e93ac2]{align-items:center;display:flex;flex-direction:column;justify-content:center;min-height:30vh} diff --git a/_nuxt/ArticlesList.w4ljBGN9.js b/_nuxt/ArticlesList.w4ljBGN9.js new file mode 100644 index 000000000..0597ad4a7 --- /dev/null +++ b/_nuxt/ArticlesList.w4ljBGN9.js @@ -0,0 +1 @@ +import k from"./ArticlesListItem.5fodA8Bq.js";import w from"./ProseA.uZkReT9p.js";import I from"./ProseCodeInline.QqXTIiNZ.js";import{u as v}from"./asyncData.uJQpiaTt.js";import{d as g,Y as A,I as S,M as c,b as a,c as r,e as o,g as i,F as C,Z as B,D as e,w as u,p as L,i as N,q as V,$ as b,X as q,k as z}from"./entry.uIHGwm26.js";import"./date.3uOv5BcS.js";const D=t=>(L("data-v-01e93ac2"),t=t(),N(),t),F={key:0,class:"articles-list"},P={class:"featured"},T={class:"layout"},Y={key:1,class:"tour"},$=D(()=>o("p",null,"Seems like there are no articles yet.",-1)),E=g({__name:"ArticlesList",props:{path:{type:String,default:"articles"}},async setup(t){let s,l;const _=t,{data:m}=([s,l]=A(async()=>v(_.path,async()=>await V(b(_.path)).sort({date:-1}).find(),"$nzn4HIzK3O")),s=await s,l(),s),n=S(()=>m.value||[]);return(H,K)=>{var d;const p=k,h=w,f=I;return(d=c(n))!=null&&d.length?(a(),r("div",F,[o("div",P,[i(p,{article:c(n)[0],featured:!0},null,8,["article"])]),o("div",T,[(a(!0),r(C,null,B(c(n).slice(1),(y,x)=>(a(),q(p,{key:x,article:y},null,8,["article"]))),128))])])):(a(),r("div",Y,[$,o("p",null,[e(" You can start by "),i(h,{href:"https://alpine.nuxt.space/articles/write-articles"},{default:u(()=>[e("creating")]),_:1}),e(" one in the "),i(f,null,{default:u(()=>[e("articles")]),_:1}),e(" folder. ")])]))}}}),J=z(E,[["__scopeId","data-v-01e93ac2"]]);export{J as default}; diff --git a/_nuxt/ArticlesListItem.5fodA8Bq.js b/_nuxt/ArticlesListItem.5fodA8Bq.js new file mode 100644 index 000000000..07c38eaf9 --- /dev/null +++ b/_nuxt/ArticlesListItem.5fodA8Bq.js @@ -0,0 +1 @@ +import{d as x,I as C,a0 as w,b as n,c,F as N,Z as v,f as s,g as l,w as m,e as i,t as r,M as f,n as B,a1 as D,E as I,a2 as p,k as E}from"./entry.uIHGwm26.js";import{f as L}from"./date.3uOv5BcS.js";const V=["data-content-id"],z={key:0,class:"image"},F={key:0},S={class:"content"},$={class:"description"},j=x({__name:"ArticlesListItem",props:{article:{type:Object,required:!0,validator:t=>!!(t!=null&&t._path&&t.title)},featured:{type:Boolean,default:!1}},setup(t){const h=t,_=C(()=>{var a,o;return(a=w())!=null&&a.isEnabled()?(o=h.article)==null?void 0:o._id:void 0});return(a,o)=>{var u;const y=D,d=I;return t.article._path&&t.article.title?(n(),c("article",{key:0,class:B({featured:t.featured}),"data-content-id":f(_)},[t.article.cover?(n(),c("div",z,[(u=t.article)!=null&&u.badges?(n(),c("div",F,[(n(!0),c(N,null,v(t.article.badges,(e,k)=>(n(),c("span",{key:k,style:p({backgroundColor:(e==null?void 0:e.bg)||"rgba(0, 0, 0, 0.3)",color:(e==null?void 0:e.color)||"white"})},r(typeof e=="string"?e:e.content),5))),128))])):s("",!0),l(d,{to:t.article._path},{default:m(()=>[l(y,{src:t.article.cover,alt:t.article.title,width:"16",height:"9"},null,8,["src","alt"])]),_:1},8,["to"])])):s("",!0),i("div",S,[l(d,{to:t.article._path,class:"headline"},{default:m(()=>[i("h1",null,r(t.article.title),1)]),_:1},8,["to"]),i("p",$,r(t.article.description),1),i("time",null,r(("formatDate"in a?a.formatDate:f(L))(t.article.date)),1)])],10,V)):s("",!0)}}}),M=E(j,[["__scopeId","data-v-8cbebf72"]]);export{M as default}; diff --git a/_nuxt/ArticlesListItem.DFkJIClr.css b/_nuxt/ArticlesListItem.DFkJIClr.css new file mode 100644 index 000000000..c7d3c5b3f --- /dev/null +++ b/_nuxt/ArticlesListItem.DFkJIClr.css @@ -0,0 +1 @@ +article[data-v-8cbebf72]{display:flex;flex-direction:column;gap:var(--space-4)}@media (min-width:768px){article.featured[data-v-8cbebf72]{flex-direction:row;gap:var(--space-8)}}article img[data-v-8cbebf72]{aspect-ratio:16/9;border-radius:var(--radii-md);-o-object-fit:cover;object-fit:cover;width:100%}article .image[data-v-8cbebf72]{flex:1}article .image div[data-v-8cbebf72]{display:flex;flex-wrap:true;gap:var(--space-2);margin-left:var(--space-2);margin-top:var(--space-2);position:absolute}article .image div span[data-v-8cbebf72]{border-radius:var(--radii-sm);font-size:var(--text-xs-fontSize);font-weight:700;line-height:var(--text-xs-lineHeight);padding:var(--space-1)}article .content[data-v-8cbebf72]{display:flex;flex:1;flex-direction:column}article .content .headline[data-v-8cbebf72]{display:-webkit-box;font-size:var(--text-2xl-fontSize);font-weight:var(--fontWeight-semibold);line-height:var(--text-2xl-lineHeight);margin-bottom:var(--space-2);overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2}.featured :is(article .content .headline):is(article .content .headline[data-v-8cbebf72]){display:-webkit-box;font-size:var(--text-4xl-fontSize);line-height:var(--text-4xl-lineHeight);overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:3}article .content .description[data-v-8cbebf72]{display:-webkit-box;margin-bottom:var(--space-4);overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2}.featured :is(article .content .description):is(article .content .description[data-v-8cbebf72]){display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:4}article .content time[data-v-8cbebf72]{font-size:var(--text-sm-fontSize);line-height:var(--text-sm-lineHeight)}:root.dark article .content time[data-v-8cbebf72],article .content time[data-v-8cbebf72]{color:var(--color-gray-500)} diff --git a/_nuxt/Badge.EMPLMkxf.css b/_nuxt/Badge.EMPLMkxf.css new file mode 100644 index 000000000..15b3f7457 --- /dev/null +++ b/_nuxt/Badge.EMPLMkxf.css @@ -0,0 +1 @@ +.badge[data-v-23aaaf29]{align-items:center;border:1px solid;border-radius:var(--radii-full);display:inline-flex;font-size:var(--text-base-fontSize);letter-spacing:var(--letterSpacing-tight);line-height:var(--text-base-lineHeight);padding:var(--space-1) var(--space-3)}.badge.primary[data-v-23aaaf29]{background-color:var(--elements-state-primary-backgroundColor-primary)!important;border-color:var(--elements-state-primary-borderColor-primary)!important;color:var(--elements-state-primary-color-primary)!important}.badge.primary[data-v-23aaaf29] p code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.badge.primary[data-v-23aaaf29] code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-primary)!important}.badge.primary[data-v-23aaaf29] a code{border-color:var(--elements-state-primary-borderColor-primary)!important}.badge.primary[data-v-23aaaf29] a{border-color:currentColor}.badge.primary[data-v-23aaaf29] a code{background-color:var(--elements-state-primary-backgroundColor-primary)!important}.badge.primary[data-v-23aaaf29] a:hover{border-color:currentColor!important;color:var(--elements-state-primary-color-secondary)!important}.badge.primary[data-v-23aaaf29] a:hover code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;border-color:var(--elements-state-primary-borderColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.badge.info[data-v-23aaaf29]{background-color:var(--elements-state-info-backgroundColor-primary)!important;border-color:var(--elements-state-info-borderColor-primary)!important;color:var(--elements-state-info-color-primary)!important}.badge.info[data-v-23aaaf29] p code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.badge.info[data-v-23aaaf29] code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-primary)!important}.badge.info[data-v-23aaaf29] a code{border-color:var(--elements-state-info-borderColor-primary)!important}.badge.info[data-v-23aaaf29] a{border-color:currentColor}.badge.info[data-v-23aaaf29] a code{background-color:var(--elements-state-info-backgroundColor-primary)!important}.badge.info[data-v-23aaaf29] a:hover{border-color:currentColor!important;color:var(--elements-state-info-color-secondary)!important}.badge.info[data-v-23aaaf29] a:hover code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;border-color:var(--elements-state-info-borderColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.badge.success[data-v-23aaaf29]{background-color:var(--elements-state-success-backgroundColor-primary)!important;border-color:var(--elements-state-success-borderColor-primary)!important;color:var(--elements-state-success-color-primary)!important}.badge.success[data-v-23aaaf29] p code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.badge.success[data-v-23aaaf29] code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-primary)!important}.badge.success[data-v-23aaaf29] a code{border-color:var(--elements-state-success-borderColor-primary)!important}.badge.success[data-v-23aaaf29] a{border-color:currentColor}.badge.success[data-v-23aaaf29] a code{background-color:var(--elements-state-success-backgroundColor-primary)!important}.badge.success[data-v-23aaaf29] a:hover{border-color:currentColor!important;color:var(--elements-state-success-color-secondary)!important}.badge.success[data-v-23aaaf29] a:hover code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;border-color:var(--elements-state-success-borderColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.badge.warning[data-v-23aaaf29]{background-color:var(--elements-state-warning-backgroundColor-primary)!important;border-color:var(--elements-state-warning-borderColor-primary)!important;color:var(--elements-state-warning-color-primary)!important}.badge.warning[data-v-23aaaf29] p code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.badge.warning[data-v-23aaaf29] code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-primary)!important}.badge.warning[data-v-23aaaf29] a code{border-color:var(--elements-state-warning-borderColor-primary)!important}.badge.warning[data-v-23aaaf29] a{border-color:currentColor}.badge.warning[data-v-23aaaf29] a code{background-color:var(--elements-state-warning-backgroundColor-primary)!important}.badge.warning[data-v-23aaaf29] a:hover{border-color:currentColor!important;color:var(--elements-state-warning-color-secondary)!important}.badge.warning[data-v-23aaaf29] a:hover code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;border-color:var(--elements-state-warning-borderColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.badge.danger[data-v-23aaaf29]{background-color:var(--elements-state-danger-backgroundColor-primary)!important;border-color:var(--elements-state-danger-borderColor-primary)!important;color:var(--elements-state-danger-color-primary)!important}.badge.danger[data-v-23aaaf29] p code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}.badge.danger[data-v-23aaaf29] code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-primary)!important}.badge.danger[data-v-23aaaf29] a code{border-color:var(--elements-state-danger-borderColor-primary)!important}.badge.danger[data-v-23aaaf29] a{border-color:currentColor}.badge.danger[data-v-23aaaf29] a code{background-color:var(--elements-state-danger-backgroundColor-primary)!important}.badge.danger[data-v-23aaaf29] a:hover{border-color:currentColor!important;color:var(--elements-state-danger-color-secondary)!important}.badge.danger[data-v-23aaaf29] a:hover code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;border-color:var(--elements-state-danger-borderColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important} diff --git a/_nuxt/Badge.HXxWjNZ1.js b/_nuxt/Badge.HXxWjNZ1.js new file mode 100644 index 000000000..f2eb5631b --- /dev/null +++ b/_nuxt/Badge.HXxWjNZ1.js @@ -0,0 +1 @@ +import"./MDCSlot.3Uw_wiOf.js";import{r as t}from"./slot.-hZqRm-7.js";import{d as n,b as r,c as o,n as s,k as p}from"./entry.uIHGwm26.js";const c=n({__name:"Badge",props:{type:{type:String,default:"info",validator(e){return["info","success","warning","danger","primary"].includes(e)}}},setup(e){return(a,d)=>(r(),o("span",{class:s([[e.type],"badge"])},[t(a.$slots,"default",{unwrap:"p"},void 0,!0)],2))}}),m=p(c,[["__scopeId","data-v-23aaaf29"]]);export{m as default}; diff --git a/_nuxt/BlockHero.k3n1K4Cy.css b/_nuxt/BlockHero.k3n1K4Cy.css new file mode 100644 index 000000000..ef43ac6cf --- /dev/null +++ b/_nuxt/BlockHero.k3n1K4Cy.css @@ -0,0 +1 @@ +.block-hero[data-v-abeaff98]{padding:var(--space-20) 0}@media (min-width:640px){.block-hero[data-v-abeaff98]{padding:var(--space-24) 0}}@media (min-width:1024px){.block-hero[data-v-abeaff98]{padding:var(--space-32) 0}}.block-hero .layout[data-v-abeaff98]{display:grid;gap:var(--space-16)}@media (min-width:1024px){.block-hero .layout[data-v-abeaff98]{gap:var(--space-8);grid-template-columns:repeat(3,minmax(0,1fr))}.block-hero .content[data-v-abeaff98]{grid-column:span 2/span 2}}.block-hero .content .announce[data-v-abeaff98]{margin-bottom:var(--space-2);text-align:center}@media (min-width:1024px){.block-hero .content .announce[data-v-abeaff98]{text-align:start}}.block-hero .content .title[data-v-abeaff98]{color:var(--elements-text-primary-color-static);font-size:var(--text-4xl-fontSize);font-weight:var(--fontWeight-bold);letter-spacing:var(--letterSpacing-tight);line-height:var(--text-4xl-lineHeight);margin-bottom:var(--space-8);padding-left:var(--space-8);padding-right:var(--space-8);text-align:center}@media (min-width:640px){.block-hero .content .title[data-v-abeaff98]{font-size:var(--text-5xl-fontSize);line-height:var(--text-5xl-lineHeight)}}@media (min-width:1024px){.block-hero .content .title[data-v-abeaff98]{font-size:var(--text-6xl-fontSize);line-height:var(--text-6xl-lineHeight);padding-left:var(--space-0);padding-right:var(--space-0);text-align:start}}.block-hero .content .description[data-v-abeaff98]{color:var(--elements-text-secondary-color-static);font-size:var(--text-lg-fontSize);line-height:var(--text-lg-lineHeight);margin-bottom:var(--space-12);padding-left:var(--space-2);padding-right:var(--space-2);text-align:center}@media (min-width:1024px){.block-hero .content .description[data-v-abeaff98]{text-align:start}}.block-hero .content .extra[data-v-abeaff98]{display:flex;justify-content:center;margin-bottom:var(--space-16)}@media (min-width:1024px){.block-hero .content .extra[data-v-abeaff98]{justify-content:flex-start}}.block-hero .content .actions[data-v-abeaff98]{align-items:center;display:flex;flex-direction:column;gap:var(--space-4);justify-content:center}@media (min-width:640px){.block-hero .content .actions[data-v-abeaff98]{flex-direction:row;gap:var(--space-6)}}@media (min-width:1024px){.block-hero .content .actions[data-v-abeaff98]{justify-content:flex-start}}.block-hero .content .actions .cta[data-v-abeaff98]{margin-bottom:0}.block-hero .content .actions .secondary[data-v-abeaff98]{color:var(--elements-text-secondary-color-static);font-weight:var(--fontWeight-medium)}.block-hero .content .actions .secondary[data-v-abeaff98]:hover{color:var(--elements-text-secondary-color-hover)} diff --git a/_nuxt/BlockHero.veNOJ5nY.js b/_nuxt/BlockHero.veNOJ5nY.js new file mode 100644 index 000000000..272f9180c --- /dev/null +++ b/_nuxt/BlockHero.veNOJ5nY.js @@ -0,0 +1 @@ +import"./MDCSlot.3Uw_wiOf.js";import m from"./ButtonLink.ksLlCBiP.js";import f from"./Terminal.VDcXMABj.js";import y from"./VideoPlayer.tYPt4bfC.js";import{r as n}from"./slot.-hZqRm-7.js";import{d as _,b as o,c as a,e as s,f as r,F as h,X as c,w as k,D as i,t as l,a5 as v,k as $}from"./entry.uIHGwm26.js";import"./index.ocM43EYf.js";const w={class:"block-hero"},B={class:"layout"},S={class:"content"},b={key:0,class:"announce"},g={class:"title"},q={class:"description"},H={key:1,class:"extra"},V={class:"actions"},A=["href"],C={class:"support"},N=_({__name:"BlockHero",props:{cta:{type:Array,required:!1,default:()=>[]},secondary:{type:Array,required:!1,default:()=>[]},video:{type:String,required:!1,default:""},snippet:{type:[Array,String],required:!1,default:""}},setup(e){return(t,T)=>{const d=m,u=f,p=y;return o(),a("section",w,[s("div",B,[s("div",S,[t.$slots.announce?(o(),a("p",b,[n(t.$slots,"announce",{unwrap:"p"},void 0,!0)])):r("",!0),s("h1",g,[n(t.$slots,"title",{unwrap:"p"},()=>[i(" Hero Title ")],!0)]),s("p",q,[n(t.$slots,"description",{unwrap:"p"},()=>[i(" Hero default description. ")],!0)]),t.$slots.extra?(o(),a("div",H,[n(t.$slots,"extra",{unwrap:"p"},void 0,!0)])):r("",!0),s("div",V,[t.$slots.actions?n(t.$slots,"default",{key:0,use:t.$slots.actions,unwrap:"p"},void 0,!0):(o(),a(h,{key:1},[e.cta?(o(),c(d,{key:0,class:"cta",bold:"",size:"medium",href:e.cta[1]},{default:k(()=>[i(l(e.cta[0]),1)]),_:1},8,["href"])):r("",!0),e.secondary?(o(),a("a",{key:1,href:e.secondary[1],class:"secondary"},l(e.secondary[0]),9,A)):r("",!0)],64))])]),s("div",C,[v(t.$slots,"support",{},()=>[e.snippet?(o(),c(u,{key:0,content:e.snippet},null,8,["content"])):e.video?(o(),c(p,{key:1,src:e.video},null,8,["src"])):r("",!0)],!0)])])])}}}),P=$(N,[["__scopeId","data-v-abeaff98"]]);export{P as default}; diff --git a/_nuxt/Button.eKFWhRPD.css b/_nuxt/Button.eKFWhRPD.css new file mode 100644 index 000000000..43d927d33 --- /dev/null +++ b/_nuxt/Button.eKFWhRPD.css @@ -0,0 +1 @@ +button[data-v-3925ac92]{background-color:var(--color-gray-900);border-radius:var(--radii-md);color:var(--color-gray-100);font-size:var(--text-sm-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-sm-lineHeight);padding:var(--space-2) var(--space-4)}@media (min-width:768px){button[data-v-3925ac92]{font-size:var(--text-base-fontSize);line-height:var(--text-base-lineHeight);padding:var(--space-3) var(--space-6)}}:root.dark button[data-v-3925ac92]{background-color:var(--color-gray-100);color:var(--color-gray-900)}button[data-v-3925ac92]:disabled{cursor:not-allowed} diff --git a/_nuxt/Button.g123B8Zx.js b/_nuxt/Button.g123B8Zx.js new file mode 100644 index 000000000..a483c453e --- /dev/null +++ b/_nuxt/Button.g123B8Zx.js @@ -0,0 +1 @@ +import{d as a,b as o,c as s,a5 as n,k as d}from"./entry.uIHGwm26.js";const l=["type","disabled"],c=a({__name:"Button",props:{type:{type:String,default:"submit"},disabled:{type:Boolean,default:!1}},setup(e){return(t,p)=>(o(),s("button",{type:e.type,disabled:e.disabled},[n(t.$slots,"default",{},void 0,!0)],8,l))}}),_=d(c,[["__scopeId","data-v-3925ac92"]]);export{_ as default}; diff --git a/_nuxt/ButtonLink.ksLlCBiP.js b/_nuxt/ButtonLink.ksLlCBiP.js new file mode 100644 index 000000000..15761a425 --- /dev/null +++ b/_nuxt/ButtonLink.ksLlCBiP.js @@ -0,0 +1 @@ +import{d,aq as f,I as a,a4 as m,b as o,X as i,w as _,f as g,n as x,M as S,a6 as b,E as h,k}from"./entry.uIHGwm26.js";import"./MDCSlot.3Uw_wiOf.js";import{r as z}from"./slot.-hZqRm-7.js";const y=d({__name:"ButtonLink",props:{blank:{type:Boolean,required:!1,default:!1},color:f("primary"),href:{type:String,required:!0,default:""},icon:{type:String,default:""},size:{required:!1,type:[String,Object],default:"medium"},transparent:{required:!1,type:[Boolean,Object],default:!1}},setup(e){const s=a(()=>((t=n)=>`{color.${t.color}.600}`)()),r=a(()=>((t=n)=>`{color.${t.color}.500}`)()),n=e,l={size:{small:{padding:"{space.2} {space.4}",fontSize:"{text.sm.fontSize}",lineHeight:"{text.sm.lineHeight}"},medium:{padding:"{space.rem.625} {space.5}",fontSize:"{text.base.fontSize}",lineHeight:"{text.base.lineHeight}"},large:{padding:"{space.3} {space.6}",fontSize:"{text.lg.fontSize}",lineHeight:"{text.lg.lineHeight}"},giant:{padding:"{space.4} {space.8}",fontSize:"{text.lg.fontSize}",lineHeight:"{text.lg.lineHeight}"}},transparent:{true:{backgroundColor:"transparent"}}},{$pinceau:c}=m(n,l,{_YM9_buttonPrimary:s,_A23_buttonSecondary:r});return(t,H)=>{const u=b,p=h;return o(),i(p,{class:x(["button-link",[S(c)]]),to:e.href,target:e.blank?"_blank":void 0},{default:_(()=>[e.icon?(o(),i(u,{key:0,name:e.icon},null,8,["name"])):g("",!0),z(t.$slots,"default",{unwrap:"p ul li"},void 0,!0)]),_:3},8,["to","target","class"])}}}),C=k(y,[["__scopeId","data-v-ade6d4f7"]]);export{C as default}; diff --git a/_nuxt/ButtonLink.orOlXGTt.css b/_nuxt/ButtonLink.orOlXGTt.css new file mode 100644 index 000000000..fc01a1ee2 --- /dev/null +++ b/_nuxt/ButtonLink.orOlXGTt.css @@ -0,0 +1 @@ +.button-link[data-v-ade6d4f7]{--button-primary:var(---ym9-button-primary);--button-secondary:var(---a23-button-secondary);align-items:center;background-color:var(---ym9-button-primary);background-color:var(--button-primary);border:1px solid transparent;border-radius:var(--radii-md);color:var(--color-white);display:inline-flex;flex:none;font-weight:var(--fontWeight-bold);transition:color .1s ease-in-out}.button-link[data-v-ade6d4f7]:hover{background-color:var(--button-secondary)}.button-link[data-v-ade6d4f7]:focus{border:1px solid var(--button-primary)}.button-link .icon[data-v-ade6d4f7]{margin-inline-end:var(--space-1)} diff --git a/_nuxt/Callout.E91Cy_Al.js b/_nuxt/Callout.E91Cy_Al.js new file mode 100644 index 000000000..1b72bc4b0 --- /dev/null +++ b/_nuxt/Callout.E91Cy_Al.js @@ -0,0 +1 @@ +import"./MDCSlot.3Uw_wiOf.js";import{d as p,r as o,b as _,c as f,e as a,g as v,n,M as l,ar as h,as as g,a6 as y,k as V}from"./entry.uIHGwm26.js";import{r}from"./slot.-hZqRm-7.js";const C={class:"summary"},k={class:"content"},w=p({__name:"Callout",props:{type:{type:String,default:"info",validator(s){return["info","success","warning","danger","primary"].includes(s)}},modelValue:{required:!1,default:()=>o(!1)}},emits:["update:modelValue"],setup(s,{emit:c}){const i=s,u=c,e=o(i.modelValue),d=()=>{e.value=!e.value,u("update:modelValue",e.value)};return(t,B)=>{const m=y;return _(),f("div",{class:n(["callout",[s.type]])},[a("span",{class:"preview",onClick:d},[a("span",C,[r(t.$slots,"summary",{},void 0,!0)]),v(m,{name:"heroicons-outline:chevron-right",class:n(["icon",[l(e)&&"rotate"]])},null,8,["class"])]),h(a("div",k,[r(t.$slots,"content",{},void 0,!0)],512),[[g,l(e)]])],2)}}}),N=V(w,[["__scopeId","data-v-0e3785a0"]]);export{N as default}; diff --git a/_nuxt/Callout.b4yc-htk.css b/_nuxt/Callout.b4yc-htk.css new file mode 100644 index 000000000..a002e380a --- /dev/null +++ b/_nuxt/Callout.b4yc-htk.css @@ -0,0 +1 @@ +.callout[data-v-0e3785a0]{border:1px solid;border-radius:var(--radii-md);font-size:var(--text-sm-fontSize);line-height:var(--text-sm-lineHeight);margin-bottom:var(--space-8);margin-top:var(--space-8);padding:var(--space-3) var(--space-4);position:relative}.callout.primary[data-v-0e3785a0]{background-color:var(--elements-state-primary-backgroundColor-primary)!important;border-color:var(--elements-state-primary-borderColor-primary)!important;color:var(--elements-state-primary-color-primary)!important}.callout.primary[data-v-0e3785a0] p code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.callout.primary[data-v-0e3785a0] code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-primary)!important}.callout.primary[data-v-0e3785a0] a code{border-color:var(--elements-state-primary-borderColor-primary)!important}.callout.primary[data-v-0e3785a0] a{border-color:currentColor}.callout.primary[data-v-0e3785a0] a code{background-color:var(--elements-state-primary-backgroundColor-primary)!important}.callout.primary[data-v-0e3785a0] a:hover{border-color:currentColor!important;color:var(--elements-state-primary-color-secondary)!important}.callout.primary[data-v-0e3785a0] a:hover code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;border-color:var(--elements-state-primary-borderColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.callout.info[data-v-0e3785a0]{background-color:var(--elements-state-info-backgroundColor-primary)!important;border-color:var(--elements-state-info-borderColor-primary)!important;color:var(--elements-state-info-color-primary)!important}.callout.info[data-v-0e3785a0] p code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.callout.info[data-v-0e3785a0] code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-primary)!important}.callout.info[data-v-0e3785a0] a code{border-color:var(--elements-state-info-borderColor-primary)!important}.callout.info[data-v-0e3785a0] a{border-color:currentColor}.callout.info[data-v-0e3785a0] a code{background-color:var(--elements-state-info-backgroundColor-primary)!important}.callout.info[data-v-0e3785a0] a:hover{border-color:currentColor!important;color:var(--elements-state-info-color-secondary)!important}.callout.info[data-v-0e3785a0] a:hover code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;border-color:var(--elements-state-info-borderColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.callout.success[data-v-0e3785a0]{background-color:var(--elements-state-success-backgroundColor-primary)!important;border-color:var(--elements-state-success-borderColor-primary)!important;color:var(--elements-state-success-color-primary)!important}.callout.success[data-v-0e3785a0] p code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.callout.success[data-v-0e3785a0] code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-primary)!important}.callout.success[data-v-0e3785a0] a code{border-color:var(--elements-state-success-borderColor-primary)!important}.callout.success[data-v-0e3785a0] a{border-color:currentColor}.callout.success[data-v-0e3785a0] a code{background-color:var(--elements-state-success-backgroundColor-primary)!important}.callout.success[data-v-0e3785a0] a:hover{border-color:currentColor!important;color:var(--elements-state-success-color-secondary)!important}.callout.success[data-v-0e3785a0] a:hover code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;border-color:var(--elements-state-success-borderColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.callout.warning[data-v-0e3785a0]{background-color:var(--elements-state-warning-backgroundColor-primary)!important;border-color:var(--elements-state-warning-borderColor-primary)!important;color:var(--elements-state-warning-color-primary)!important}.callout.warning[data-v-0e3785a0] p code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.callout.warning[data-v-0e3785a0] code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-primary)!important}.callout.warning[data-v-0e3785a0] a code{border-color:var(--elements-state-warning-borderColor-primary)!important}.callout.warning[data-v-0e3785a0] a{border-color:currentColor}.callout.warning[data-v-0e3785a0] a code{background-color:var(--elements-state-warning-backgroundColor-primary)!important}.callout.warning[data-v-0e3785a0] a:hover{border-color:currentColor!important;color:var(--elements-state-warning-color-secondary)!important}.callout.warning[data-v-0e3785a0] a:hover code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;border-color:var(--elements-state-warning-borderColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.callout.danger[data-v-0e3785a0]{background-color:var(--elements-state-danger-backgroundColor-primary)!important;border-color:var(--elements-state-danger-borderColor-primary)!important;color:var(--elements-state-danger-color-primary)!important}.callout.danger[data-v-0e3785a0] p code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}.callout.danger[data-v-0e3785a0] code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-primary)!important}.callout.danger[data-v-0e3785a0] a code{border-color:var(--elements-state-danger-borderColor-primary)!important}.callout.danger[data-v-0e3785a0] a{border-color:currentColor}.callout.danger[data-v-0e3785a0] a code{background-color:var(--elements-state-danger-backgroundColor-primary)!important}.callout.danger[data-v-0e3785a0] a:hover{border-color:currentColor!important;color:var(--elements-state-danger-color-secondary)!important}.callout.danger[data-v-0e3785a0] a:hover code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;border-color:var(--elements-state-danger-borderColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}.callout .preview[data-v-0e3785a0]{align-items:center;cursor:pointer;display:flex;justify-content:space-between}.callout .preview .summary[data-v-0e3785a0] p{margin:0}.callout .preview .summary[data-v-0e3785a0] p+p{margin-top:var(--space-2)}.callout .preview .icon[data-v-0e3785a0]{height:var(--space-5);transition:transform .1s;width:var(--space-5)}.callout .preview .icon.rotate[data-v-0e3785a0]{transform:rotate(90deg)}.callout .content[data-v-0e3785a0]{padding-top:var(--space-3)}.callout .content[data-v-0e3785a0] p{margin:0}.callout .content[data-v-0e3785a0] p+p{margin-top:var(--space-2)} diff --git a/_nuxt/Card.i3uihuxy.js b/_nuxt/Card.i3uihuxy.js new file mode 100644 index 000000000..952000112 --- /dev/null +++ b/_nuxt/Card.i3uihuxy.js @@ -0,0 +1 @@ +import{d as c,b as s,c as d,X as i,f as l,a5 as p,e as t,a6 as _,D as a,k as m}from"./entry.uIHGwm26.js";import"./MDCSlot.3Uw_wiOf.js";import{r as n}from"./slot.-hZqRm-7.js";const u={class:"card"},f={class:"title"},C={class:"description"},h=c({__name:"Card",props:{icon:{type:String,default:""}},setup(o){return(e,k)=>{const r=_;return s(),d("div",u,[o.icon?(s(),i(r,{key:0,name:o.icon},null,8,["name"])):l("",!0),p(e.$slots,"default",{},void 0,!0),t("div",null,[t("h3",f,[n(e.$slots,"title",{unwrap:"p"},()=>[a(" Card title ")],!0)]),t("p",C,[n(e.$slots,"description",{unwrap:"p"},()=>[a(" Card description ")],!0)])])])}}}),N=m(h,[["__scopeId","data-v-ecb5fe60"]]);export{N as default}; diff --git a/_nuxt/Card.k1cr2r__.css b/_nuxt/Card.k1cr2r__.css new file mode 100644 index 000000000..a9ac63fda --- /dev/null +++ b/_nuxt/Card.k1cr2r__.css @@ -0,0 +1 @@ +.card[data-v-ecb5fe60]{-webkit-backdrop-filter:var(--elements-backdrop-filter);backdrop-filter:var(--elements-backdrop-filter);background:var(--elements-backdrop-background);border:1px solid var(--elements-border-primary-static);border-radius:var(--radii-xl);display:block;padding:var(--space-8);position:relative;width:100%}.card .icon[data-v-ecb5fe60]{display:inline-block;height:var(--space-6);width:var(--space-6)}.card .icon[data-v-ecb5fe60],.card .title[data-v-ecb5fe60]{margin-bottom:var(--space-2)}.card .title[data-v-ecb5fe60]{color:var(--elements-text-primary-color-static);font-size:var(--text-lg-fontSize);font-weight:var(--fontWeight-semibold);line-height:var(--text-lg-lineHeight)}.card .description[data-v-ecb5fe60]{color:var(--elements-text-secondary-color-static);font-size:var(--text-sm-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-sm-lineHeight)} diff --git a/_nuxt/CardGrid.F9TrR3nz.js b/_nuxt/CardGrid.F9TrR3nz.js new file mode 100644 index 000000000..c88417a1b --- /dev/null +++ b/_nuxt/CardGrid.F9TrR3nz.js @@ -0,0 +1 @@ +import"./MDCSlot.3Uw_wiOf.js";import{r as e}from"./slot.-hZqRm-7.js";import{d as r,b as a,c as d,e as s,a5 as i,D as l,t as n,k as c}from"./entry.uIHGwm26.js";const p={class:"card-grid"},_={class:"title"},u={class:"layout"},m=r({__name:"CardGrid",props:{title:{type:String,default:"Features"}},setup(o){return(t,f)=>(a(),d("section",p,[e(t.$slots,"root",{},void 0,!0),s("h2",_,[e(t.$slots,"title",{unwrap:"p"},()=>[l(n(o.title),1)],!0)]),s("div",u,[i(t.$slots,"default",{},void 0,!0)])]))}}),S=c(m,[["__scopeId","data-v-b6bb837b"]]);export{S as default}; diff --git a/_nuxt/CardGrid.O6Alz0uV.css b/_nuxt/CardGrid.O6Alz0uV.css new file mode 100644 index 000000000..4ce26e73d --- /dev/null +++ b/_nuxt/CardGrid.O6Alz0uV.css @@ -0,0 +1 @@ +.card-grid[data-v-b6bb837b]{padding-bottom:var(--space-20);position:relative}@media (min-width:640px){.card-grid[data-v-b6bb837b]{padding-bottom:var(--space-24)}}@media (min-width:1024px){.card-grid[data-v-b6bb837b]{padding-bottom:var(--space-32)}}.card-grid .title[data-v-b6bb837b]{color:var(--elements-text-primary-color-static);font-size:var(--text-3xl-fontSize);font-weight:var(--fontWeight-bold);letter-spacing:var(--letterSpacing-tight);line-height:var(--text-3xl-lineHeight);margin-bottom:var(--space-8)}@media (min-width:640px){.card-grid .title[data-v-b6bb837b]{font-size:var(--text-4xl-fontSize);line-height:var(--text-4xl-lineHeight)}}.card-grid .layout[data-v-b6bb837b]{display:grid;gap:var(--space-4);text-align:start}@media (min-width:640px){.card-grid .layout[data-v-b6bb837b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.card-grid .layout[data-v-b6bb837b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:1536px){.card-grid .layout[data-v-b6bb837b]{gap:var(--space-8)}} diff --git a/_nuxt/CodeBlock.y2QqWgp5.js b/_nuxt/CodeBlock.y2QqWgp5.js new file mode 100644 index 000000000..907f822e8 --- /dev/null +++ b/_nuxt/CodeBlock.y2QqWgp5.js @@ -0,0 +1 @@ +import{d as o,b as t,c as l,a5 as s,n as r,k as c}from"./entry.uIHGwm26.js";const d=o({__name:"CodeBlock",props:{label:{type:String,required:!0},active:{type:Boolean,default:!1},preview:{type:Boolean,default:!1}},setup(e){return(a,n)=>(t(),l("div",{class:r(["code-block",{active:e.active,"rounded-lg p-4":e.preview}])},[s(a.$slots,"default",{},void 0,!0)],2))}}),p=c(d,[["__scopeId","data-v-3275a40d"]]);export{p as default}; diff --git a/_nuxt/CodeBlock.zB8Jw6V9.css b/_nuxt/CodeBlock.zB8Jw6V9.css new file mode 100644 index 000000000..0d52db1e1 --- /dev/null +++ b/_nuxt/CodeBlock.zB8Jw6V9.css @@ -0,0 +1 @@ +.code-block[data-v-3275a40d]{display:none}.code-block.active[data-v-3275a40d]{display:block} diff --git a/_nuxt/CodeGroup.0d6j5SRS.js b/_nuxt/CodeGroup.0d6j5SRS.js new file mode 100644 index 000000000..760e44c4f --- /dev/null +++ b/_nuxt/CodeGroup.0d6j5SRS.js @@ -0,0 +1 @@ +import b from"./TabsHeader.9cm5rUp8.js";import{d as u,N as t,k as f}from"./entry.uIHGwm26.js";const d=(n,i)=>n.type&&n.type.tag&&n.type.tag===i,o=u({data(){return{activeTabIndex:0,counter:0}},render(){var r,s;const n=((s=(r=this.$slots)==null?void 0:r.default)==null?void 0:s.call(r))||[],i=n.map((e,p)=>{var a,c,v;return{label:((a=e==null?void 0:e.props)==null?void 0:a.filename)||((c=e==null?void 0:e.props)==null?void 0:c.label)||`${p}`,active:((v=e==null?void 0:e.props)==null?void 0:v.active)||!1,component:e}});return t("div",{class:{"code-group":!0,"first-tab":this.activeTabIndex===0}},[t(b,{ref:"tabs-header",activeTabIndex:this.activeTabIndex,tabs:i,"onUpdate:activeTabIndex":e=>this.activeTabIndex=e}),t("div",{class:"code-group-content",text:this.activeTabIndex},n.map((e,p)=>{var a,c;return t("div",{style:{display:p===this.activeTabIndex?"block":"none"},class:{"":!d(e,"code")&&!d(e,"pre")}},[d(e,"code")||d(e,"pre")?e:t("div",{class:{"preview-canvas":!0}},[((c=(a=e.children)==null?void 0:a.default)==null?void 0:c.call(a))||e.children])])}))])}}),h=f(o,[["__scopeId","data-v-ea8dbfc9"]]);export{h as default}; diff --git a/_nuxt/CodeGroup.kDvzdcIq.css b/_nuxt/CodeGroup.kDvzdcIq.css new file mode 100644 index 000000000..93f6a7686 --- /dev/null +++ b/_nuxt/CodeGroup.kDvzdcIq.css @@ -0,0 +1 @@ +.code-group[data-v-ea8dbfc9]{border:1px solid var(--elements-border-secondary-static);border-radius:var(--radii-md);overflow:hidden}.code-group[data-v-ea8dbfc9] .prose-code{border:none;border-radius:0;margin:0}.code-group[data-v-ea8dbfc9] .filename{display:none}.code-group .preview-canvas[data-v-ea8dbfc9]{padding:var(--space-4)}.code-group .preview-canvas[data-v-ea8dbfc9]:has(.sandbox){padding:0}.code-group .preview-canvas[data-v-ea8dbfc9]:has(.sandbox) .sandbox{border:0;border-radius:0} diff --git a/_nuxt/ComponentPlayground.3LfJEpxm.js b/_nuxt/ComponentPlayground.3LfJEpxm.js new file mode 100644 index 000000000..341e30553 --- /dev/null +++ b/_nuxt/ComponentPlayground.3LfJEpxm.js @@ -0,0 +1 @@ +import{M as m,I as p,d as c,ah as i,r as u,N as e,k as l}from"./entry.uIHGwm26.js";import{u as d}from"./asyncData.uJQpiaTt.js";import f from"./Ellipsis.zer7EKhg.js";import y from"./ComponentPlaygroundData.RrSZJEaQ.js";import"./TabsHeader.9cm5rUp8.js";import"./ComponentPlaygroundProps.7V5osBTn.js";import"./ProseH4.gpl85eLQ.js";import"./ProseCodeInline.QqXTIiNZ.js";import"./Badge.HXxWjNZ1.js";import"./MDCSlot.3Uw_wiOf.js";import"./slot.-hZqRm-7.js";import"./ProseP.cLR3X3GK.js";import"./index.ocM43EYf.js";import"./ComponentPlaygroundSlots.vue.Vsa6kh9o.js";import"./ComponentPlaygroundTokens.vue.f6xMzuka.js";async function g(o){const t=m(o);{const{data:n}=await d(`nuxt-component-meta${t?`-${t}`:""}`,()=>$fetch(`/api/component-meta${t?`/${t}`:""}`));return p(()=>n.value)}}const h=c({props:{component:{type:String,required:!0},props:{type:Object,required:!1,default:()=>({})}},async setup(o){const t=p(()=>i(o.component)),n=u({...o.props}),r=await g(o.component);return{as:t,formProps:n,componentData:r}},render(o){const t=Object.entries(this.$slots).reduce((n,[r,a])=>{if(r.startsWith("component-")){const s=r.replace("component-","");n[s]=a}return n},{});return e("div",{class:"component-playground"},[e("div",{class:"component-playground-wrapper"},[e(f,{class:"component-playground-ellipsis",blur:"5vw",height:"100%",width:"100%"}),e(o.as,{...o.formProps,class:"component-playground-component"},{...t})]),e(y,{modelValue:o.formProps,componentData:o.componentData,"onUpdate:modelValue":n=>o.formProps=n})])}}),V=l(h,[["__scopeId","data-v-4f560182"]]);export{V as default}; diff --git a/_nuxt/ComponentPlayground.PBFPrZyz.css b/_nuxt/ComponentPlayground.PBFPrZyz.css new file mode 100644 index 000000000..e6165a231 --- /dev/null +++ b/_nuxt/ComponentPlayground.PBFPrZyz.css @@ -0,0 +1 @@ +.component-playground[data-v-4f560182]{border:1px solid var(--color-gray-200);border-radius:var(--radii-lg);overflow:hidden}:root.dark .component-playground[data-v-4f560182]{border:1px solid var(--color-gray-800)}.component-playground .component-playground-wrapper[data-v-4f560182]{background:linear-gradient(330deg,var(--color-gray-200) 0,var(--color-gray-100) 100%);overflow:hidden;padding:var(--space-8);position:relative}:root.dark .component-playground .component-playground-wrapper[data-v-4f560182]{background:linear-gradient(330deg,var(--color-gray-900) 0,var(--color-gray-800) 100%)}.component-playground .component-playground-wrapper .component-playground-ellipsis[data-v-4f560182]{z-index:1}.component-playground .component-playground-wrapper .component-playground-component[data-v-4f560182]{z-index:50} diff --git a/_nuxt/ComponentPlaygroundData.76AdijLo.css b/_nuxt/ComponentPlaygroundData.76AdijLo.css new file mode 100644 index 000000000..020dd8f94 --- /dev/null +++ b/_nuxt/ComponentPlaygroundData.76AdijLo.css @@ -0,0 +1 @@ +.component-playground-data .component-playground-data-section[data-v-890a0ddc]{padding:var(--space-4)}:root.dark .component-playground-data .component-playground-data-section[data-v-890a0ddc]{background-color:var(--color-gray-900)} diff --git a/_nuxt/ComponentPlaygroundData.RrSZJEaQ.js b/_nuxt/ComponentPlaygroundData.RrSZJEaQ.js new file mode 100644 index 000000000..4a6d6dfc4 --- /dev/null +++ b/_nuxt/ComponentPlaygroundData.RrSZJEaQ.js @@ -0,0 +1 @@ +import y from"./TabsHeader.9cm5rUp8.js";import k from"./ComponentPlaygroundProps.7V5osBTn.js";import{_ as x}from"./ComponentPlaygroundSlots.vue.Vsa6kh9o.js";import{_ as V}from"./ComponentPlaygroundTokens.vue.f6xMzuka.js";import{a as g}from"./index.ocM43EYf.js";import{d as v,r as D,b as a,c as C,g as P,M as e,X as m,au as T,f as s,k as B}from"./entry.uIHGwm26.js";import"./ProseH4.gpl85eLQ.js";import"./ProseCodeInline.QqXTIiNZ.js";import"./Badge.HXxWjNZ1.js";import"./MDCSlot.3Uw_wiOf.js";import"./slot.-hZqRm-7.js";import"./ProseP.cLR3X3GK.js";const I={class:"component-playground-data"},j=v({__name:"ComponentPlaygroundData",props:{modelValue:{type:Object,required:!1,default:()=>({})},componentData:{type:Object,required:!1,default:()=>({})}},emits:["update:modelValue"],setup(t,{emit:p}){const n=g(t,"modelValue",p),o=D(0),r=[{label:"Props"},{label:"Slots"},{label:"Design Tokens"}],d=c=>o.value=c;return(c,l)=>{const u=y,i=k,_=x,f=V;return a(),C("div",I,[P(u,{"active-tab-index":e(o),tabs:r,"onUpdate:activeTabIndex":d},null,8,["active-tab-index"]),e(o)===0?(a(),m(i,{key:0,modelValue:e(n),"onUpdate:modelValue":l[0]||(l[0]=b=>T(n)?n.value=b:null),"component-data":t.componentData},null,8,["modelValue","component-data"])):s("",!0),e(o)===1?(a(),m(_,{key:1,"component-data":t.componentData},null,8,["component-data"])):s("",!0),e(o)===2?(a(),m(f,{key:2,"component-data":t.componentData},null,8,["component-data"])):s("",!0)])}}}),A=B(j,[["__scopeId","data-v-890a0ddc"]]);export{A as default}; diff --git a/_nuxt/ComponentPlaygroundProps.7V5osBTn.js b/_nuxt/ComponentPlaygroundProps.7V5osBTn.js new file mode 100644 index 000000000..51adfed9c --- /dev/null +++ b/_nuxt/ComponentPlaygroundProps.7V5osBTn.js @@ -0,0 +1 @@ +import P from"./ProseH4.gpl85eLQ.js";import B from"./ProseCodeInline.QqXTIiNZ.js";import D from"./Badge.HXxWjNZ1.js";import q from"./ProseP.cLR3X3GK.js";import{a as N}from"./index.ocM43EYf.js";import{d as b,I,b as n,c as r,F as j,Z as w,M as d,e as _,g as i,w as s,D as c,t as u,X as l,f as p,k as F}from"./entry.uIHGwm26.js";import"./MDCSlot.3Uw_wiOf.js";import"./slot.-hZqRm-7.js";const M={class:"component-playground-data-section"},O=["id"],E=["value","onChange"],H=b({__name:"ComponentPlaygroundProps",props:{modelValue:{type:Object,required:!0},componentData:{type:Object,required:!0}},emits:["update:modelValue"],setup(f,{emit:g}){const a=f,m=N(a,"modelValue",g),x=(t,o)=>{m.value={...m.value,[o]:t.target.value}},v=I(()=>{var t,o;return(o=(t=a==null?void 0:a.componentData)==null?void 0:t.meta)==null?void 0:o.props});return(t,o)=>{const y=P,h=B,C=D,V=q;return n(),r("div",M,[(n(!0),r(j,null,w(d(v),e=>(n(),r("div",{key:e.name},[_("div",{id:e.name,class:"prop-title"},[i(y,{id:e.name},{default:s(()=>[c(u(e.name),1)]),_:2},1032,["id"]),_("span",null,[i(h,null,{default:s(()=>[c(u(e.type),1)]),_:2},1024),e.required?p("",!0):(n(),l(C,{key:0},{default:s(()=>[c(" Required ")]),_:1}))])],8,O),e.description?(n(),l(V,{key:0},{default:s(()=>[c(u(e.description),1)]),_:2},1024)):p("",!0),_("input",{value:d(m)[e.name],onChange:k=>x(k,e.name)},null,40,E)]))),128))])}}}),G=F(H,[["__scopeId","data-v-e4625f9c"]]);export{G as default}; diff --git a/_nuxt/ComponentPlaygroundProps.XERzf4St.css b/_nuxt/ComponentPlaygroundProps.XERzf4St.css new file mode 100644 index 000000000..0c75fb8fa --- /dev/null +++ b/_nuxt/ComponentPlaygroundProps.XERzf4St.css @@ -0,0 +1 @@ +.prop-title[data-v-e4625f9c]{align-items:flex-start;display:flex;flex-direction:column;justify-content:flex-start;width:100%}.prop-title[data-v-e4625f9c],.prop-title h4[data-v-e4625f9c]{margin-bottom:var(--space-4);margin-top:var(--space-4)}.prop-title h4[data-v-e4625f9c]{font-size:var(--fontSize-2xl);font-weight:var(--fontWeight-black);line-height:1}@mq .md{.prop-title h4[data-v-e4625f9c]{margin-bottom:var(--space-0);margin-top:var(--space-0)}}.prop-title span[data-v-e4625f9c]{align-items:center;display:flex;gap:var(--space-4)}@mq .md{.prop-title[data-v-e4625f9c]{flex-direction:row;justify-content:space-between}}input[data-v-e4625f9c]{border:1px solid var(--color-gray-200);border-radius:var(--radii-sm);padding:var(--space-1) var(--space-2)}:root.dark input[data-v-e4625f9c]{border:1px solid var(--color-gray-800)} diff --git a/_nuxt/ComponentPlaygroundSlots.DK5SwSE6.js b/_nuxt/ComponentPlaygroundSlots.DK5SwSE6.js new file mode 100644 index 000000000..d93c36d16 --- /dev/null +++ b/_nuxt/ComponentPlaygroundSlots.DK5SwSE6.js @@ -0,0 +1 @@ +import{_ as m}from"./ComponentPlaygroundSlots.vue.Vsa6kh9o.js";import"./entry.uIHGwm26.js";export{m as default}; diff --git a/_nuxt/ComponentPlaygroundSlots.vue.Vsa6kh9o.js b/_nuxt/ComponentPlaygroundSlots.vue.Vsa6kh9o.js new file mode 100644 index 000000000..ecd4ba7c6 --- /dev/null +++ b/_nuxt/ComponentPlaygroundSlots.vue.Vsa6kh9o.js @@ -0,0 +1 @@ +import{d as t,b as n,c as o,e as a,t as s}from"./entry.uIHGwm26.js";const r={class:"component-playground-data-section"},i=t({__name:"ComponentPlaygroundSlots",props:{componentData:{type:Object,required:!0}},setup(e){return(c,p)=>(n(),o("div",r,[a("pre",null,s(JSON.stringify(e.componentData,null,2)),1)]))}});export{i as _}; diff --git a/_nuxt/ComponentPlaygroundTokens.JGKSc7jH.js b/_nuxt/ComponentPlaygroundTokens.JGKSc7jH.js new file mode 100644 index 000000000..c176664c3 --- /dev/null +++ b/_nuxt/ComponentPlaygroundTokens.JGKSc7jH.js @@ -0,0 +1 @@ +import{_ as m}from"./ComponentPlaygroundTokens.vue.f6xMzuka.js";import"./entry.uIHGwm26.js";export{m as default}; diff --git a/_nuxt/ComponentPlaygroundTokens.vue.f6xMzuka.js b/_nuxt/ComponentPlaygroundTokens.vue.f6xMzuka.js new file mode 100644 index 000000000..445127b53 --- /dev/null +++ b/_nuxt/ComponentPlaygroundTokens.vue.f6xMzuka.js @@ -0,0 +1 @@ +import{d as t,b as o,c as n,t as a}from"./entry.uIHGwm26.js";const c={class:"component-playground-data-section"},m=t({__name:"ComponentPlaygroundTokens",props:{componentData:{type:Object,required:!0}},setup(e){return(s,r)=>(o(),n("div",c,a(e.componentData),1))}});export{m as _}; diff --git a/_nuxt/ContactForm.-eNkvpkm.css b/_nuxt/ContactForm.-eNkvpkm.css new file mode 100644 index 000000000..e87c7ff56 --- /dev/null +++ b/_nuxt/ContactForm.-eNkvpkm.css @@ -0,0 +1 @@ +.contact-form .inputs[data-v-1ac26221]{display:grid;gap:var(--space-8);grid-auto-flow:row;grid-template-columns:repeat(1,minmax(0,1fr));margin-bottom:var(--space-8);max-width:var(--size-md)} diff --git a/_nuxt/ContactForm.tEhGLfwL.js b/_nuxt/ContactForm.tEhGLfwL.js new file mode 100644 index 000000000..271753369 --- /dev/null +++ b/_nuxt/ContactForm.tEhGLfwL.js @@ -0,0 +1 @@ +import h from"./Input.O4Qi4YDL.js";import y from"./Button.g123B8Zx.js";import{d as b,x,l as S,r as v,a3 as w,b as l,c as u,e as d,F as B,Z as F,M as s,g as R,w as T,D as V,t as k,X as C,k as E}from"./entry.uIHGwm26.js";const j=["action"],M={class:"inputs"},N=b({__name:"ContactForm",props:{submitButtonText:{type:String,default:"Send message"},fields:{type:Array,default:()=>[{type:"text",model:"name",name:"Name",placeholder:"Your name",required:!0,layout:"default"},{type:"email",model:"email",name:"Email",placeholder:"Your email",required:!0,layout:"default"},{type:"text",model:"text",name:"Subject",required:!1,layout:"default"},{type:"textarea",model:"message",name:"Message",placeholder:"Your message",required:!0,layout:"big"}]}},setup(m){const i=x().alpine,{FORMSPREE_URL:n}=S().public;n||console.warn("No FORMSPREE_URL provided");const t=v(),p=w(m.fields.map(e=>({...e,data:""}))),f=async e=>{e.preventDefault();const c=new FormData(e.target);t.value="Sending...",fetch(e.target.action,{method:e.target.method,body:c,headers:{Accept:"application/json"}}).then(r=>{r.ok?(t.value=i.form.successMessage,e.target.reset()):r.json().then(a=>{Object.hasOwn(a,"errors")?(t.value=a.errors[0].message,console.error(a.errors.map(o=>o.message).join(", ")),setTimeout(()=>{t.value="Send message"},2e3)):console.error("There was a problem submitting your form")})}).catch(()=>{console.error("There was a problem submitting your form")})};return(e,c)=>{const r=h,a=y;return l(),u("form",{class:"contact-form",method:"POST",action:s(n),onSubmit:f},[d("div",M,[(l(!0),u(B,null,F(s(p),(o,_)=>(l(),C(r,{key:_,modelValue:o.data,"onUpdate:modelValue":g=>o.data=g,field:o},null,8,["modelValue","onUpdate:modelValue","field"]))),128))]),d("div",null,[R(a,{type:"submit",disabled:!s(n)},{default:T(()=>[V(k(s(t)?s(t):m.submitButtonText),1)]),_:1},8,["disabled"])])],40,j)}}}),A=E(N,[["__scopeId","data-v-1ac26221"]]);export{A as default}; diff --git a/_nuxt/ContentDoc.qrlkab9E.js b/_nuxt/ContentDoc.qrlkab9E.js new file mode 100644 index 000000000..db0b47b74 --- /dev/null +++ b/_nuxt/ContentDoc.qrlkab9E.js @@ -0,0 +1 @@ +import{d as g,l as C,ag as v,$ as D,s as w,N as o,W as d}from"./entry.uIHGwm26.js";import _ from"./ContentRenderer.Nxv-BsjZ.js";import S from"./ContentQuery.7Sw12qte.js";import"./ContentRendererMarkdown.vue.ZvRXHQ1T.js";import"./asyncData.uJQpiaTt.js";const $=g({name:"ContentDoc",props:{tag:{type:String,required:!1,default:"div"},excerpt:{type:Boolean,default:!1},path:{type:String,required:!1,default:void 0},query:{type:Object,required:!1,default:void 0},head:{type:Boolean,required:!1,default:void 0}},render(f){const{contentHead:c}=C().public.content,e=v(),{tag:m,excerpt:a,path:s,query:i,head:r}=f,u=r===void 0?c:r,l={...i||{},path:s||(i==null?void 0:i.path)||D(w().path),find:"one"},h=(t,n)=>o("pre",null,JSON.stringify({message:"You should use slots with ",slot:t,data:n},null,2));return o(S,l,{default:e!=null&&e.default?({data:t,refresh:n,isPartial:y})=>{var p;return u&&d(t),(p=e.default)==null?void 0:p.call(e,{doc:t,refresh:n,isPartial:y,excerpt:a,...this.$attrs})}:({data:t})=>(u&&d(t),o(_,{value:t,excerpt:a,tag:m,...this.$attrs},{empty:n=>e!=null&&e.empty?e.empty(n):h("default",t)})),empty:t=>{var n;return((n=e==null?void 0:e.empty)==null?void 0:n.call(e,t))||o("p",null,"Document is empty, overwrite this content with #empty slot in .")},"not-found":t=>{var n;return((n=e==null?void 0:e["not-found"])==null?void 0:n.call(e,t))||o("p",null,"Document not found, overwrite this content with #not-found slot in .")}})}}),j=$;export{j as default}; diff --git a/_nuxt/ContentList.UnpkXccW.js b/_nuxt/ContentList.UnpkXccW.js new file mode 100644 index 000000000..493fc6f30 --- /dev/null +++ b/_nuxt/ContentList.UnpkXccW.js @@ -0,0 +1 @@ +import n from"./ContentQuery.7Sw12qte.js";import{d as c,ag as l,N as f}from"./entry.uIHGwm26.js";import"./asyncData.uJQpiaTt.js";const r=(u,t)=>f("pre",null,JSON.stringify({message:"You should use slots with ",slot:u,data:t},null,2)),h=c({name:"ContentList",props:{path:{type:String,required:!1,default:void 0},query:{type:Object,required:!1,default:void 0}},render(u){const t=l(),{path:p,query:a}=u,d={...a||{},path:p||(a==null?void 0:a.path)||"/"};return f(n,d,{default:t!=null&&t.default?({data:e,refresh:o,isPartial:m})=>t.default({list:e,refresh:o,isPartial:m,...this.$attrs}):e=>r("default",e.data),empty:e=>t!=null&&t.empty?t.empty(e):r("default",e==null?void 0:e.data),"not-found":e=>{var o;return t!=null&&t["not-found"]?(o=t==null?void 0:t["not-found"])==null?void 0:o.call(t,e):r("not-found",e==null?void 0:e.data)}})}}),s=h;export{s as default}; diff --git a/_nuxt/ContentNavigation.wyUnHXUa.js b/_nuxt/ContentNavigation.wyUnHXUa.js new file mode 100644 index 000000000..ede2b863d --- /dev/null +++ b/_nuxt/ContentNavigation.wyUnHXUa.js @@ -0,0 +1 @@ +import{u as d}from"./asyncData.uJQpiaTt.js";import{d as l,aw as f,I as v,m as p,V as m,ay as g,ax as h,ag as y,N as r,E as _}from"./entry.uIHGwm26.js";const C=l({name:"ContentNavigation",props:{query:{type:Object,required:!1,default:void 0}},async setup(u){const{query:t}=f(u),n=v(()=>{var a;return typeof((a=t.value)==null?void 0:a.params)=="function"?t.value.params():t.value});if(!n.value&&p("dd-navigation").value){const{navigation:a}=m();return{navigation:a}}const{data:o}=await d(`content-navigation-${h(n.value)}`,()=>g(n.value));return{navigation:o}},render(u){const t=y(),{navigation:n}=u,o=e=>r(_,{to:e._path},()=>e.title),a=(e,i)=>r("ul",i?{"data-level":i}:null,e.map(s=>s.children?r("li",null,[o(s),a(s.children,i+1)]):r("li",null,o(s)))),c=e=>a(e,0);return t!=null&&t.default?t.default({navigation:n,...this.$attrs}):c(n)}}),x=C;export{x as default}; diff --git a/_nuxt/ContentQuery.7Sw12qte.js b/_nuxt/ContentQuery.7Sw12qte.js new file mode 100644 index 000000000..475d9cf88 --- /dev/null +++ b/_nuxt/ContentQuery.7Sw12qte.js @@ -0,0 +1 @@ +import{u as g}from"./asyncData.uJQpiaTt.js";import{d as C,aw as S,I as b,l as N,ac as _,q as m,ax as k,ag as A,N as O}from"./entry.uIHGwm26.js";const Q=C({name:"ContentQuery",props:{path:{type:String,required:!1,default:void 0},only:{type:Array,required:!1,default:void 0},without:{type:Array,required:!1,default:void 0},where:{type:Object,required:!1,default:void 0},sort:{type:Object,required:!1,default:void 0},limit:{type:Number,required:!1,default:void 0},skip:{type:Number,required:!1,default:void 0},locale:{type:String,required:!1,default:void 0},find:{type:String,required:!1,default:void 0}},async setup(a){const{path:t,only:r,without:o,where:u,sort:l,limit:d,skip:f,locale:s,find:h}=S(a),y=b(()=>{var e;return(e=t.value)==null?void 0:e.includes("/_")}),p=!N().public.content.experimental.advanceQuery;_(()=>a,()=>n(),{deep:!0});const i=e=>p?e!=null&&e.surround?e.surround:e!=null&&e._id||Array.isArray(e)?e:e==null?void 0:e.result:e.result,{data:v,refresh:n}=await g(`content-query-${k(a)}`,()=>{let e;return t.value?e=m(t.value):e=m(),r.value&&(e=e.only(r.value)),o.value&&(e=e.without(o.value)),u.value&&(e=e.where(u.value)),l.value&&(e=e.sort(l.value)),d.value&&(e=e.limit(d.value)),f.value&&(e=e.skip(f.value)),s.value&&(e=e.where({_locale:s.value})),h.value==="one"?e.findOne().then(i):h.value==="surround"?t.value?p?e.findSurround(t.value):e.withSurround(t.value).findOne().then(i):(console.warn("[Content] Surround queries requires `path` prop to be set."),console.warn("[Content] Query without `path` will return regular `find()` results."),e.find().then(i)):e.find().then(i)});return{isPartial:y,data:v,refresh:n}},render(a){var c;const t=A(),{data:r,refresh:o,isPartial:u,path:l,only:d,without:f,where:s,sort:h,limit:y,skip:p,locale:i,find:v}=a,n={path:l,only:d,without:f,where:s,sort:h,limit:y,skip:p,locale:i,find:v};if(n.find==="one"){if(!r&&(t!=null&&t["not-found"]))return t["not-found"]({props:n,...this.$attrs});if(t!=null&&t.empty&&(r==null?void 0:r._type)==="markdown"&&!((c=r==null?void 0:r.body)!=null&&c.children.length))return t.empty({props:n,...this.$attrs})}else if((!r||!r.length)&&t!=null&&t["not-found"])return t["not-found"]({props:n,...this.$attrs});return t!=null&&t.default?t.default({data:r,refresh:o,isPartial:u,props:n,...this.$attrs}):((w,q)=>O("pre",null,JSON.stringify({message:"You should use slots with !",slot:w,data:q},null,2)))("default",{data:r,props:n,isPartial:u})}}),R=Q;export{R as default}; diff --git a/_nuxt/ContentRenderer.Nxv-BsjZ.js b/_nuxt/ContentRenderer.Nxv-BsjZ.js new file mode 100644 index 000000000..823ed5dbb --- /dev/null +++ b/_nuxt/ContentRenderer.Nxv-BsjZ.js @@ -0,0 +1 @@ +import{_ as l}from"./ContentRendererMarkdown.vue.ZvRXHQ1T.js";import{d as o,ac as s,ag as d,N as f}from"./entry.uIHGwm26.js";const y=o({name:"ContentRenderer",props:{value:{type:Object,required:!1,default:()=>({})},excerpt:{type:Boolean,default:!1},tag:{type:String,default:"div"}},setup(t){s(()=>t.excerpt,n=>{var e,r,u;n&&!((e=t.value)!=null&&e.excerpt)&&(console.warn(`No excerpt found for document content/${(r=t==null?void 0:t.value)==null?void 0:r._path}.${(u=t==null?void 0:t.value)==null?void 0:u._extension}!`),console.warn("Make sure to use in your content if you want to use excerpt feature."))},{immediate:!0})},render(t){var i,c;const n=d(),{value:e,excerpt:r,tag:u}=t,a=r?e==null?void 0:e.excerpt:e==null?void 0:e.body;return!((i=a==null?void 0:a.children)!=null&&i.length)&&(n!=null&&n.empty)?n.empty({value:e,excerpt:r,tag:u,...this.$attrs}):n!=null&&n.default?n.default({value:e,excerpt:r,tag:u,...this.$attrs}):(a==null?void 0:a.type)==="root"&&((c=a==null?void 0:a.children)!=null&&c.length)?f(l,{value:e,excerpt:r,tag:u,...this.$attrs}):f("pre",null,JSON.stringify({message:"You should use slots with ",value:e,excerpt:r,tag:u},null,2))}});export{y as default}; diff --git a/_nuxt/ContentRendererMarkdown.ht7j1CGW.js b/_nuxt/ContentRendererMarkdown.ht7j1CGW.js new file mode 100644 index 000000000..0d54fde67 --- /dev/null +++ b/_nuxt/ContentRendererMarkdown.ht7j1CGW.js @@ -0,0 +1 @@ +import{_ as m}from"./ContentRendererMarkdown.vue.ZvRXHQ1T.js";import"./entry.uIHGwm26.js";export{m as default}; diff --git a/_nuxt/ContentRendererMarkdown.vue.ZvRXHQ1T.js b/_nuxt/ContentRendererMarkdown.vue.ZvRXHQ1T.js new file mode 100644 index 000000000..de03a5c03 --- /dev/null +++ b/_nuxt/ContentRendererMarkdown.vue.ZvRXHQ1T.js @@ -0,0 +1 @@ +import{d as z,l as J,B as G,I as x,N as E,ah as Q,ai as I,aj as w,ak as nn,s as ln,al as en,a0 as on,b as tn,X as rn,M as an}from"./entry.uIHGwm26.js";class S{constructor(l,o,t){this.property=l,this.normal=o,t&&(this.space=t)}}S.prototype.property={};S.prototype.normal={};S.prototype.space=null;function j(n,l){const o={},t={};let r=-1;for(;++r4&&o.slice(0,4)==="data"&&dn.test(l)){if(l.charAt(4)==="-"){const a=l.slice(5).replace(U,fn);t="data"+a.charAt(0).toUpperCase()+a.slice(1)}else{const a=l.slice(4);if(!U.test(a)){let i=a.replace(gn,mn);i.charAt(0)!=="-"&&(i="-"+i),l="data"+i}}r=R}return new r(t,l)}function mn(n){return"-"+n.toLowerCase()}function fn(n){return n.charAt(1).toUpperCase()}const yn=j([H,F,q,W,cn],"html");j([H,F,q,W,pn],"svg");const T=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","link","main","map","mark","math","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rb","rp","rt","rtc","ruby","s","samp","script","section","select","slot","small","source","span","strong","style","sub","summary","sup","svg","table","tbody","td","template","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr"],M="default",K=/^@|^v-on:/,X=/^:|^v-bind:/,Y=/^v-model/,vn=["select","textarea","input"],bn=Object.fromEntries(["p","a","blockquote","code","pre","code","em","h1","h2","h3","h4","h5","h6","hr","img","ul","ol","li","strong","table","thead","tbody","td","th","tr","script"].map(n=>[n,`prose-${n}`])),kn=z({name:"MDCRenderer",props:{body:{type:Object,required:!0},data:{type:Object,default:()=>({})},tag:{type:[String,Boolean],default:void 0},prose:{type:Boolean,default:void 0},components:{type:Object,default:()=>({})}},async setup(n){var r,a;const{mdc:l}=J().public,o={...l.components.prose&&n.prose!==!1?bn:{},...l.components.map,...G(((a=(r=n.data)==null?void 0:r.mdc)==null?void 0:a.components)||{}),...n.components},t=x(()=>{var s;const i=(((s=n.body)==null?void 0:s.children)||[]).map(c=>c.tag||c.type).filter(c=>!T.includes(c));return Array.from(new Set(i)).sort().join(".")});return await Tn(n.body,{tags:o}),{tags:o,contentKey:t}},render(n){var h,y,d;const{tags:l,tag:o,body:t,data:r,contentKey:a}=n;if(!t)return null;const i={...r,tags:l},s=o!==!1?A(o||((h=i.component)==null?void 0:h.name)||i.component||"div"):void 0,c=$(t,E,i,i);return s?E(s,{...(y=i.component)==null?void 0:y.props,...this.$attrs,key:a},c):(d=c.default)==null?void 0:d.call(c)}});function Cn(n,l,o,t={}){if(n.type==="text")return l(w,n.value);const r=n.tag,a=Z(n,o.tags);if(n.tag==="binding")return Sn(n,l,o,t);const i=A(a);typeof i=="object"&&(i.tag=r);const s=xn(n,o);return l(i,s,$(n,l,o,{...t,...s}))}function Sn(n,l,o,t={}){var h,y;const r={...t,$route:()=>ln(),$document:o,$doc:o},a=/\.|\[(\d+)\]/,s=((h=n.props)==null?void 0:h.value.trim().split(a).filter(Boolean)).reduce((d,b)=>b in d?typeof d[b]=="function"?d[b]():d[b]:{},r),c=(y=n.props)==null?void 0:y.defaultValue;return l(w,s??c??"")}function $(n,l,o,t){const a=(n.children||[]).reduce((s,c)=>{if(!Mn(c))return s[M].push(c),s;const h=Ln(c);return s[h]=s[h]||[],c.type==="element"&&s[h].push(...c.children||[]),s},{[M]:[]});return Object.entries(a).reduce((s,[c,h])=>(h.length&&(s[c]=()=>{const y=h.map(d=>Cn(d,l,o,t));return Rn(y)}),s),{})}function xn(n,l){const{tag:o="",props:t={}}=n;return Object.keys(t).reduce(function(r,a){if(a==="__ignoreMap")return r;const i=t[a];if(Y.test(a)&&!vn.includes(o))return wn(a,i,r,l);if(a==="v-bind")return Pn(a,i,r,l);if(K.test(a))return On(a,i,r,l);if(X.test(a))return Dn(a,i,r,l);const{attribute:s}=hn(yn,a);return Array.isArray(i)&&i.every(c=>typeof c=="string")?(r[s]=i.join(" "),r):(r[s]=i,r)},{})}function wn(n,l,o,t){const r=d=>+d,a=d=>d.trim(),i=d=>d,s=n.replace(Y,"").split(".").filter(d=>d).reduce((d,b)=>(d[b]=!0,d),{}),c="value",h=s.lazy?"change":"input",y=s.number?r:s.trim?a:i;return o[c]=P(l,t),o.on=o.on||{},o.on[h]=d=>t[l]=y(d),o}function Pn(n,l,o,t){const r=P(l,t);return o=Object.assign(o,r),o}function On(n,l,o,t){return n=n.replace(K,""),o.on=o.on||{},o.on[n]=()=>P(l,t),o}function Dn(n,l,o,t){return n=n.replace(X,""),o[n]=P(l,t),o}const A=n=>{if(!T.includes(n)&&!(n!=null&&n.render)){const l=Q(I(n),!1);if(typeof l=="object")return l}return n};function P(n,l){const o=n.split(".").reduce((t,r)=>typeof t=="object"?t[r]:void 0,l);return typeof o>"u"?en(n):o}function Ln(n){let l="";for(const o of Object.keys(n.props||{}))if(!(!o.startsWith("#")&&!o.startsWith("v-slot:"))){l=o.split(/[:#]/,2)[1];break}return l||M}function Mn(n){return n.tag==="template"}function Rn(n){const l=[];for(const o of n){const t=l[l.length-1];o.type===w&&(t==null?void 0:t.type)===w?t.children=t.children+o.children:l.push(o)}return l}async function Tn(n,l){if(!n)return;const o=Array.from(new Set(t(n,l)));await Promise.all(o.map(async r=>{if(r!=null&&r.render||r!=null&&r.ssrRender||r!=null&&r.__ssrInlineRender)return;const a=A(r);a!=null&&a.__asyncLoader&&!a.__asyncResolved&&await a.__asyncLoader()}));function t(r,a){const i=r.tag;if(r.type==="text"||i==="binding")return[];const s=Z(r,a.tags),c=[];r.type!=="root"&&!T.includes(s)&&c.push(s);for(const h of r.children||[])c.push(...t(h,a));return c}}function Z(n,l){var t;const o=n.tag;return!o||typeof((t=n.props)==null?void 0:t.__ignoreMap)<"u"?o:l[o]||l[I(o)]||l[nn(n.tag)]||o}const En=z({__name:"ContentRendererMarkdown",props:{value:{type:Object,required:!0},excerpt:{type:Boolean,default:!1},tag:{type:String,default:"div"},components:{type:Object,default:()=>({})},data:{type:Object,default:()=>({})}},setup(n){const l=n,o=on().isEnabled(),t=x(()=>{let i=l.value.body||l.value;return l.excerpt&&l.value.excerpt&&(i=l.value.excerpt),i}),r=x(()=>{const{body:i,excerpt:s,...c}=l.value;return{...c,...l.data}}),a=x(()=>({...l.components,...r.value._components||{}}));return(i,s)=>{const c=kn;return tn(),rn(c,{body:t.value,data:r.value,tag:n.tag,components:a.value,"data-content-id":an(o)?n.value._id:void 0},null,8,["body","data","tag","components","data-content-id"])}}});export{En as _}; diff --git a/_nuxt/ContentSlot.frkPNmKi.js b/_nuxt/ContentSlot.frkPNmKi.js new file mode 100644 index 000000000..06ac117ed --- /dev/null +++ b/_nuxt/ContentSlot.frkPNmKi.js @@ -0,0 +1 @@ +import{_ as n}from"./MDCSlot.3Uw_wiOf.js";import{d as o,N as t}from"./entry.uIHGwm26.js";const p=o({props:{use:{type:Function,default:void 0},unwrap:{type:[Boolean,String],default:!1}},render(e){return t(n,e)}});export{p as default}; diff --git a/_nuxt/CopyButton.hri7U-us.js b/_nuxt/CopyButton.hri7U-us.js new file mode 100644 index 000000000..ce2ee4c63 --- /dev/null +++ b/_nuxt/CopyButton.hri7U-us.js @@ -0,0 +1 @@ +import{d as l,r as i,b as e,c as u,M as d,X as n,a6 as m}from"./entry.uIHGwm26.js";import{u as f}from"./index.ocM43EYf.js";const k=l({__name:"CopyButton",props:{content:{type:String,default:""}},setup(c){const a=c,{copy:s}=f(),o=i("init"),p=r=>{s(a.content).then(()=>{o.value="copied",setTimeout(()=>{o.value="init"},1e3)}).catch(()=>{console.warn("Couldn't copy to clipboard!")})};return(r,y)=>{const t=m;return e(),u("button",{class:"copy rounded-lg bg-gray-800 px-2 py-2 font-mono text-xs font-semibold leading-none text-gray-400 focus:outline-none dark:bg-black",onClick:p},[d(o)==="copied"?(e(),n(t,{key:0,name:"fa-check",class:"h-4 w-4"})):(e(),n(t,{key:1,name:"fa-copy",class:"h-4 w-4"}))])}}});export{k as default}; diff --git a/_nuxt/DocumentDrivenEmpty.yLQDgpAl.js b/_nuxt/DocumentDrivenEmpty.yLQDgpAl.js new file mode 100644 index 000000000..7aa0eb9ae --- /dev/null +++ b/_nuxt/DocumentDrivenEmpty.yLQDgpAl.js @@ -0,0 +1 @@ +import{d as n,N as e}from"./entry.uIHGwm26.js";const r=n({name:"DocumentDrivenEmpty",props:{value:{type:Object,required:!0}},render({value:t}){return e("div",void 0,[e("p","Document is empty"),e("p",`Add content to it by opening ${t._source}/${t._file} file.`)])}});export{r as default}; diff --git a/_nuxt/DocumentDrivenNotFound.eFsPKjvl.js b/_nuxt/DocumentDrivenNotFound.eFsPKjvl.js new file mode 100644 index 000000000..24e2a4e9f --- /dev/null +++ b/_nuxt/DocumentDrivenNotFound.eFsPKjvl.js @@ -0,0 +1 @@ +import{k as n,b as _,c as p,g as o,w as d,D as r,a6 as u,E as i,p as m,i as f,e as t}from"./entry.uIHGwm26.js";const h={},a=e=>(m("data-v-8da1f86a"),e=e(),f(),e),l=a(()=>t("p",{class:"message"}," This page could not be found ",-1)),x=a(()=>t("p",{class:"status"}," 404 ",-1));function g(e,k){const s=u,c=i;return _(),p("section",null,[l,x,o(c,{to:"/"},{default:d(()=>[r(" Back to homepage "),o(s,{name:"ph:arrow-right"})]),_:1})])}const w=n(h,[["render",g],["__scopeId","data-v-8da1f86a"]]);export{w as default}; diff --git a/_nuxt/DocumentDrivenNotFound.sIhqOboZ.css b/_nuxt/DocumentDrivenNotFound.sIhqOboZ.css new file mode 100644 index 000000000..b0c01777d --- /dev/null +++ b/_nuxt/DocumentDrivenNotFound.sIhqOboZ.css @@ -0,0 +1 @@ +section[data-v-8da1f86a]{align-items:center;display:flex;flex-direction:column;justify-content:center;min-height:50vh}section .message[data-v-8da1f86a]{font-size:var(--text-3xl-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-3xl-lineHeight)}section .status[data-v-8da1f86a]{font-size:var(--text-6xl-fontSize);line-height:var(--text-6xl-lineHeight);margin-bottom:var(--space-12);margin-top:var(--space-12)}section a[data-v-8da1f86a]{align-items:center;display:flex;position:relative}section a .icon[data-v-8da1f86a]{height:var(--space-5);position:absolute;right:calc(0px - var(--space-1));transform:translate(100%);width:var(--space-5)} diff --git a/_nuxt/Ellipsis.AlDwIO90.css b/_nuxt/Ellipsis.AlDwIO90.css new file mode 100644 index 000000000..598280f16 --- /dev/null +++ b/_nuxt/Ellipsis.AlDwIO90.css @@ -0,0 +1 @@ +.ellipsis[data-v-ab37fcf9]{filter:var(---jfd-filter);height:var(---t33-height);inset-inline-end:var(---if-b-inset-inline-end);inset-inline-start:var(---eih-inset-inline-start);max-width:var(---wj8-max-width);pointer-events:none;position:absolute;top:var(---c-cn-top);width:-webkit-fill-available;z-index:var(---ss-e-z-index)}.ellipsis .ellipsis-item[data-v-ab37fcf9]{background:var(---y-uj-background);height:100%;width:100%} diff --git a/_nuxt/Ellipsis.zer7EKhg.js b/_nuxt/Ellipsis.zer7EKhg.js new file mode 100644 index 000000000..213ea43a1 --- /dev/null +++ b/_nuxt/Ellipsis.zer7EKhg.js @@ -0,0 +1 @@ +import{d as m,I as a,a4 as S,b as I,c as b,n as y,M as p,p as x,i as $,e as v,k as E}from"./entry.uIHGwm26.js";const k=n=>(x("data-v-ab37fcf9"),n=n(),$(),n),w=k(()=>v("div",{class:"ellipsis-item"},null,-1)),z=[w],B=m({__name:"Ellipsis",props:{width:{type:String,default:"10rem"},height:{type:String,default:"10rem"},zIndex:{type:String,default:"10"},top:{type:String,default:"0"},left:{type:String,default:"auto"},right:{type:String,default:"auto"},blur:{type:String,default:"50px"},colors:{type:Array,default:()=>["rgba(0, 71, 225, 0.22)","rgba(26, 214, 255, 0.22)","rgba(0, 220, 130, 0.22)"]}},setup(n){const l=a(()=>((t=e)=>t.top)()),o=a(()=>((t=e)=>t.left)()),d=a(()=>((t=e)=>t.right)()),_=a(()=>((t=e)=>t.zIndex)()),r=a(()=>((t=e)=>t.width)()),u=a(()=>((t=e)=>t.height)()),f=a(()=>((t=e)=>`blur(${t.blur})`)()),g=a(()=>((t=e)=>{var i,s,c;return`linear-gradient(97.62deg, ${(i=t==null?void 0:t.colors)==null?void 0:i[0]} 2.27%, ${(s=t==null?void 0:t.colors)==null?void 0:s[1]} 50.88%, ${(c=t==null?void 0:t.colors)==null?void 0:c[2]} 98.48%)`})()),e=n,{$pinceau:h}=S(e,void 0,{_cCN_top:l,_eih_insetInlineStart:o,_IfB_insetInlineEnd:d,_SsE_zIndex:_,_wj8_maxWidth:r,_t33_height:u,_Jfd_filter:f,_yUj_background:g});return(t,i)=>(I(),b("div",{class:y(["ellipsis",[p(h)]])},z,2))}}),j=E(B,[["__scopeId","data-v-ab37fcf9"]]);export{j as default}; diff --git a/_nuxt/Gallery.7RmfIhLJ.js b/_nuxt/Gallery.7RmfIhLJ.js new file mode 100644 index 000000000..84f5f3ef7 --- /dev/null +++ b/_nuxt/Gallery.7RmfIhLJ.js @@ -0,0 +1 @@ +import{d as _,I as m,a4 as u,b as a,c as n,e as d,F as p,Z as g,n as f,M as h,X as y,a1 as k,k as x}from"./entry.uIHGwm26.js";const B={class:"layout"},v=_({__name:"Gallery",props:{images:{type:Array,default:()=>[]}},setup(s){const c=m(()=>((e=t)=>e.images.length<2?e.images.length:2)()),t=s,{$pinceau:o}=u(t,void 0,{_6Li_cols:c});return(e,I)=>{const r=k;return a(),n("section",{class:f(["gallery",[h(o)]])},[d("div",B,[(a(!0),n(p,null,g(s.images,(l,i)=>(a(),y(r,{key:i,src:l,width:16,height:9},null,8,["src"]))),128))])],2)}}}),C=x(v,[["__scopeId","data-v-e572c204"]]);export{C as default}; diff --git a/_nuxt/Gallery.UfSLtplu.css b/_nuxt/Gallery.UfSLtplu.css new file mode 100644 index 000000000..d4f537a94 --- /dev/null +++ b/_nuxt/Gallery.UfSLtplu.css @@ -0,0 +1 @@ +.gallery .layout[data-v-e572c204]{display:grid;gap:var(--space-8);margin-bottom:var(--space-16);margin-top:var(--space-16);--cols:1;grid-template-columns:repeat(1,minmax(0,1fr));grid-template-columns:repeat(var(--cols),minmax(0,1fr))}@media (min-width:768px){.gallery .layout[data-v-e572c204]{--cols:var(---6-li-cols)}}.gallery .layout img[data-v-e572c204]{aspect-ratio:16/9;border-radius:var(--radii-md);-o-object-fit:cover;object-fit:cover;width:100%} diff --git a/_nuxt/Hero.1FX06ln7.js b/_nuxt/Hero.1FX06ln7.js new file mode 100644 index 000000000..b3ebca647 --- /dev/null +++ b/_nuxt/Hero.1FX06ln7.js @@ -0,0 +1 @@ +import"./MDCSlot.3Uw_wiOf.js";import{d as n,b as a,c as r,e as t,X as l,n as d,f as m,a1 as p,D as o,k as u}from"./entry.uIHGwm26.js";import{r as i}from"./slot.-hZqRm-7.js";const _={class:"hero"},g={class:"layout"},f={class:"content"},h={class:"title"},k={class:"description"},v=n({__name:"Hero",props:{image:{type:String,default:null},imageAlt:{type:String,default:"Hero Image"},imagePosition:{type:String,default:"right"}},setup(e){return(s,y)=>{const c=p;return a(),r("section",_,[t("div",g,[t("div",f,[t("div",h,[i(s.$slots,"title",{unwrap:"p"},()=>[o(" Hero title ")],!0)]),t("div",k,[i(s.$slots,"description",{unwrap:"p"},()=>[o(" Hero description ")],!0)])]),e.image?(a(),l(c,{key:0,class:d(e.imagePosition),src:e.image,alt:e.imageAlt,width:16,height:9},null,8,["class","src","alt"])):m("",!0)])])}}}),S=u(v,[["__scopeId","data-v-ce2c89e1"]]);export{S as default}; diff --git a/_nuxt/Hero.OGyS2H6Y.css b/_nuxt/Hero.OGyS2H6Y.css new file mode 100644 index 000000000..b476530b4 --- /dev/null +++ b/_nuxt/Hero.OGyS2H6Y.css @@ -0,0 +1 @@ +.hero .layout[data-v-ce2c89e1]{display:grid;gap:var(--space-8);grid-template-columns:repeat(1,minmax(0,1fr))}@media (min-width:1024px){.hero .layout[data-v-ce2c89e1]{grid-template-columns:repeat(2,minmax(0,1fr))}}.hero .layout .title[data-v-ce2c89e1]{font-size:var(--text-4xl-fontSize);font-weight:var(--fontWeight-bold);line-height:var(--text-4xl-lineHeight)}.hero .layout .description[data-v-ce2c89e1]{font-size:var(--text-xl-fontSize);line-height:var(--text-xl-lineHeight);margin-top:var(--space-3)}.hero .layout img[data-v-ce2c89e1]{aspect-ratio:16/9;border-radius:var(--radii-md);-o-object-fit:cover;object-fit:cover;width:100%}.hero .layout img.left[data-v-ce2c89e1]{order:-1} diff --git a/_nuxt/IconCSS.Qy8jnwOg.js b/_nuxt/IconCSS.Qy8jnwOg.js new file mode 100644 index 000000000..ce260b6d3 --- /dev/null +++ b/_nuxt/IconCSS.Qy8jnwOg.js @@ -0,0 +1 @@ +import{d as m,az as x,x as _,I as o,b as z,c as f,a2 as I,M as a,k as S}from"./entry.uIHGwm26.js";const y=m({__name:"IconCSS",props:{name:{type:String,required:!0},size:{type:String,default:""}},setup(l){var r;x(s=>({b8dc0a94:a(d)}));const e=_();(r=e==null?void 0:e.nuxtIcon)!=null&&r.aliases;const n=l,p=o(()=>{var s;return(((s=e==null?void 0:e.nuxtIcon)==null?void 0:s.aliases)||{})[n.name]||n.name}),d=o(()=>`url('https://api.iconify.design/${p.value.replace(":","/")}.svg')`),c=o(()=>{var t,i,u;if(!n.size&&typeof((t=e.nuxtIcon)==null?void 0:t.size)=="boolean"&&!((i=e.nuxtIcon)!=null&&i.size))return;const s=n.size||((u=e.nuxtIcon)==null?void 0:u.size)||"1em";return String(Number(s))===s?`${s}px`:s});return(s,t)=>(z(),f("span",{style:I({width:a(c),height:a(c)})},null,4))}}),b=S(y,[["__scopeId","data-v-05d9ecd6"]]);export{b as default}; diff --git a/_nuxt/IconCSS.ZKlLp-Na.css b/_nuxt/IconCSS.ZKlLp-Na.css new file mode 100644 index 000000000..b412a470f --- /dev/null +++ b/_nuxt/IconCSS.ZKlLp-Na.css @@ -0,0 +1 @@ +span[data-v-05d9ecd6]{background-color:currentColor;display:inline-block;-webkit-mask-image:var(--b8dc0a94);mask-image:var(--b8dc0a94);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:middle} diff --git a/_nuxt/IconCodeSandBox.mIv1FjHI.js b/_nuxt/IconCodeSandBox.mIv1FjHI.js new file mode 100644 index 000000000..ef88fdd00 --- /dev/null +++ b/_nuxt/IconCodeSandBox.mIv1FjHI.js @@ -0,0 +1 @@ +import{k as e,b as o,c as n,e as t}from"./entry.uIHGwm26.js";const c={},s={viewBox:"0 0 105 104",fill:"none",xmlns:"http://www.w3.org/2000/svg"},r=t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M104.297.31104.87354.3111V103.735H104.297V.31104ZM93.7196 93.1572V10.8885H11.4509v82.2687h82.2687Z",fill:"currentColor"},null,-1),l=[r];function d(_,a){return o(),n("svg",s,l)}const f=e(c,[["render",d]]);export{f as default}; diff --git a/_nuxt/IconDocus.TBTy9yMN.js b/_nuxt/IconDocus.TBTy9yMN.js new file mode 100644 index 000000000..28ca4dd51 --- /dev/null +++ b/_nuxt/IconDocus.TBTy9yMN.js @@ -0,0 +1 @@ +import{k as e,b as o,c,e as s}from"./entry.uIHGwm26.js";const t={},n={viewBox:"0 0 57 57",fill:"none",xmlns:"http://www.w3.org/2000/svg"},r=s("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M28.5445 0C12.8044 0 0 12.7599 0 28.5v25.4549c0 1.5835 1.28368 2.8672 2.86718 2.8672H28.5889C44.2799 56.8221 57 44.102 57 28.4111 57 12.7201 44.2355 0 28.5445 0Zm15.4963 34.452c3.3649 0 6.0927-2.7278 6.0927-6.0928 0-3.3649-2.7278-6.0927-6.0927-6.0927-3.365 0-6.0928 2.7278-6.0928 6.0927 0 3.365 2.7278 6.0928 6.0928 6.0928Zm-18.0833.0003c3.3649 0 6.0927-2.7278 6.0927-6.0927s-2.7278-6.0928-6.0927-6.0928-6.0928 2.7279-6.0928 6.0928c0 3.3649 2.7279 6.0927 6.0928 6.0927Z",fill:"currentColor"},null,-1),l=[r];function _(a,d){return o(),c("svg",n,l)}const f=e(t,[["render",_]]);export{f as default}; diff --git a/_nuxt/IconNuxt.BcQwOinP.js b/_nuxt/IconNuxt.BcQwOinP.js new file mode 100644 index 000000000..bbdc2785c --- /dev/null +++ b/_nuxt/IconNuxt.BcQwOinP.js @@ -0,0 +1 @@ +import{k as c,b as e,c as t,e as o}from"./entry.uIHGwm26.js";const s={},n={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 324 324"},r=o("path",{fill:"currentColor",d:"M181.767 270h120.444c3.826 0 7.584-.997 10.897-2.893 3.313-1.896 6.064-4.623 7.976-7.907 1.912-3.285 2.918-7.01 2.916-10.801-.002-3.792-1.011-7.516-2.926-10.798L240.187 98.7439c-1.912-3.2832-4.662-6.0097-7.974-7.9054-3.312-1.8956-7.07-2.8936-10.895-2.8936-3.824 0-7.582.998-10.894 2.8936-3.312 1.8957-6.063 4.6222-7.975 7.9054l-20.682 35.5281-40.438-69.4745c-1.913-3.283-4.665-6.0091-7.978-7.9044C130.038 54.9978 126.28 54 122.454 54c-3.825 0-7.583.9978-10.896 2.8931-3.313 1.8953-6.065 4.6214-7.978 7.9044L2.9255 237.601C1.0107 240.883.0017 244.607 0 248.399c-.0017 3.791 1.004 7.516 2.916 10.801 1.912 3.284 4.6628 6.011 7.9758 7.907C14.2047 269.003 17.963 270 21.7886 270h75.605c29.9554 0 52.0464-13.041 67.2474-38.483l36.905-63.345 19.767-33.9L280.637 236.1h-79.091L181.767 270Zm-85.6059-33.935-52.7627-.011L122.49 100.291l39.463 67.881-26.422 45.371c-10.095 16.508-21.563 22.522-39.3699 22.522Z"},null,-1),_=[r];function l(a,h){return e(),t("svg",n,_)}const i=c(s,[["render",l]]);export{i as default}; diff --git a/_nuxt/IconNuxtContent.BcQwOinP.js b/_nuxt/IconNuxtContent.BcQwOinP.js new file mode 100644 index 000000000..bbdc2785c --- /dev/null +++ b/_nuxt/IconNuxtContent.BcQwOinP.js @@ -0,0 +1 @@ +import{k as c,b as e,c as t,e as o}from"./entry.uIHGwm26.js";const s={},n={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 324 324"},r=o("path",{fill:"currentColor",d:"M181.767 270h120.444c3.826 0 7.584-.997 10.897-2.893 3.313-1.896 6.064-4.623 7.976-7.907 1.912-3.285 2.918-7.01 2.916-10.801-.002-3.792-1.011-7.516-2.926-10.798L240.187 98.7439c-1.912-3.2832-4.662-6.0097-7.974-7.9054-3.312-1.8956-7.07-2.8936-10.895-2.8936-3.824 0-7.582.998-10.894 2.8936-3.312 1.8957-6.063 4.6222-7.975 7.9054l-20.682 35.5281-40.438-69.4745c-1.913-3.283-4.665-6.0091-7.978-7.9044C130.038 54.9978 126.28 54 122.454 54c-3.825 0-7.583.9978-10.896 2.8931-3.313 1.8953-6.065 4.6214-7.978 7.9044L2.9255 237.601C1.0107 240.883.0017 244.607 0 248.399c-.0017 3.791 1.004 7.516 2.916 10.801 1.912 3.284 4.6628 6.011 7.9758 7.907C14.2047 269.003 17.963 270 21.7886 270h75.605c29.9554 0 52.0464-13.041 67.2474-38.483l36.905-63.345 19.767-33.9L280.637 236.1h-79.091L181.767 270Zm-85.6059-33.935-52.7627-.011L122.49 100.291l39.463 67.881-26.422 45.371c-10.095 16.508-21.563 22.522-39.3699 22.522Z"},null,-1),_=[r];function l(a,h){return e(),t("svg",n,_)}const i=c(s,[["render",l]]);export{i as default}; diff --git a/_nuxt/IconNuxtLabs.51HX9YFE.js b/_nuxt/IconNuxtLabs.51HX9YFE.js new file mode 100644 index 000000000..70be36fab --- /dev/null +++ b/_nuxt/IconNuxtLabs.51HX9YFE.js @@ -0,0 +1 @@ +import{k as c,b as e,c as t,e as o}from"./entry.uIHGwm26.js";const s={},n={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 324 324"},r=o("path",{fill:"currentColor",d:"M181.767 270h120.444c3.826 0 7.584-.997 10.897-2.893 3.313-1.896 6.064-4.623 7.976-7.907 1.912-3.285 2.918-7.01 2.916-10.801-.002-3.792-1.011-7.516-2.926-10.798L240.187 98.7439c-1.912-3.2832-4.662-6.0097-7.974-7.9054-3.312-1.8956-7.07-2.8936-10.895-2.8936-3.824 0-7.582.998-10.894 2.8936-3.312 1.8957-6.063 4.6222-7.975 7.9054l-20.682 35.5281-40.438-69.4745c-1.913-3.283-4.665-6.0091-7.978-7.9044C130.038 54.9978 126.28 54 122.454 54c-3.825 0-7.583.9978-10.896 2.8931-3.313 1.8953-6.065 4.6214-7.978 7.9044L2.9255 237.601C1.0107 240.883.0017 244.607 0 248.399c-.0017 3.791 1.004 7.516 2.916 10.801 1.912 3.284 4.6628 6.011 7.9758 7.907C14.2047 269.003 17.963 270 21.7886 270h75.605c29.9554 0 52.0464-13.041 67.2474-38.483l36.905-63.345 19.767-33.9L280.637 236.1h-79.091L181.767 270Zm-85.6059-33.935-52.7627-.011L122.49 100.291l39.463 67.881-26.422 45.371c-10.095 16.508-21.563 22.522-39.3699 22.522Z"},null,-1),_=[r];function a(l,h){return e(),t("svg",n,_)}const i=c(s,[["render",a]]);export{i as default}; diff --git a/_nuxt/IconNuxtStudio.H-RXqhZ1.css b/_nuxt/IconNuxtStudio.H-RXqhZ1.css new file mode 100644 index 000000000..1436992d4 --- /dev/null +++ b/_nuxt/IconNuxtStudio.H-RXqhZ1.css @@ -0,0 +1 @@ +svg[data-v-9b650d86]{fill:var(--color-black)}:root.dark svg[data-v-9b650d86]{fill:var(--color-white)} diff --git a/_nuxt/IconNuxtStudio.ntIa3tVN.js b/_nuxt/IconNuxtStudio.ntIa3tVN.js new file mode 100644 index 000000000..a6188d8ad --- /dev/null +++ b/_nuxt/IconNuxtStudio.ntIa3tVN.js @@ -0,0 +1 @@ +import{k as o,b as e,c as t,p as s,i as a,e as d}from"./entry.uIHGwm26.js";const _={},n=c=>(s("data-v-9b650d86"),c=c(),a(),c),r={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 324 324"},p=n(()=>d("path",{fill:"currentColor",d:"M181.767 270h120.444c3.826 0 7.584-.997 10.897-2.893 3.313-1.896 6.064-4.623 7.976-7.907 1.912-3.285 2.918-7.01 2.916-10.801-.002-3.792-1.011-7.516-2.926-10.798L240.187 98.7439c-1.912-3.2832-4.662-6.0097-7.974-7.9054-3.312-1.8956-7.07-2.8936-10.895-2.8936-3.824 0-7.582.998-10.894 2.8936-3.312 1.8957-6.063 4.6222-7.975 7.9054l-20.682 35.5281-40.438-69.4745c-1.913-3.283-4.665-6.0091-7.978-7.9044C130.038 54.9978 126.28 54 122.454 54c-3.825 0-7.583.9978-10.896 2.8931-3.313 1.8953-6.065 4.6214-7.978 7.9044L2.9255 237.601C1.0107 240.883.0017 244.607 0 248.399c-.0017 3.791 1.004 7.516 2.916 10.801 1.912 3.284 4.6628 6.011 7.9758 7.907C14.2047 269.003 17.963 270 21.7886 270h75.605c29.9554 0 52.0464-13.041 67.2474-38.483l36.905-63.345 19.767-33.9L280.637 236.1h-79.091L181.767 270Zm-85.6059-33.935-52.7627-.011L122.49 100.291l39.463 67.881-26.422 45.371c-10.095 16.508-21.563 22.522-39.3699 22.522Z"},null,-1)),l=[p];function h(c,i){return e(),t("svg",r,l)}const f=o(_,[["render",h],["__scopeId","data-v-9b650d86"]]);export{f as default}; diff --git a/_nuxt/IconStackBlitz.H_JzqyZe.js b/_nuxt/IconStackBlitz.H_JzqyZe.js new file mode 100644 index 000000000..b8a83bdf0 --- /dev/null +++ b/_nuxt/IconStackBlitz.H_JzqyZe.js @@ -0,0 +1 @@ +import{k as e,b as t,c as o,e as c}from"./entry.uIHGwm26.js";const s={},n={viewBox:"0 0 25 25",fill:"none",xmlns:"http://www.w3.org/2000/svg"},r=c("path",{d:"M11.46 14.773H4L17.638 0l-3.671 10.227h7.46L7.788 25l3.671-10.227h.001Z",fill:"currentColor"},null,-1),l=[r];function _(a,i){return t(),o("svg",n,l)}const f=e(s,[["render",_]]);export{f as default}; diff --git a/_nuxt/IconVueTelescope.aviRrbuY.js b/_nuxt/IconVueTelescope.aviRrbuY.js new file mode 100644 index 000000000..180ff1d2a --- /dev/null +++ b/_nuxt/IconVueTelescope.aviRrbuY.js @@ -0,0 +1 @@ +import{k as e,b as t,c as l,e as o}from"./entry.uIHGwm26.js";const n={},s={viewBox:"0 0 124 124",fill:"none",xmlns:"http://www.w3.org/2000/svg"},c=o("path",{d:"M48 82.5887L57.1066 98.175C59.3073 101.942 64.8092 101.942 67.0102 98.175L101 40H72.8834L48 82.5887Z",fill:"currentColor"},null,-1),r=o("path",{d:"M77 33H104.936L105.23 32.4924C107.417 28.718 104.684 24 100.31 24H82.2142L77 33Z",fill:"currentColor"},null,-1),_=o("path",{d:"M74 24L68.7601 33H19.0689L18.7734 32.4924C16.5759 28.718 19.3228 24 23.7177 24H74Z",fill:"currentColor"},null,-1),a=o("path",{d:"M65 40L44 76L23 40H65Z",fill:"currentColor"},null,-1),i=[c,r,_,a];function d(h,u){return t(),l("svg",s,i)}const p=e(n,[["render",d]]);export{p as default}; diff --git a/_nuxt/Input.CTVi45-o.css b/_nuxt/Input.CTVi45-o.css new file mode 100644 index 000000000..bb54edac1 --- /dev/null +++ b/_nuxt/Input.CTVi45-o.css @@ -0,0 +1 @@ +div label[data-v-d1bc9653]{cursor:pointer;display:block;font-size:var(--text-base-fontSize);font-weight:var(--fontWeight-semibold);line-height:var(--text-base-lineHeight);margin-bottom:var(--space-2)}div input[data-v-d1bc9653],div textarea[data-v-d1bc9653]{background-color:transparent;border:1px solid var(--color-gray-300);border-radius:var(--radii-sm);caret-color:var(--color-gray-500);outline:none;padding:var(--space-2) var(--space-4);width:100%}:root.dark div input[data-v-d1bc9653],:root.dark div textarea[data-v-d1bc9653],div input[data-v-d1bc9653]:focus,div textarea[data-v-d1bc9653]:focus{border-color:var(--color-gray-700)}:root.dark div input[data-v-d1bc9653]:focus,:root.dark div textarea[data-v-d1bc9653]:focus{border-color:var(--color-gray-400)}div textarea[data-v-d1bc9653]{height:var(--space-48);resize:none} diff --git a/_nuxt/Input.O4Qi4YDL.js b/_nuxt/Input.O4Qi4YDL.js new file mode 100644 index 000000000..05c7ef98c --- /dev/null +++ b/_nuxt/Input.O4Qi4YDL.js @@ -0,0 +1 @@ +import{d as i,b as a,c as d,e as u,t as m,k as o}from"./entry.uIHGwm26.js";const f=["for"],r=["id","name","value","type","placeholder"],c=["id","name","value","type","placeholder"],y=i({__name:"Input",props:{modelValue:{type:String,required:!0},field:{type:Object,required:!0,validator:e=>!!e.name}},emits:["update:modelValue"],setup(e){return(n,l)=>(a(),d("div",null,[u("label",{for:e.field.name},m(e.field.label),9,f),e.field.type!=="textarea"?(a(),d("input",{key:0,id:e.field.name,name:e.field.name,value:e.modelValue,type:e.field.type?e.field.type:"text",placeholder:e.field.placeholder?e.field.placeholder:"",onInput:l[0]||(l[0]=t=>n.$emit("update:modelValue",t.target.value))},null,40,r)):(a(),d("textarea",{key:1,id:e.field.name,name:e.field.name,value:e.modelValue,type:e.field.type?e.field.type:"text",placeholder:e.field.placeholder?e.field.placeholder:"",onInput:l[1]||(l[1]=t=>n.$emit("update:modelValue",t.target.value))},null,40,c))]))}}),h=o(y,[["__scopeId","data-v-d1bc9653"]]);export{h as default}; diff --git a/_nuxt/List.GfZlsH2t.js b/_nuxt/List.GfZlsH2t.js new file mode 100644 index 000000000..64a09c1eb --- /dev/null +++ b/_nuxt/List.GfZlsH2t.js @@ -0,0 +1 @@ +import{d as r,ag as l,I as u,N as n,a6 as p,k as m}from"./entry.uIHGwm26.js";import{u as f,f as _,_ as d}from"./MDCSlot.3Uw_wiOf.js";const y=()=>({unwrap:f,flatUnwrap:_}),h={primary:"heroicons-outline:check",info:"heroicons-outline:information-circle",success:"heroicons-outline:check-circle",warning:"heroicons-outline:exclamation",danger:"heroicons-outline:exclamation-circle"},g=r({props:{icon:{type:String,default:null},type:{type:String,default:"primary",validator:e=>["primary","info","success","warning","danger"].includes(e)}},setup(e){const o=l(),{flatUnwrap:t,unwrap:s}=y(),c=u(()=>e.icon||h[e.type]);return()=>{const i=t((o.default&&o.default())??[],["ul"]).map(a=>s(a,["li"]));return n("ul",i.map(a=>n("li",[n("span",{class:`list-icon ${e.type}`},n(p,{name:c.value,class:"icon"})),n("span",n(d,{use:()=>a}))])))}}}),k=m(g,[["__scopeId","data-v-996b73c2"]]);export{k as default}; diff --git a/_nuxt/List.KMfEwUIj.css b/_nuxt/List.KMfEwUIj.css new file mode 100644 index 000000000..088188b35 --- /dev/null +++ b/_nuxt/List.KMfEwUIj.css @@ -0,0 +1 @@ +li[data-v-996b73c2]{align-items:flex-start;display:flex;margin-bottom:var(--space-3)}li[data-v-996b73c2]:last-child{margin-bottom:0}li .list-icon[data-v-996b73c2]{flex-shrink:0;margin-inline-end:var(--space-3)}li .list-icon.primary[data-v-996b73c2]{color:var(--elements-state-primary-color-primary)}li .list-icon.info[data-v-996b73c2]{color:var(--elements-state-info-color-primary)}li .list-icon.success[data-v-996b73c2]{color:var(--elements-state-success-color-primary)}li .list-icon.warning[data-v-996b73c2]{color:var(--elements-state-warning-color-primary)}li .list-icon.danger[data-v-996b73c2]{color:var(--elements-state-danger-color-primary)}li .list-icon .icon[data-v-996b73c2]{height:var(--space-6);width:var(--space-6)} diff --git a/_nuxt/MDCSlot.3Uw_wiOf.js b/_nuxt/MDCSlot.3Uw_wiOf.js new file mode 100644 index 000000000..9aaa05457 --- /dev/null +++ b/_nuxt/MDCSlot.3Uw_wiOf.js @@ -0,0 +1 @@ +import{d as h,ag as m,I as A,N as o,af as _}from"./entry.uIHGwm26.js";const g=["p","h1","h2","h3","h4","h5","h6","li"];function f(r,t){return r.type===t||typeof r.type=="object"&&r.type.tag===t||r.tag===t}function a(r){return f(r,"text")||f(r,Symbol.for("v-txt"))}function p(r){var t;return Array.isArray(r.children)||typeof r.children=="string"?r.children:typeof((t=r.children)==null?void 0:t.default)=="function"?r.children.default():[]}function l(r){if(!r)return"";if(Array.isArray(r))return r.map(l).join("");if(a(r))return r.children||r.value||"";const t=p(r);return Array.isArray(t)?t.map(l).filter(Boolean).join(""):""}function y(r,t=[]){if(Array.isArray(r))return r.flatMap(n=>y(n,t));let e=r;return t.some(n=>n==="*"||f(r,n))&&(e=p(r)||r,!Array.isArray(e)&&g.some(n=>f(r,n))&&(e=[e])),e}function c(r,t=[]){return r=Array.isArray(r)?r:[r],t.length?r.flatMap(e=>c(y(e,[t[0]]),t.slice(1))).filter(e=>!(a(e)&&l(e).trim()==="")):r}function w(r,t=[]){return typeof t=="string"&&(t=t.split(",").map(e=>e.trim()).filter(Boolean)),t.length?c(r,t).reduce((e,n)=>(a(n)?typeof e[e.length-1]=="string"?e[e.length-1]+=n.children:e.push(n.children):e.push(n),e),[]):r}const S=h({name:"MDCSlot",functional:!0,props:{name:{type:String,default:"default"},unwrap:{type:[Boolean,String],default:!1},use:{type:Function,default:void 0}},setup(r){const{parent:t}=_(),{default:e}=m(),n=A(()=>typeof r.unwrap=="string"?r.unwrap.split(" "):["*"]);return{fallbackSlot:e,tags:n,parent:t}},render({use:r,unwrap:t,fallbackSlot:e,tags:n,parent:i}){var s;try{let u=r;return typeof r=="string"&&(u=(i==null?void 0:i.slots[r])||((s=i==null?void 0:i.parent)==null?void 0:s.slots[r]),console.warn(`Please set :use="$slots.${r}" in component to enable reactivity`)),u?t?w(u(),n):[u()]:e?e():o("div")}catch{return o("div")}}}),C=S;export{C as _,w as f,y as u}; diff --git a/_nuxt/Markdown.LJw0RYDX.js b/_nuxt/Markdown.LJw0RYDX.js new file mode 100644 index 000000000..dceebabce --- /dev/null +++ b/_nuxt/Markdown.LJw0RYDX.js @@ -0,0 +1 @@ +import s from"./ContentSlot.frkPNmKi.js";import{d as o,ag as f,I as u,af as m}from"./entry.uIHGwm26.js";import"./MDCSlot.3Uw_wiOf.js";const d=o({name:"Markdown",extends:s,setup(t){const{parent:e}=m(),{between:n,default:a}=f(),r=u(()=>typeof t.unwrap=="string"?t.unwrap.split(" "):["*"]);return{fallbackSlot:a,tags:r,between:n,parent:e}}});export{d as default}; diff --git a/_nuxt/NuxtImg.xoobjzhr.js b/_nuxt/NuxtImg.xoobjzhr.js new file mode 100644 index 000000000..954edf966 --- /dev/null +++ b/_nuxt/NuxtImg.xoobjzhr.js @@ -0,0 +1 @@ +import{a1 as f}from"./entry.uIHGwm26.js";export{f as default}; diff --git a/_nuxt/PreviewLayout.LEhGpK7q.js b/_nuxt/PreviewLayout.LEhGpK7q.js new file mode 100644 index 000000000..c89c31dbd --- /dev/null +++ b/_nuxt/PreviewLayout.LEhGpK7q.js @@ -0,0 +1 @@ +import{k as t,b as a,c as o,a5 as s}from"./entry.uIHGwm26.js";const r={},c={class:"preview-layout"};function n(e,d){return a(),o("div",c,[s(e.$slots,"default",{},void 0,!0)])}const l=t(r,[["render",n],["__scopeId","data-v-9e63a761"]]);export{l as default}; diff --git a/_nuxt/PreviewLayout.MaZAQnQp.css b/_nuxt/PreviewLayout.MaZAQnQp.css new file mode 100644 index 000000000..980205b8d --- /dev/null +++ b/_nuxt/PreviewLayout.MaZAQnQp.css @@ -0,0 +1 @@ +.preview-layout[data-v-9e63a761]{display:flex;flex-direction:column;gap:1rem} diff --git a/_nuxt/Props.vLDDOLog.js b/_nuxt/Props.vLDDOLog.js new file mode 100644 index 000000000..ccafca16f --- /dev/null +++ b/_nuxt/Props.vLDDOLog.js @@ -0,0 +1 @@ +import $ from"./ProseTh.erSO7NHs.js";import g from"./ProseTr.ltHBB1I0.js";import B from"./ProseThead.lvISFRJw.js";import b from"./ProseCodeInline.QqXTIiNZ.js";import C from"./ProseTd.Ex0GYgEm.js";import N from"./ProseTbody.BrO4vgr2.js";import F from"./ProseTable.yEu4BAQd.js";import{u as R}from"./asyncData.uJQpiaTt.js";import{k as A,d as E,ak as I,I as m,b as o,X as l,w as e,g as s,D as d,f,c as S,F as J,Z as L,t as c}from"./entry.uIHGwm26.js";const X=E({props:{of:{type:String,default:void 0},required:{type:Boolean,default:void 0},values:{type:Boolean,default:void 0},description:{type:Boolean,default:void 0},default:{type:Boolean,default:void 0}},async setup(t){const h=`/api/component-meta/${I(t.of)}`,{data:k}=await R(t.of,()=>$fetch(h),"$bAEJVAfNFF"),i=m(()=>k.value.props.filter(a=>{var n;return!((n=a.tags)!=null&&n.ignore.includes(a))})),w=m(()=>{var a;return t.required!==void 0?t.required:(a=i.value)==null?void 0:a.find(n=>n.required!==void 0)}),q=m(()=>{var a;return t.values!==void 0?t.values:(a=i.value)==null?void 0:a.find(n=>n.values)}),r=m(()=>{var a;return t.description!==void 0?t.description:(a=i.value)==null?void 0:a.find(n=>n.description)}),y=m(()=>{var a;return t.default!==void 0?t.default:(a=i.value)==null?void 0:a.find(n=>n.default)});return{meta:k,properties:i,showRequired:w,showValues:q,showDescription:r,showDefault:y}}});function Y(t,h,k,i,w,q){var v,D,P;const r=$,y=g,a=B,n=b,_=C,T=N,V=F;return t.meta&&((v=t.meta)!=null&&v.props)&&((P=(D=t.meta)==null?void 0:D.props)!=null&&P.length)?(o(),l(V,{key:0},{default:e(()=>[s(a,null,{default:e(()=>[s(y,null,{default:e(()=>[s(r,null,{default:e(()=>[d("Prop")]),_:1}),s(r,null,{default:e(()=>[d("Type")]),_:1}),t.showRequired?(o(),l(r,{key:0},{default:e(()=>[d(" Required ")]),_:1})):f("",!0),t.showDefault?(o(),l(r,{key:1},{default:e(()=>[d(" Default ")]),_:1})):f("",!0),t.showValues?(o(),l(r,{key:2},{default:e(()=>[d(" Values ")]),_:1})):f("",!0),t.showDescription?(o(),l(r,{key:3},{default:e(()=>[d(" Description ")]),_:1})):f("",!0)]),_:1})]),_:1}),s(T,null,{default:e(()=>[(o(!0),S(J,null,L(t.properties,u=>(o(),l(y,{key:u.name},{default:e(()=>[s(_,null,{default:e(()=>[s(n,null,{default:e(()=>[d(c((u==null?void 0:u.name)||"?"),1)]),_:2},1024)]),_:2},1024),s(_,null,{default:e(()=>[s(n,null,{default:e(()=>[d(c((u==null?void 0:u.type)||"?"),1)]),_:2},1024)]),_:2},1024),t.showRequired?(o(),l(_,{key:0},{default:e(()=>[s(n,null,{default:e(()=>[d(c(u.required==="?"?"?":u.required?"Yes":"No"),1)]),_:2},1024)]),_:2},1024)):f("",!0),t.showDefault?(o(),l(_,{key:1},{default:e(()=>[u.default?(o(),l(n,{key:0},{default:e(()=>[d(c((u==null?void 0:u.default)||"?"),1)]),_:2},1024)):f("",!0)]),_:2},1024)):f("",!0),t.showValues?(o(),l(_,{key:2},{default:e(()=>[u.values?(o(),l(n,{key:0},{default:e(()=>[d(c((u==null?void 0:u.values)||"?"),1)]),_:2},1024)):(o(),l(n,{key:1},{default:e(()=>[d(" - ")]),_:1}))]),_:2},1024)):f("",!0),t.showDescription?(o(),l(_,{key:3},{default:e(()=>[s(n,null,{default:e(()=>[d(c(u.description),1)]),_:2},1024)]),_:2},1024)):f("",!0)]),_:2},1024))),128))]),_:1})]),_:1})):f("",!0)}const Q=A(X,[["render",Y]]);export{Q as default}; diff --git a/_nuxt/ProseA.kEJeNy76.css b/_nuxt/ProseA.kEJeNy76.css new file mode 100644 index 000000000..ceaa8235d --- /dev/null +++ b/_nuxt/ProseA.kEJeNy76.css @@ -0,0 +1 @@ +a[data-v-185f0066]{border-bottom:var(--prose-a-border-width) var(--prose-a-border-style-static) var(--prose-a-border-color-static);color:var(--prose-a-color-static);font-family:var(--typography-font-body);font-weight:var(--prose-a-fontWeight);padding-bottom:var(--prose-a-border-distance);-webkit-text-decoration:var(--prose-a-textDecoration);text-decoration:var(--prose-a-textDecoration)}a[data-v-185f0066]:hover{border-color:var(--prose-a-border-color-hover);border-style:var(--prose-a-border-style-hover);color:var(--prose-a-color-hover)}a[data-v-185f0066]:has(img){border-width:0}a[data-v-185f0066]:has(code){border-bottom:var(--prose-a-hasCode-borderBottom)}a[data-v-185f0066]:has(code) code{border-color:var(--prose-a-code-border-color-static);border-style:var(--prose-a-code-border-style);border-width:var(--prose-a-code-border-width);color:var(--prose-a-code-color-static)}a[data-v-185f0066]:has(code):hover{border-bottom:var(--prose-a-hasCode-borderBottom)}a[data-v-185f0066]:has(code):hover code{background-color:var(--prose-a-code-background-hover);border-color:var(--prose-a-code-border-color-hover);color:var(--prose-a-code-color-hover)} diff --git a/_nuxt/ProseA.uZkReT9p.js b/_nuxt/ProseA.uZkReT9p.js new file mode 100644 index 000000000..9909dbce9 --- /dev/null +++ b/_nuxt/ProseA.uZkReT9p.js @@ -0,0 +1 @@ +import{d as a,b as n,X as r,w as s,a5 as _,E as c,k as d}from"./entry.uIHGwm26.js";const f=a({__name:"ProseA",props:{href:{type:String,default:""},target:{type:String,default:void 0,required:!1}},setup(t){return(e,u)=>{const o=c;return n(),r(o,{to:t.href,target:t.target},{default:s(()=>[_(e.$slots,"default",{},void 0,!0)]),_:3},8,["to","target"])}}}),i=d(f,[["__scopeId","data-v-185f0066"]]);export{i as default}; diff --git a/_nuxt/ProseBlockquote.ZOgCPkt5.css b/_nuxt/ProseBlockquote.ZOgCPkt5.css new file mode 100644 index 000000000..a3378c15f --- /dev/null +++ b/_nuxt/ProseBlockquote.ZOgCPkt5.css @@ -0,0 +1 @@ +blockquote[data-v-6c4e48d1]{border-inline-start-color:var(--prose-blockquote-border-color);border-inline-start-style:var(--prose-blockquote-border-style);border-inline-start-width:var(--prose-blockquote-border-width);color:var(--prose-blockquote-color);font-family:var(--typography-font-body);margin:var(--prose-blockquote-margin);padding-inline-start:var(--prose-blockquote-paddingInlineStart);quotes:var(--prose-blockquote-quotes)}blockquote p[data-v-6c4e48d1]:first-of-type:before,blockquote p[data-v-6c4e48d1]:last-of-type:after{content:""} diff --git a/_nuxt/ProseBlockquote.bFQ9hQBn.js b/_nuxt/ProseBlockquote.bFQ9hQBn.js new file mode 100644 index 000000000..ee58b41e5 --- /dev/null +++ b/_nuxt/ProseBlockquote.bFQ9hQBn.js @@ -0,0 +1 @@ +import{k as o,b as t,c,a5 as r}from"./entry.uIHGwm26.js";const n={};function s(e,a){return t(),c("blockquote",null,[r(e.$slots,"default",{},void 0,!0)])}const d=o(n,[["render",s],["__scopeId","data-v-6c4e48d1"]]);export{d as default}; diff --git a/_nuxt/ProseCode.IEFN8-CC.js b/_nuxt/ProseCode.IEFN8-CC.js new file mode 100644 index 000000000..53c1ea1cd --- /dev/null +++ b/_nuxt/ProseCode.IEFN8-CC.js @@ -0,0 +1 @@ +import{r as g,am as z,an as D,ao as F,M as k,I as B,ac as G,af as X,o as H,d as T,x as J,b as h,c as A,e as M,g as $,w as K,X as E,T as Q,n as O,a6 as U,p as Y,i as Z,k as L,t as ee,f as te,a5 as ne}from"./entry.uIHGwm26.js";function W(e){return D()?(F(e),!0):!1}function C(e){return typeof e=="function"?e():k(e)}const b=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const oe=Object.prototype.toString,ae=e=>oe.call(e)==="[object Object]",S=()=>{},se=ie();function ie(){var e,t;return b&&((e=window==null?void 0:window.navigator)==null?void 0:e.userAgent)&&(/iP(ad|hone|od)/.test(window.navigator.userAgent)||((t=window==null?void 0:window.navigator)==null?void 0:t.maxTouchPoints)>2&&/iPad|Macintosh/.test(window==null?void 0:window.navigator.userAgent))}function ce(e){let t;function a(){return t||(t=e()),t}return a.reset=async()=>{const n=t;t=void 0,n&&await n},a}function re(e,t,a={}){const{immediate:n=!0}=a,i=g(!1);let o=null;function l(){o&&(clearTimeout(o),o=null)}function r(){i.value=!1,l()}function d(...p){l(),i.value=!0,o=setTimeout(()=>{i.value=!1,o=null,e(...p)},C(t))}return n&&(i.value=!0,b&&d()),W(r),{isPending:z(i),start:d,stop:r}}function w(e){var t;const a=C(e);return(t=a==null?void 0:a.$el)!=null?t:a}const N=b?window:void 0,R=b?window.navigator:void 0;function _(...e){let t,a,n,i;if(typeof e[0]=="string"||Array.isArray(e[0])?([a,n,i]=e,t=N):[t,a,n,i]=e,!t)return S;Array.isArray(a)||(a=[a]),Array.isArray(n)||(n=[n]);const o=[],l=()=>{o.forEach(u=>u()),o.length=0},r=(u,f,s,c)=>(u.addEventListener(f,s,c),()=>u.removeEventListener(f,s,c)),d=G(()=>[w(t),C(i)],([u,f])=>{if(l(),!u)return;const s=ae(f)?{...f}:f;o.push(...a.flatMap(c=>n.map(m=>r(u,c,m,s))))},{immediate:!0,flush:"post"}),p=()=>{d(),l()};return W(p),p}let I=!1;function ue(e,t,a={}){const{window:n=N,ignore:i=[],capture:o=!0,detectIframe:l=!1}=a;if(!n)return S;se&&!I&&(I=!0,Array.from(n.document.body.children).forEach(s=>s.addEventListener("click",S)),n.document.documentElement.addEventListener("click",S));let r=!0;const d=s=>i.some(c=>{if(typeof c=="string")return Array.from(n.document.querySelectorAll(c)).some(m=>m===s.target||s.composedPath().includes(m));{const m=w(c);return m&&(s.target===m||s.composedPath().includes(m))}}),u=[_(n,"click",s=>{const c=w(e);if(!(!c||c===s.target||s.composedPath().includes(c))){if(s.detail===0&&(r=!d(s)),!r){r=!0;return}t(s)}},{passive:!0,capture:o}),_(n,"pointerdown",s=>{const c=w(e);r=!d(s)&&!!(c&&!s.composedPath().includes(c))},{passive:!0}),l&&_(n,"blur",s=>{setTimeout(()=>{var c;const m=w(e);((c=n.document.activeElement)==null?void 0:c.tagName)==="IFRAME"&&!(m!=null&&m.contains(n.document.activeElement))&&t(s)},0)})].filter(Boolean);return()=>u.forEach(s=>s())}function le(){const e=g(!1);return X()&&H(()=>{e.value=!0}),e}function j(e){const t=le();return B(()=>(t.value,!!e()))}function P(e,t={}){const{controls:a=!1,navigator:n=R}=t,i=j(()=>n&&"permissions"in n);let o;const l=typeof e=="string"?{name:e}:e,r=g(),d=()=>{o&&(r.value=o.state)},p=ce(async()=>{if(i.value){if(!o)try{o=await n.permissions.query(l),_(o,"change",d),d()}catch{r.value="prompt"}return o}});return p(),a?{state:r,isSupported:i,query:p}:r}function de(e={}){const{navigator:t=R,read:a=!1,source:n,copiedDuring:i=1500,legacy:o=!1}=e,l=j(()=>t&&"clipboard"in t),r=P("clipboard-read"),d=P("clipboard-write"),p=B(()=>l.value||o),u=g(""),f=g(!1),s=re(()=>f.value=!1,i);function c(){l.value&&r.value!=="denied"?t.clipboard.readText().then(v=>{u.value=v}):u.value=q()}p.value&&a&&_(["copy","cut"],c);async function m(v=C(n)){p.value&&v!=null&&(l.value&&d.value!=="denied"?await t.clipboard.writeText(v):V(v),u.value=v,f.value=!0,s.start())}function V(v){const y=document.createElement("textarea");y.value=v??"",y.style.position="absolute",y.style.opacity="0",document.body.appendChild(y),y.select(),document.execCommand("copy"),y.remove()}function q(){var v,y,x;return(x=(y=(v=document==null?void 0:document.getSelection)==null?void 0:v.call(document))==null?void 0:y.toString())!=null?x:""}return{isSupported:p,text:u,copied:f,copy:m}}const pe=e=>(Y("data-v-c3e91f7c"),e=e(),Z(),e),fe=pe(()=>M("span",{class:"sr-only"},"Copy to clipboard",-1)),me={class:"icon-wrapper"},ve=T({__name:"ProseCodeCopyButton",props:{content:{type:String,default:""},show:{type:Boolean,default:!1}},setup(e){const t=e,a=g(),{copy:n}=de();ue(a,()=>{o.value==="copied"&&(o.value="init")});const{prose:i}=J(),o=g("init"),l=r=>{n(t.content).then(()=>{o.value="copied"}).catch(d=>{console.warn("Couldn't copy to clipboard!",d)})};return(r,d)=>{const p=U;return h(),A("button",{ref_key:"copyButtonRef",ref:a,class:O([(e.show||o.value==="copied")&&"show"]),onClick:l},[fe,M("span",me,[$(Q,{name:"fade"},{default:K(()=>{var u,f;return[o.value==="copied"?(h(),E(p,{key:0,name:(u=k(i).copyButton)==null?void 0:u.iconCopied,size:"18",class:"copied"},null,8,["name"])):(h(),E(p,{key:1,name:(f=k(i).copyButton)==null?void 0:f.iconCopy,size:"18"},null,8,["name"]))]}),_:1})])],2)}}}),ye=L(ve,[["__scopeId","data-v-c3e91f7c"]]),ge={key:0,class:"filename"},we=T({__name:"ProseCode",props:{code:{type:String,default:""},language:{type:String,default:null},filename:{type:String,default:null},highlights:{type:Array,default:()=>[]}},setup(e){const t=g(!1);return(a,n)=>{const i=ye;return h(),A("div",{class:O([[`highlight-${e.language}`],"prose-code"]),onMouseenter:n[0]||(n[0]=o=>t.value=!0),onMouseleave:n[1]||(n[1]=o=>t.value=!1)},[e.filename?(h(),A("span",ge,ee(e.filename),1)):te("",!0),ne(a.$slots,"default",{},void 0,!0),$(i,{show:t.value,content:e.code,class:"copy-button"},null,8,["show","content"])],34)}}}),_e=L(we,[["__scopeId","data-v-4f2aceaf"]]);export{_e as default}; diff --git a/_nuxt/ProseCode.R0dUtoE8.css b/_nuxt/ProseCode.R0dUtoE8.css new file mode 100644 index 000000000..730290540 --- /dev/null +++ b/_nuxt/ProseCode.R0dUtoE8.css @@ -0,0 +1 @@ +button[data-v-c3e91f7c]{border-radius:3px;margin:4px;opacity:0;padding:4px;transform:scale(.75);transition:all .2s}button[data-v-c3e91f7c]:hover{background-color:var(--elements-surface-secondary-backgroundColor)}button[data-v-c3e91f7c]:focus{box-shadow:0 0 0 2px var(--color-blue-500);opacity:1;outline:none}button.show[data-v-c3e91f7c]{opacity:1;transform:scale(1)}button .icon-wrapper[data-v-c3e91f7c]{display:block;height:18px;position:relative;width:18px}button .icon-wrapper .icon[data-v-c3e91f7c]{display:block;position:absolute}button .icon-wrapper .fade-enter-active[data-v-c3e91f7c],button .icon-wrapper .fade-leave-active[data-v-c3e91f7c]{transition:opacity .2s}button .icon-wrapper .fade-enter-from[data-v-c3e91f7c],button .icon-wrapper .fade-leave-to[data-v-c3e91f7c]{opacity:0}.prose-code[data-v-4f2aceaf]{-webkit-backdrop-filter:var(--prose-code-block-backdropFilter);backdrop-filter:var(--prose-code-block-backdropFilter);background-color:var(--prose-code-block-backgroundColor);border-color:var(--prose-code-block-border-color);border-radius:var(--radii-md);border-style:var(--prose-code-block-border-style);border-width:var(--prose-code-block-border-width);color:var(--prose-code-block-color);font-size:var(--prose-code-block-fontSize);margin:var(--prose-code-block-margin);overflow:hidden;position:relative;width:100%}.prose-code.highlight-bash[data-v-4f2aceaf] code .line,.prose-code.highlight-sh[data-v-4f2aceaf] code .line,.prose-code.highlight-shell[data-v-4f2aceaf] code .line,.prose-code.highlight-shellscript[data-v-4f2aceaf] code .line,.prose-code.highlight-zsh[data-v-4f2aceaf] code .line{padding-inline-start:1rem;position:relative}.prose-code.highlight-bash[data-v-4f2aceaf] code .line:before,.prose-code.highlight-sh[data-v-4f2aceaf] code .line:before,.prose-code.highlight-shell[data-v-4f2aceaf] code .line:before,.prose-code.highlight-shellscript[data-v-4f2aceaf] code .line:before,.prose-code.highlight-zsh[data-v-4f2aceaf] code .line:before{color:var(--typography-color-primary-500);content:">";display:block;font-family:var(--font-mono);font-weight:700;inset-inline-start:-.1rem;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.copy-button[data-v-4f2aceaf]{bottom:0;inset-inline-end:0;position:absolute}[data-v-4f2aceaf] code{display:flex;flex-direction:column}[data-v-4f2aceaf] .line{display:inline-table;min-height:1rem}.filename[data-v-4f2aceaf]{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);border-radius:var(--radii-lg);color:var(--prose-code-block-color);font-family:var(--typography-font-code);font-size:var(--fontSize-xs);inset-inline-end:0;line-height:var(--lead-normal);padding:.5rem .75rem;position:absolute;top:0;transition:opacity .2s}.prose-code:hover .filename[data-v-4f2aceaf]{opacity:0}.prose-code:hover .filename[data-v-4f2aceaf]:hover{opacity:1}[data-v-4f2aceaf] pre{display:flex;flex:1;line-height:var(--lead-relaxed);margin:0;overflow-x:auto;padding:var(--prose-code-block-pre-padding)}[data-v-4f2aceaf] pre code{padding-inline-end:30px}[data-v-4f2aceaf] .line.highlight{background-color:var(--prose-code-block-border-color)} diff --git a/_nuxt/ProseCodeInline.QqXTIiNZ.js b/_nuxt/ProseCodeInline.QqXTIiNZ.js new file mode 100644 index 000000000..a812f2302 --- /dev/null +++ b/_nuxt/ProseCodeInline.QqXTIiNZ.js @@ -0,0 +1 @@ +import{k as n,b as t,c,a5 as o}from"./entry.uIHGwm26.js";const r={};function a(e,s){return t(),c("code",null,[o(e.$slots,"default",{},void 0,!0)])}const d=n(r,[["render",a],["__scopeId","data-v-80325c57"]]);export{d as default}; diff --git a/_nuxt/ProseCodeInline.dcZ3SRGn.css b/_nuxt/ProseCodeInline.dcZ3SRGn.css new file mode 100644 index 000000000..138d2789c --- /dev/null +++ b/_nuxt/ProseCodeInline.dcZ3SRGn.css @@ -0,0 +1 @@ +code[data-v-80325c57]{background-color:var(--prose-code-inline-backgroundColor);border-radius:var(--prose-code-inline-borderRadius);color:var(--prose-code-inline-color);font-family:var(--typography-font-code);font-size:var(--prose-code-inline-fontSize);font-weight:var(--prose-code-inline-fontWeight);margin-left:1px;margin-right:1px;padding:var(--prose-code-inline-padding)}tbody code[data-v-80325c57]{font-size:var(--prose-tbody-code-inline-fontSize)}h1 a code[data-v-80325c57],h2 a code[data-v-80325c57],h3 a code[data-v-80325c57],h4 a code[data-v-80325c57],h5 a code[data-v-80325c57],h6 a code[data-v-80325c57]{border-radius:var(--prose-code-inline-borderRadius);color:inherit;font-size:.777777em;padding:.15em .5em} diff --git a/_nuxt/ProseEm.Wxx6HHfF.js b/_nuxt/ProseEm.Wxx6HHfF.js new file mode 100644 index 000000000..c40cfe93b --- /dev/null +++ b/_nuxt/ProseEm.Wxx6HHfF.js @@ -0,0 +1 @@ +import{k as r,b as t,c as n,a5 as o}from"./entry.uIHGwm26.js";const s={};function a(e,c){return t(),n("em",null,[o(e.$slots,"default",{},void 0,!0)])}const l=r(s,[["render",a],["__scopeId","data-v-34e73706"]]);export{l as default}; diff --git a/_nuxt/ProseEm.dvRII03j.css b/_nuxt/ProseEm.dvRII03j.css new file mode 100644 index 000000000..cdce2d56b --- /dev/null +++ b/_nuxt/ProseEm.dvRII03j.css @@ -0,0 +1 @@ +em[data-v-34e73706]{font-family:var(--typography-font-body);font-style:italic} diff --git a/_nuxt/ProseH1.Tj6KTW5B.css b/_nuxt/ProseH1.Tj6KTW5B.css new file mode 100644 index 000000000..f5930b0d8 --- /dev/null +++ b/_nuxt/ProseH1.Tj6KTW5B.css @@ -0,0 +1 @@ +h1[data-v-82a63f58]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h1-fontSize);font-weight:var(--prose-h1-fontWeight);letter-spacing:var(--prose-h1-letterSpacing);line-height:var(--prose-h1-lineHeight);margin:var(--prose-h1-margin)}h1[data-v-82a63f58] .icon{display:inline-block;height:var(--prose-h1-iconSize);margin-inline-start:12px;opacity:0;transition:opacity .1s;width:var(--prose-h1-iconSize)}h1 a[data-v-82a63f58]:hover .icon{opacity:1} diff --git a/_nuxt/ProseH1.q-s6ntTg.js b/_nuxt/ProseH1.q-s6ntTg.js new file mode 100644 index 000000000..db0ec15a8 --- /dev/null +++ b/_nuxt/ProseH1.q-s6ntTg.js @@ -0,0 +1 @@ +import{d as i,x as u,I as t,b as a,c as m,g as r,w as l,a5 as f,X as h,f as p,a6 as k,E as x,k as g}from"./entry.uIHGwm26.js";const v=["id"],C=i({__name:"ProseH1",props:{id:{}},setup(I){const{prose:e}=u(),c=t(()=>{var n,o;return((n=e==null?void 0:e.h1)==null?void 0:n.icon)&&((o=e==null?void 0:e.headings)==null?void 0:o.icon)}),s=t(()=>{var n,o;return((n=e==null?void 0:e.h1)==null?void 0:n.icon)||((o=e==null?void 0:e.headings)==null?void 0:o.icon)});return(n,o)=>{const _=k,d=x;return a(),m("h1",{id:n.id},[r(d,{href:`#${n.id}`},{default:l(()=>[f(n.$slots,"default",{},void 0,!0),c.value?(a(),h(_,{key:0,name:s.value},null,8,["name"])):p("",!0)]),_:3},8,["href"])],8,v)}}}),N=g(C,[["__scopeId","data-v-82a63f58"]]);export{N as default}; diff --git a/_nuxt/ProseH2.-Dj0TlzF.js b/_nuxt/ProseH2.-Dj0TlzF.js new file mode 100644 index 000000000..4de11e7b0 --- /dev/null +++ b/_nuxt/ProseH2.-Dj0TlzF.js @@ -0,0 +1 @@ +import{d as i,x as u,I as t,b as a,c as m,g as r,w as l,a5 as f,X as h,f as p,a6 as k,E as x,k as g}from"./entry.uIHGwm26.js";const v=["id"],C=i({__name:"ProseH2",props:{id:{}},setup(I){const{prose:e}=u(),c=t(()=>{var n,o;return((n=e==null?void 0:e.h2)==null?void 0:n.icon)&&((o=e==null?void 0:e.headings)==null?void 0:o.icon)}),s=t(()=>{var n,o;return((n=e==null?void 0:e.h2)==null?void 0:n.icon)||((o=e==null?void 0:e.headings)==null?void 0:o.icon)});return(n,o)=>{const _=k,d=x;return a(),m("h2",{id:n.id},[r(d,{href:`#${n.id}`},{default:l(()=>[f(n.$slots,"default",{},void 0,!0),c.value?(a(),h(_,{key:0,name:s.value},null,8,["name"])):p("",!0)]),_:3},8,["href"])],8,v)}}}),N=g(C,[["__scopeId","data-v-50b70a6c"]]);export{N as default}; diff --git a/_nuxt/ProseH2.tKJKS6HF.css b/_nuxt/ProseH2.tKJKS6HF.css new file mode 100644 index 000000000..ad49ae9db --- /dev/null +++ b/_nuxt/ProseH2.tKJKS6HF.css @@ -0,0 +1 @@ +h2[data-v-50b70a6c]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h2-fontSize);font-weight:var(--prose-h2-fontWeight);letter-spacing:var(--prose-h2-letterSpacing);line-height:var(--prose-h2-lineHeight);margin:var(--prose-h2-margin)}h2[data-v-50b70a6c] .icon{display:inline-block;height:var(--prose-h2-iconSize);margin-inline-start:12px;opacity:0;transition:opacity .1s;width:var(--prose-h2-iconSize)}h2 a[data-v-50b70a6c]:hover .icon{opacity:1} diff --git a/_nuxt/ProseH3.lCYEpZCb.css b/_nuxt/ProseH3.lCYEpZCb.css new file mode 100644 index 000000000..9d3a65ab0 --- /dev/null +++ b/_nuxt/ProseH3.lCYEpZCb.css @@ -0,0 +1 @@ +h3[data-v-1d225d87]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h3-fontSize);font-weight:var(--prose-h3-fontWeight);letter-spacing:var(--prose-h3-letterSpacing);line-height:var(--prose-h3-lineHeight);margin:var(--prose-h3-margin)}h3[data-v-1d225d87] .icon{display:inline-block;height:var(--prose-h3-iconSize);margin-inline-start:12px;opacity:0;transition:opacity .1s;width:var(--prose-h3-iconSize)}h3 a[data-v-1d225d87]:hover .icon{opacity:1} diff --git a/_nuxt/ProseH3.wnSRy-7f.js b/_nuxt/ProseH3.wnSRy-7f.js new file mode 100644 index 000000000..397f7f04a --- /dev/null +++ b/_nuxt/ProseH3.wnSRy-7f.js @@ -0,0 +1 @@ +import{d as i,x as u,I as t,b as a,c as m,g as r,w as l,a5 as f,X as h,f as p,a6 as k,E as x,k as g}from"./entry.uIHGwm26.js";const v=["id"],C=i({__name:"ProseH3",props:{id:{}},setup(I){const{prose:e}=u(),c=t(()=>{var n,o;return((n=e==null?void 0:e.h3)==null?void 0:n.icon)&&((o=e==null?void 0:e.headings)==null?void 0:o.icon)}),s=t(()=>{var n,o;return((n=e==null?void 0:e.h3)==null?void 0:n.icon)||((o=e==null?void 0:e.headings)==null?void 0:o.icon)});return(n,o)=>{const _=k,d=x;return a(),m("h3",{id:n.id},[r(d,{href:`#${n.id}`},{default:l(()=>[f(n.$slots,"default",{},void 0,!0),c.value?(a(),h(_,{key:0,name:s.value},null,8,["name"])):p("",!0)]),_:3},8,["href"])],8,v)}}}),N=g(C,[["__scopeId","data-v-1d225d87"]]);export{N as default}; diff --git a/_nuxt/ProseH4.HhSzCX1O.css b/_nuxt/ProseH4.HhSzCX1O.css new file mode 100644 index 000000000..ec3b8822e --- /dev/null +++ b/_nuxt/ProseH4.HhSzCX1O.css @@ -0,0 +1 @@ +h4[data-v-63d8e3a3]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h4-fontSize);font-weight:var(--prose-h4-fontWeight);letter-spacing:var(--prose-h4-letterSpacing);line-height:var(--prose-h4-lineHeight);margin:var(--prose-h4-margin)}h4[data-v-63d8e3a3] .icon{display:inline-block;height:var(--prose-h4-iconSize);margin-inline-start:10px;opacity:0;transition:opacity .1s;width:var(--prose-h4-iconSize)}h4 a[data-v-63d8e3a3]:hover .icon{opacity:1} diff --git a/_nuxt/ProseH4.gpl85eLQ.js b/_nuxt/ProseH4.gpl85eLQ.js new file mode 100644 index 000000000..61b9b3692 --- /dev/null +++ b/_nuxt/ProseH4.gpl85eLQ.js @@ -0,0 +1 @@ +import{d as i,x as u,I as t,b as a,c as m,g as r,w as l,a5 as p,X as f,f as h,a6 as k,E as x,k as g}from"./entry.uIHGwm26.js";const v=["id"],C=i({__name:"ProseH4",props:{id:{}},setup(I){const{prose:n}=u(),c=t(()=>{var e,o;return((e=n==null?void 0:n.h4)==null?void 0:e.icon)&&((o=n==null?void 0:n.headings)==null?void 0:o.icon)}),s=t(()=>{var e,o;return((e=n==null?void 0:n.h4)==null?void 0:e.icon)||((o=n==null?void 0:n.headings)==null?void 0:o.icon)});return(e,o)=>{const _=k,d=x;return a(),m("h4",{id:e.id},[r(d,{href:`#${e.id}`},{default:l(()=>[p(e.$slots,"default",{},void 0,!0),c.value?(a(),f(_,{key:0,name:s.value},null,8,["name"])):h("",!0)]),_:3},8,["href"])],8,v)}}}),B=g(C,[["__scopeId","data-v-63d8e3a3"]]);export{B as default}; diff --git a/_nuxt/ProseH5.AlWveEHe.js b/_nuxt/ProseH5.AlWveEHe.js new file mode 100644 index 000000000..868d5f43c --- /dev/null +++ b/_nuxt/ProseH5.AlWveEHe.js @@ -0,0 +1 @@ +import{d as i,x as u,I as t,b as a,c as m,g as r,w as l,a5 as f,X as h,f as p,a6 as k,E as x,k as g}from"./entry.uIHGwm26.js";const v=["id"],C=i({__name:"ProseH5",props:{id:{}},setup(I){const{prose:e}=u(),c=t(()=>{var n,o;return((n=e==null?void 0:e.h5)==null?void 0:n.icon)&&((o=e==null?void 0:e.headings)==null?void 0:o.icon)}),s=t(()=>{var n,o;return((n=e==null?void 0:e.h5)==null?void 0:n.icon)||((o=e==null?void 0:e.headings)==null?void 0:o.icon)});return(n,o)=>{const _=k,d=x;return a(),m("h5",{id:n.id},[r(d,{href:`#${n.id}`},{default:l(()=>[f(n.$slots,"default",{},void 0,!0),c.value?(a(),h(_,{key:0,name:s.value},null,8,["name"])):p("",!0)]),_:3},8,["href"])],8,v)}}}),N=g(C,[["__scopeId","data-v-3648e37e"]]);export{N as default}; diff --git a/_nuxt/ProseH5.R8A-Te7D.css b/_nuxt/ProseH5.R8A-Te7D.css new file mode 100644 index 000000000..ba49d9f8c --- /dev/null +++ b/_nuxt/ProseH5.R8A-Te7D.css @@ -0,0 +1 @@ +h5[data-v-3648e37e]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h5-fontSize);font-weight:var(--prose-h5-fontWeight);line-height:var(--prose-h5-lineHeight);margin:var(--prose-h5-margin)}h5[data-v-3648e37e] .icon{display:inline-block;height:var(--prose-h5-iconSize);margin-inline-start:8px;opacity:0;transition:opacity .1s;width:var(--prose-h5-iconSize)}h5 a[data-v-3648e37e]:hover .icon{opacity:1} diff --git a/_nuxt/ProseH6.-bYyeRxA.js b/_nuxt/ProseH6.-bYyeRxA.js new file mode 100644 index 000000000..10263795a --- /dev/null +++ b/_nuxt/ProseH6.-bYyeRxA.js @@ -0,0 +1 @@ +import{d as i,x as u,I as t,b as a,c as m,g as r,w as l,a5 as f,X as h,f as p,a6 as k,E as x,k as g}from"./entry.uIHGwm26.js";const v=["id"],C=i({__name:"ProseH6",props:{id:{}},setup(I){const{prose:e}=u(),c=t(()=>{var n,o;return((n=e==null?void 0:e.h6)==null?void 0:n.icon)&&((o=e==null?void 0:e.headings)==null?void 0:o.icon)}),s=t(()=>{var n,o;return((n=e==null?void 0:e.h6)==null?void 0:n.icon)||((o=e==null?void 0:e.headings)==null?void 0:o.icon)});return(n,o)=>{const _=k,d=x;return a(),m("h6",{id:n.id},[r(d,{href:`#${n.id}`},{default:l(()=>[f(n.$slots,"default",{},void 0,!0),c.value?(a(),h(_,{key:0,name:s.value},null,8,["name"])):p("",!0)]),_:3},8,["href"])],8,v)}}}),N=g(C,[["__scopeId","data-v-1529f268"]]);export{N as default}; diff --git a/_nuxt/ProseH6.wJBcC_hn.css b/_nuxt/ProseH6.wJBcC_hn.css new file mode 100644 index 000000000..878441256 --- /dev/null +++ b/_nuxt/ProseH6.wJBcC_hn.css @@ -0,0 +1 @@ +h6[data-v-1529f268]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h6-fontSize);font-weight:var(--prose-h6-fontWeight);line-height:var(--prose-h6-lineHeight);margin:var(--prose-h6-margin)}h6[data-v-1529f268] .icon{display:inline-block;height:var(--prose-h6-iconSize);margin-inline-start:8px;opacity:0;transition:opacity .1s;width:var(--prose-h6-iconSize)}h6 a[data-v-1529f268]:hover .icon{opacity:1} diff --git a/_nuxt/ProseHr.K5Vj6GYP.js b/_nuxt/ProseHr.K5Vj6GYP.js new file mode 100644 index 000000000..edb835b26 --- /dev/null +++ b/_nuxt/ProseHr.K5Vj6GYP.js @@ -0,0 +1 @@ +import{k as e,b as c,c as r}from"./entry.uIHGwm26.js";const o={};function t(a,s){return c(),r("hr")}const _=e(o,[["render",t],["__scopeId","data-v-422faec0"]]);export{_ as default}; diff --git a/_nuxt/ProseHr.Tvvhc6x9.css b/_nuxt/ProseHr.Tvvhc6x9.css new file mode 100644 index 000000000..72e93825c --- /dev/null +++ b/_nuxt/ProseHr.Tvvhc6x9.css @@ -0,0 +1 @@ +hr[data-v-422faec0]{border-top:var(--prose-hr-width) var(--prose-hr-style) var(--prose-hr-color);margin:var(--prose-hr-margin)} diff --git a/_nuxt/ProseImg.0JcGsKBo.css b/_nuxt/ProseImg.0JcGsKBo.css new file mode 100644 index 000000000..448c714a4 --- /dev/null +++ b/_nuxt/ProseImg.0JcGsKBo.css @@ -0,0 +1 @@ +img[data-v-1bcf4223]{margin:var(--prose-img-margin)} diff --git a/_nuxt/ProseImg.I0RBlcUV.js b/_nuxt/ProseImg.I0RBlcUV.js new file mode 100644 index 000000000..e8822bdf9 --- /dev/null +++ b/_nuxt/ProseImg.I0RBlcUV.js @@ -0,0 +1 @@ +import{d as a,I as i,ap as n,l as c,b as o,c as d,O as h,M as u,k as l}from"./entry.uIHGwm26.js";const f=["src","alt","width","height"],m=a({__name:"ProseImg",props:{src:{type:String,default:""},alt:{type:String,default:""},width:{type:[String,Number],default:void 0},height:{type:[String,Number],default:void 0}},setup(t){const e=t,r=i(()=>{var s;return(s=e.src)!=null&&s.startsWith("/")&&!e.src.startsWith("//")?n(e.src,c().app.baseURL):e.src});return(s,p)=>(o(),d("img",h(s.$attrs,{src:u(r),alt:t.alt,width:t.width,height:t.height}),null,16,f))}}),b=l(m,[["__scopeId","data-v-1bcf4223"]]);export{b as default}; diff --git a/_nuxt/ProseLi.IujKas3c.css b/_nuxt/ProseLi.IujKas3c.css new file mode 100644 index 000000000..cfcf0e78c --- /dev/null +++ b/_nuxt/ProseLi.IujKas3c.css @@ -0,0 +1 @@ +li[data-v-a0f72836]{font-family:var(--typography-font-body);list-style-position:var(--prose-li-listStylePosition);margin:var(--prose-li-margin)} diff --git a/_nuxt/ProseLi.OMtdwuSm.js b/_nuxt/ProseLi.OMtdwuSm.js new file mode 100644 index 000000000..47744e542 --- /dev/null +++ b/_nuxt/ProseLi.OMtdwuSm.js @@ -0,0 +1 @@ +import{k as r,b as t,c as a,a5 as n}from"./entry.uIHGwm26.js";const o={};function s(e,c){return t(),a("li",null,[n(e.$slots,"default",{},void 0,!0)])}const d=r(o,[["render",s],["__scopeId","data-v-a0f72836"]]);export{d as default}; diff --git a/_nuxt/ProseOl.1anPfVba.js b/_nuxt/ProseOl.1anPfVba.js new file mode 100644 index 000000000..1b8003c56 --- /dev/null +++ b/_nuxt/ProseOl.1anPfVba.js @@ -0,0 +1 @@ +import{k as o,b as r,c as t,a5 as n}from"./entry.uIHGwm26.js";const s={};function a(e,c){return r(),t("ol",null,[n(e.$slots,"default",{},void 0,!0)])}const d=o(s,[["render",a],["__scopeId","data-v-908be187"]]);export{d as default}; diff --git a/_nuxt/ProseOl.2lqLbkZc.css b/_nuxt/ProseOl.2lqLbkZc.css new file mode 100644 index 000000000..48e0960c9 --- /dev/null +++ b/_nuxt/ProseOl.2lqLbkZc.css @@ -0,0 +1 @@ +ol[data-v-908be187]{font-family:var(--typography-font-body);list-style-type:var(--prose-ol-listStyleType);margin:var(--prose-ol-margin);padding-inline-start:var(--prose-ol-paddingInlineStart)}ol[data-v-908be187]>li::marker{color:var(--prose-ol-li-markerColor)}ol[data-v-908be187]>li ol,ol[data-v-908be187]>li ul{margin:0} diff --git a/_nuxt/ProseP.cLR3X3GK.js b/_nuxt/ProseP.cLR3X3GK.js new file mode 100644 index 000000000..9e3816a79 --- /dev/null +++ b/_nuxt/ProseP.cLR3X3GK.js @@ -0,0 +1 @@ +import{k as n,b as t,c as o,a5 as c}from"./entry.uIHGwm26.js";const r={};function a(e,s){return t(),o("p",null,[c(e.$slots,"default",{},void 0,!0)])}const d=n(r,[["render",a],["__scopeId","data-v-b44bf07e"]]);export{d as default}; diff --git a/_nuxt/ProseP.hibu3w-W.css b/_nuxt/ProseP.hibu3w-W.css new file mode 100644 index 000000000..bb5e91302 --- /dev/null +++ b/_nuxt/ProseP.hibu3w-W.css @@ -0,0 +1 @@ +p[data-v-b44bf07e]{font-family:var(--typography-font-body);font-size:var(--prose-p-fontSize);line-height:var(--prose-p-lineHeight);margin:var(--prose-p-margin)}p[data-v-b44bf07e] br{content:"";display:block;margin:var(--prose-p-br-margin)} diff --git a/_nuxt/ProsePre.nIRUQbb-.css b/_nuxt/ProsePre.nIRUQbb-.css new file mode 100644 index 000000000..56626668b --- /dev/null +++ b/_nuxt/ProsePre.nIRUQbb-.css @@ -0,0 +1 @@ +pre code .line{display:block;min-height:1rem} diff --git a/_nuxt/ProsePre.qvj6veFU.js b/_nuxt/ProsePre.qvj6veFU.js new file mode 100644 index 000000000..6c1778e7a --- /dev/null +++ b/_nuxt/ProsePre.qvj6veFU.js @@ -0,0 +1 @@ +import l from"./ProseCode.IEFN8-CC.js";import{d as n,b as s,X as i,w as o,e as r,n as u,a2 as g,a5 as d}from"./entry.uIHGwm26.js";const h=n({__name:"ProsePre",props:{code:{type:String,default:""},language:{type:String,default:null},filename:{type:String,default:null},highlights:{type:Array,default:()=>[]},meta:{type:String,default:null},class:{type:String,default:null},style:{type:[String,Object],default:null}},setup(e){return(t,m)=>{const a=l;return s(),i(a,{code:e.code,language:e.language,filename:e.filename,highlights:e.highlights,meta:e.meta},{default:o(()=>[r("pre",{class:u(t.$props.class),style:g(e.style)},[d(t.$slots,"default")],6)]),_:3},8,["code","language","filename","highlights","meta"])}}});export{h as default}; diff --git a/_nuxt/ProseScript.-a01z7pT.js b/_nuxt/ProseScript.-a01z7pT.js new file mode 100644 index 000000000..0c5ac38ea --- /dev/null +++ b/_nuxt/ProseScript.-a01z7pT.js @@ -0,0 +1 @@ +import{d as s,I as n,b as r,c as a,D as e,f as c,e as t}from"./entry.uIHGwm26.js";const d={key:0},i=t("code",null,"script",-1),l=t("code",null,"ProseScript",-1),f=s({__name:"ProseScript",props:{src:{type:String,default:""}},setup(p){const o=n(()=>!1);return(_,m)=>o.value?(r(),a("div",d,[e(" Rendering the "),i,e(" element is dangerous and is disabled by default. Consider implementing your own "),l,e(" element to have control over script rendering. ")])):c("",!0)}});export{f as default}; diff --git a/_nuxt/ProseStrong.-KymXpFz.css b/_nuxt/ProseStrong.-KymXpFz.css new file mode 100644 index 000000000..0dd071a54 --- /dev/null +++ b/_nuxt/ProseStrong.-KymXpFz.css @@ -0,0 +1 @@ +strong[data-v-16019da6]{font-family:var(--typography-font-body);font-weight:var(--prose-strong-fontWeight)} diff --git a/_nuxt/ProseStrong.WA8kRZ0C.js b/_nuxt/ProseStrong.WA8kRZ0C.js new file mode 100644 index 000000000..19e1a3a0e --- /dev/null +++ b/_nuxt/ProseStrong.WA8kRZ0C.js @@ -0,0 +1 @@ +import{k as r,b as t,c as n,a5 as o}from"./entry.uIHGwm26.js";const s={};function a(e,c){return t(),n("strong",null,[o(e.$slots,"default",{},void 0,!0)])}const l=r(s,[["render",a],["__scopeId","data-v-16019da6"]]);export{l as default}; diff --git a/_nuxt/ProseTable.BQRSA75O.css b/_nuxt/ProseTable.BQRSA75O.css new file mode 100644 index 000000000..e73e63a1d --- /dev/null +++ b/_nuxt/ProseTable.BQRSA75O.css @@ -0,0 +1 @@ +.table-wrapper[data-v-e9122fed]{margin:var(--prose-table-margin);max-width:100%;overflow-x:auto}table[data-v-e9122fed]{font-family:var(--typography-font-body);font-size:var(--prose-table-fontSize);line-height:var(--prose-table-lineHeight);table-layout:auto;text-align:var(--prose-table-textAlign);width:100%}table[data-v-e9122fed] code{white-space:nowrap} diff --git a/_nuxt/ProseTable.yEu4BAQd.js b/_nuxt/ProseTable.yEu4BAQd.js new file mode 100644 index 000000000..c2243c735 --- /dev/null +++ b/_nuxt/ProseTable.yEu4BAQd.js @@ -0,0 +1 @@ +import{k as t,b as a,c as s,e as n,a5 as o}from"./entry.uIHGwm26.js";const c={},r={class:"table-wrapper"};function _(e,d){return a(),s("div",r,[n("table",null,[o(e.$slots,"default",{},void 0,!0)])])}const f=t(c,[["render",_],["__scopeId","data-v-e9122fed"]]);export{f as default}; diff --git a/_nuxt/ProseTbody.BrO4vgr2.js b/_nuxt/ProseTbody.BrO4vgr2.js new file mode 100644 index 000000000..879f731e4 --- /dev/null +++ b/_nuxt/ProseTbody.BrO4vgr2.js @@ -0,0 +1 @@ +import{k as t,b as n,c as o,a5 as c}from"./entry.uIHGwm26.js";const r={};function s(e,a){return n(),o("tbody",null,[c(e.$slots,"default")])}const l=t(r,[["render",s]]);export{l as default}; diff --git a/_nuxt/ProseTd.Ex0GYgEm.js b/_nuxt/ProseTd.Ex0GYgEm.js new file mode 100644 index 000000000..7d9cad54d --- /dev/null +++ b/_nuxt/ProseTd.Ex0GYgEm.js @@ -0,0 +1 @@ +import{k as t,b as n,c as o,a5 as a}from"./entry.uIHGwm26.js";const c={};function r(e,s){return n(),o("td",null,[a(e.$slots,"default",{},void 0,!0)])}const d=t(c,[["render",r],["__scopeId","data-v-82a2f2d1"]]);export{d as default}; diff --git a/_nuxt/ProseTd.VC01GbWi.css b/_nuxt/ProseTd.VC01GbWi.css new file mode 100644 index 000000000..e5194ba7a --- /dev/null +++ b/_nuxt/ProseTd.VC01GbWi.css @@ -0,0 +1 @@ +tbody td[data-v-82a2f2d1]{font-family:var(--typography-font-body);padding:var(--prose-tbody-td-padding)}tbody td[data-v-82a2f2d1]:first-child{padding-inline-start:0}tbody td[data-v-82a2f2d1]:last-child{padding-inline-end:0} diff --git a/_nuxt/ProseTh.erSO7NHs.js b/_nuxt/ProseTh.erSO7NHs.js new file mode 100644 index 000000000..47b6fbab3 --- /dev/null +++ b/_nuxt/ProseTh.erSO7NHs.js @@ -0,0 +1 @@ +import{k as t,b as n,c as a,a5 as o}from"./entry.uIHGwm26.js";const c={};function r(e,s){return n(),a("th",null,[o(e.$slots,"default",{},void 0,!0)])}const d=t(c,[["render",r],["__scopeId","data-v-ad96a338"]]);export{d as default}; diff --git a/_nuxt/ProseTh.rlCefe3r.css b/_nuxt/ProseTh.rlCefe3r.css new file mode 100644 index 000000000..32b957148 --- /dev/null +++ b/_nuxt/ProseTh.rlCefe3r.css @@ -0,0 +1 @@ +th[data-v-ad96a338]{color:var(--prose-th-color);font-family:var(--typography-font-display);font-weight:var(--prose-th-fontWeight);padding:var(--prose-th-padding);text-align:var(--prose-th-textAlign)}th[data-v-ad96a338]:first-child{padding-inline-start:0}th[data-v-ad96a338]:last-child{padding-inline-end:0} diff --git a/_nuxt/ProseThead.XzVN2nn5.css b/_nuxt/ProseThead.XzVN2nn5.css new file mode 100644 index 000000000..c9cddac71 --- /dev/null +++ b/_nuxt/ProseThead.XzVN2nn5.css @@ -0,0 +1 @@ +thead[data-v-2621c1cb]{border-color:var(--prose-thead-border-color);border-style:var(--prose-thead-border-style);border-width:var(--prose-thead-border-width);border-bottom:var(--prose-thead-borderBottom-width);border-bottom-color:var(--prose-thead-borderBottom-color);border-bottom-style:var(--prose-thead-borderBottom-style);font-family:var(--typography-font-display)} diff --git a/_nuxt/ProseThead.lvISFRJw.js b/_nuxt/ProseThead.lvISFRJw.js new file mode 100644 index 000000000..8e22baf35 --- /dev/null +++ b/_nuxt/ProseThead.lvISFRJw.js @@ -0,0 +1 @@ +import{k as t,b as n,c,a5 as o}from"./entry.uIHGwm26.js";const a={};function r(e,s){return n(),c("thead",null,[o(e.$slots,"default",{},void 0,!0)])}const d=t(a,[["render",r],["__scopeId","data-v-2621c1cb"]]);export{d as default}; diff --git a/_nuxt/ProseTr.gg5vYHkS.css b/_nuxt/ProseTr.gg5vYHkS.css new file mode 100644 index 000000000..efab451e7 --- /dev/null +++ b/_nuxt/ProseTr.gg5vYHkS.css @@ -0,0 +1 @@ +tbody tr[data-v-5f056677]{border-bottom:var(--prose-tbody-tr-borderBottom-width) var(--prose-tbody-tr-borderBottom-style) var(--prose-tbody-tr-borderBottom-color)} diff --git a/_nuxt/ProseTr.ltHBB1I0.js b/_nuxt/ProseTr.ltHBB1I0.js new file mode 100644 index 000000000..789a068ec --- /dev/null +++ b/_nuxt/ProseTr.ltHBB1I0.js @@ -0,0 +1 @@ +import{k as t,b as n,c as o,a5 as r}from"./entry.uIHGwm26.js";const c={};function a(e,s){return n(),o("tr",null,[r(e.$slots,"default",{},void 0,!0)])}const d=t(c,[["render",a],["__scopeId","data-v-5f056677"]]);export{d as default}; diff --git a/_nuxt/ProseUl.oWedjes3.css b/_nuxt/ProseUl.oWedjes3.css new file mode 100644 index 000000000..126e9c43d --- /dev/null +++ b/_nuxt/ProseUl.oWedjes3.css @@ -0,0 +1 @@ +ul[data-v-7fe5e2e4]{font-family:var(--typography-font-body);list-style-type:var(--prose-ul-listStyleType);margin:var(--prose-ul-margin);padding-inline-start:var(--prose-ul-paddingInlineStart)}ul[data-v-7fe5e2e4]>li::marker{color:var(--prose-ul-li-markerColor)}ul[data-v-7fe5e2e4]>li ol,ul[data-v-7fe5e2e4]>li ul{margin:0} diff --git a/_nuxt/ProseUl.p-UuMORz.js b/_nuxt/ProseUl.p-UuMORz.js new file mode 100644 index 000000000..fa8a5b4e6 --- /dev/null +++ b/_nuxt/ProseUl.p-UuMORz.js @@ -0,0 +1 @@ +import{k as r,b as t,c as n,a5 as o}from"./entry.uIHGwm26.js";const s={};function a(e,c){return t(),n("ul",null,[o(e.$slots,"default",{},void 0,!0)])}const d=r(s,[["render",a],["__scopeId","data-v-7fe5e2e4"]]);export{d as default}; diff --git a/_nuxt/Sandbox.6TlAS_L3.css b/_nuxt/Sandbox.6TlAS_L3.css new file mode 100644 index 000000000..0ebaffac3 --- /dev/null +++ b/_nuxt/Sandbox.6TlAS_L3.css @@ -0,0 +1 @@ +.sandbox[data-v-b1a1a8b7]{--sandbox-height:700px;background:var(--elements-surface-background-base);border:1px solid var(--elements-border-secondary-static);border-radius:var(--radii-md);font-size:var(--text-3xl-fontSize);height:700px;height:var(--sandbox-height);line-height:var(--text-3xl-lineHeight)}.sandbox[data-v-b1a1a8b7],.sandbox iframe[data-v-b1a1a8b7]{overflow:hidden;width:100%}.sandbox iframe[data-v-b1a1a8b7]{height:100%} diff --git a/_nuxt/Sandbox.PDD7OVAs.js b/_nuxt/Sandbox.PDD7OVAs.js new file mode 100644 index 000000000..501872d98 --- /dev/null +++ b/_nuxt/Sandbox.PDD7OVAs.js @@ -0,0 +1 @@ +import v from"./TabsHeader.9cm5rUp8.js";import{d as x,at as h,r as n,o as g,b as r,c as l,X as S,M as c,f as k,k as y}from"./entry.uIHGwm26.js";const $={class:"sandbox"},w=["src"],B={key:2},C=x({__name:"Sandbox",props:{src:{type:String,default:""},repo:{type:String,default:""},branch:{type:String,default:""},dir:{type:String,default:""},file:{type:String,default:"app.vue"}},setup(i){const e=i,b=h(),o={CodeSandBox:()=>`https://codesandbox.io/embed/github/${e.repo}/tree/${e.branch}/${e.dir}?hidenavigation=1&theme=${b.value}`,StackBlitz:()=>`https://stackblitz.com/github/${e.repo}/tree/${e.branch}/${e.dir}?embed=1&file=${e.file}&theme=${b.value}`},p=Object.keys(o).map(t=>({label:t})),d=n(-1),u=n(),s=n(""),a=n(""),m=t=>{a.value=t,s.value=e.src||o[a.value](),localStorage.setItem("docus_sandbox",t)},_=t=>{d.value=t,m(p[t].label)};return g(()=>{a.value=window.localStorage.getItem("docus_sandbox")||"CodeSandBox",s.value=e.src||o[a.value](),d.value=Object.keys(o).indexOf(a.value)}),(t,I)=>{const f=v;return r(),l("div",$,[i.src?k("",!0):(r(),S(f,{key:0,ref_key:"tabs",ref:u,"active-tab-index":c(d),tabs:c(p),"onUpdate:activeTabIndex":_},null,8,["active-tab-index","tabs"])),c(s)?(r(),l("iframe",{key:1,src:c(s),title:"Sandbox editor",sandbox:"allow-modals allow-forms allow-popups allow-scripts allow-same-origin"},null,8,w)):(r(),l("span",B,"Loading Sandbox..."))])}}}),O=y(C,[["__scopeId","data-v-b1a1a8b7"]]);export{O as default}; diff --git a/_nuxt/SourceLink.jsCTPIA_.js b/_nuxt/SourceLink.jsCTPIA_.js new file mode 100644 index 000000000..c83b6a88b --- /dev/null +++ b/_nuxt/SourceLink.jsCTPIA_.js @@ -0,0 +1 @@ +import o from"./ProseP.cLR3X3GK.js";import{d as r,b as t,X as n}from"./entry.uIHGwm26.js";const m=r({__name:"SourceLink",props:{source:{type:String,required:!0}},setup(_){return(c,p)=>{const e=o;return t(),n(e)}}});export{m as default}; diff --git a/_nuxt/TabsHeader.9cm5rUp8.js b/_nuxt/TabsHeader.9cm5rUp8.js new file mode 100644 index 000000000..c526a5e51 --- /dev/null +++ b/_nuxt/TabsHeader.9cm5rUp8.js @@ -0,0 +1 @@ +import{d as b,r as l,ac as v,b as a,c as s,F as g,Z as x,e as u,f as k,a5 as y,n as I,t as T,p as S,i as C,Q as $,k as w}from"./entry.uIHGwm26.js";const B=t=>(S("data-v-d44b4e46"),t=t(),C(),t),N={class:"tabs-header"},U=["onClick"],q=B(()=>u("span",{class:"tab"},null,-1)),F=[q],H=b({__name:"TabsHeader",props:{tabs:{type:Array,required:!0},activeTabIndex:{type:Number,required:!0}},emits:["update:activeTabIndex"],setup(t,{emit:p}){const h=t,f=p,n=l(),i=l(),o=e=>{e&&(i.value.style.insetInlineStart=`${e.offsetLeft}px`,i.value.style.width=`${e.clientWidth}px`)},m=(e,c)=>{f("update:activeTabIndex",c),$(()=>o(e.target))};return v(n,e=>{e&&setTimeout(()=>{o(n.value.children[h.activeTabIndex])},50)},{immediate:!0}),(e,c)=>(a(),s("div",N,[t.tabs?(a(),s("div",{key:0,ref_key:"tabsRef",ref:n,class:"tabs"},[(a(!0),s(g,null,x(t.tabs,({label:d},r)=>(a(),s("button",{key:`${r}${d}`,class:I([t.activeTabIndex===r?"active":"not-active"]),onClick:_=>m(_,r)},T(d),11,U))),128)),u("span",{ref_key:"highlightUnderline",ref:i,class:"highlight-underline"},F,512)],512)):k("",!0),y(e.$slots,"footer",{},void 0,!0)]))}}),R=w(H,[["__scopeId","data-v-d44b4e46"]]);export{R as default}; diff --git a/_nuxt/TabsHeader.KtTkEEaQ.css b/_nuxt/TabsHeader.KtTkEEaQ.css new file mode 100644 index 000000000..f820c9ca9 --- /dev/null +++ b/_nuxt/TabsHeader.KtTkEEaQ.css @@ -0,0 +1 @@ +.tabs-header[data-v-d44b4e46]{background:var(--color-gray-200);color:var(--color-red-700);position:relative}:root.dark .tabs-header[data-v-d44b4e46]{background:var(--color-gray-800);color:var(--color-red-500)}.tabs-header .tabs[data-v-d44b4e46]{display:flex;overflow-x:auto;padding-left:var(--space-2);padding-right:var(--space-2);position:relative;z-index:0}.tabs-header .tabs button[data-v-d44b4e46]{font-family:var(--font-mono);font-size:var(--text-sm-fontSize);letter-spacing:var(--letterSpacing-tight);line-height:var(--text-sm-lineHeight);padding:var(--space-rem-625) var(--space-4);position:relative;transition:color .1s,background .1s;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tabs-header .tabs button.not-active[data-v-d44b4e46]{color:var(--color-gray-700)}.tabs-header .tabs button.not-active[data-v-d44b4e46]:hover{background:var(--color-gray-300);color:var(--color-gray-800)}:root.dark .tabs-header .tabs button.not-active[data-v-d44b4e46]{color:var(--color-gray-200)}:root.dark .tabs-header .tabs button.not-active[data-v-d44b4e46]:hover{background:var(--color-gray-700);color:var(--color-gray-200)}.tabs-header .tabs button.active[data-v-d44b4e46]{color:var(--color-gray-500)}:root.dark .tabs-header .tabs button.active[data-v-d44b4e46]{color:var(--color-gray-300)}.tabs-header .tabs .highlight-underline[data-v-d44b4e46]{height:100%;position:absolute;top:0;transition:inset-inline-start .15s,width .15s;z-index:-1}.tabs-header .tabs .highlight-underline .tab[data-v-d44b4e46]{background-color:var(--color-gray-100);display:flex;height:100%;width:100%}:root.dark .tabs-header .tabs .highlight-underline .tab[data-v-d44b4e46]{background-color:var(--color-gray-900)} diff --git a/_nuxt/Terminal.SaLvH6UD.css b/_nuxt/Terminal.SaLvH6UD.css new file mode 100644 index 000000000..458186685 --- /dev/null +++ b/_nuxt/Terminal.SaLvH6UD.css @@ -0,0 +1 @@ +.terminal[data-v-d24f358f]{background:var(--elements-surface-background-base);border:1px solid var(--elements-border-secondary-static);border-radius:var(--radii-lg);cursor:pointer;display:flex;flex-direction:column;height:var(--space-64);margin-left:auto;margin-right:auto;max-width:var(--space-128);overflow:hidden;position:relative;width:100%}.terminal .copied[data-v-d24f358f]{align-items:center;display:flex;justify-content:center;z-index:10}.terminal .copied[data-v-d24f358f],.terminal .copied .scrim[data-v-d24f358f]{height:100%;inset-inline-start:0;position:absolute;top:0;width:100%}.terminal .copied .scrim[data-v-d24f358f]{background:var(--color-gray-500);opacity:.75}:root.dark .terminal .copied .scrim[data-v-d24f358f]{background:var(--color-gray-900)}.terminal .copied .content[data-v-d24f358f]{color:var(--color-gray-100);font-size:var(--fontSize-lg);font-weight:var(--fontWeight-semibold);z-index:10}.terminal .header[data-v-d24f358f]{align-items:center;border-bottom:1px solid var(--elements-border-secondary-static);display:flex;height:var(--space-12);position:relative;width:100%}.terminal .header .controls[data-v-d24f358f]{display:flex;margin-inline-start:var(--space-4)}.terminal .header .controls div[data-v-d24f358f]:first-child{background:var(--color-red-400);border-radius:var(--radii-full);height:var(--space-3);width:var(--space-3)}.terminal .header .controls div[data-v-d24f358f]:nth-child(2){background:var(--color-yellow-400)}.terminal .header .controls div[data-v-d24f358f]:nth-child(2),.terminal .header .controls div[data-v-d24f358f]:nth-child(3){border-radius:var(--radii-full);height:var(--space-3);margin-inline-start:var(--space-2);width:var(--space-3)}.terminal .header .controls div[data-v-d24f358f]:nth-child(3){background:var(--color-green-400)}.terminal .header .title[data-v-d24f358f]{align-items:center;display:flex;font-family:var(--font-mono);font-weight:var(--fontWeight-semibold);height:100%;inset-inline-start:0;justify-content:center;position:absolute;top:0;width:100%}.terminal .window[data-v-d24f358f]{display:flex;flex:1 1 0%;flex-direction:column;font-family:var(--font-mono);font-size:var(--text-sm-fontSize);padding:var(--space-4)}.terminal .window .line[data-v-d24f358f]{display:flex;margin-bottom:var(--space-1)}.terminal .window .sign[data-v-d24f358f]{display:inline-block;font-weight:var(--fontWeight-bold);margin-inline-end:var(--space-2);-webkit-user-select:none;-moz-user-select:none;user-select:none}.terminal .window .content[data-v-d24f358f]{display:inline-block}.terminal .prompt[data-v-d24f358f]{font-weight:var(--fontWeight-semibold);opacity:0;padding-bottom:var(--space-2);padding-top:var(--space-2);text-align:center}.terminal:hover .prompt[data-v-d24f358f]{opacity:1} diff --git a/_nuxt/Terminal.VDcXMABj.js b/_nuxt/Terminal.VDcXMABj.js new file mode 100644 index 000000000..74674e130 --- /dev/null +++ b/_nuxt/Terminal.VDcXMABj.js @@ -0,0 +1,2 @@ +import{u as m}from"./index.ocM43EYf.js";import{d as v,r as h,I as f,b as e,c as o,M as i,f as p,e as t,F as y,Z as k,p as C,i as g,t as I,k as S}from"./entry.uIHGwm26.js";const n=s=>(C("data-v-d24f358f"),s=s(),g(),s),b={key:0,class:"copied"},w=n(()=>t("div",{class:"scrim"},null,-1)),x=n(()=>t("div",{class:"content"}," Copied! ",-1)),B=[w,x],T=n(()=>t("div",{class:"header"},[t("div",{class:"controls"},[t("div"),t("div"),t("div")]),t("div",{class:"title"}," Bash ")],-1)),F={class:"window"},N=n(()=>t("span",{class:"sign"},"$",-1)),V={class:"content"},j={key:1,class:"prompt"},q=v({__name:"Terminal",props:{content:{type:[Array,String],required:!0}},setup(s){const a=s,{copy:l}=m(),c=h("init"),d=f(()=>typeof a.content=="string"?[a.content]:a.content),_=u=>{l(d.value.join(` +`)).then(()=>{c.value="copied",setTimeout(()=>{c.value="init"},1e3)}).catch(()=>{console.warn("Couldn't copy to clipboard!")})};return(u,A)=>(e(),o("div",{class:"terminal",onClick:_},[i(c)==="copied"?(e(),o("div",b,B)):p("",!0),T,t("div",F,[(e(!0),o(y,null,k(i(d),r=>(e(),o("span",{key:r,class:"line"},[N,t("span",V,I(r),1)]))),128))]),i(c)!=="copied"?(e(),o("div",j," Click to copy ")):p("",!0)]))}}),L=S(q,[["__scopeId","data-v-d24f358f"]]);export{L as default}; diff --git a/_nuxt/TokensPlayground.mjyG4EuF.js b/_nuxt/TokensPlayground.mjyG4EuF.js new file mode 100644 index 000000000..35cf462d5 --- /dev/null +++ b/_nuxt/TokensPlayground.mjyG4EuF.js @@ -0,0 +1 @@ +import{d as n,av as a,b as s,c as t,e as o,t as r,M as c}from"./entry.uIHGwm26.js";const m=n({__name:"TokensPlayground",setup(l){const{theme:e}=a();return(u,i)=>(s(),t("div",null,[o("pre",null,r(JSON.stringify(c(e),null,2)),1)]))}});export{m as default}; diff --git a/_nuxt/VideoPlayer.ND7TcxYT.css b/_nuxt/VideoPlayer.ND7TcxYT.css new file mode 100644 index 000000000..e8687d59f --- /dev/null +++ b/_nuxt/VideoPlayer.ND7TcxYT.css @@ -0,0 +1 @@ +.video-player[data-v-4cfef1c2]{background:var(--color-gray-900);border-radius:var(--radii-lg);display:inline-block;margin-bottom:var(--space-8);margin-top:var(--space-8);overflow:hidden;position:relative}.video-player .loaded[data-v-4cfef1c2]{height:100%;inset-inline-start:0;position:absolute;top:0;width:100%}.video-player video[data-v-4cfef1c2]{width:100%}.video-player iframe[data-v-4cfef1c2]{height:100%;width:100%}.video-player .play-button[data-v-4cfef1c2]{cursor:pointer;height:100%;inset-inline-start:0;position:absolute;top:0;width:100%}.video-player .play-button button[data-v-4cfef1c2]{background-color:transparent;background-image:url('data:image/svg+xml;utf8,');background-position:50%;background-repeat:no-repeat;filter:grayscale(100%);height:var(--space-24);inset-inline-start:50%;position:absolute;top:50%;transform:translate3d(-50%,-50%,0);transition:filter .1s cubic-bezier(0,0,.2,1);width:var(--space-24);z-index:1}.video-player .play-button:hover button[data-v-4cfef1c2]{filter:none} diff --git a/_nuxt/VideoPlayer.tYPt4bfC.js b/_nuxt/VideoPlayer.tYPt4bfC.js new file mode 100644 index 000000000..5aa1e778b --- /dev/null +++ b/_nuxt/VideoPlayer.tYPt4bfC.js @@ -0,0 +1 @@ +import{d as f,I as i,r as m,b as o,c,M as e,X as _,f as u,F as h,Z as k,n as v,a1 as w,p as b,i as g,e as I,k as x}from"./entry.uIHGwm26.js";const B=t=>(b("data-v-4cfef1c2"),t=t(),g(),t),S={key:1,class:"loaded"},C=["poster"],V=["src"],$=["src","type"],N=["autoplay","src"],E=B(()=>I("button",null,null,-1)),F=[E],P=f({__name:"VideoPlayer",props:{poster:{type:String,default:""},src:{type:String,default:""},sources:{type:Array,default:()=>[]},autoplay:{type:Boolean,default:!1}},setup(t){const r=t,a=i(()=>{if(r.src&&r.src.includes("youtube.com/watch")){const s=r.src.match(/\?v=([^&]*)/);return{name:"youtube",src:`https://www.youtube-nocookie.com/embed/${(s==null?void 0:s[1])||""}?autoplay=1`,poster:r.poster||`https://i3.ytimg.com/vi/${(s==null?void 0:s[1])||""}/hqdefault.jpg`}}}),p=m(!1);if(!r.src&&!r.sources.length)throw new Error("VideoPlayer: you need to provide either `src` or `sources` props");const d=i(()=>{var s,l;return r.src||((l=(s=r.sources)==null?void 0:s[0])==null?void 0:l.src)||!1});return(s,l)=>{const y=w;return o(),c("div",{class:v(["video-player",{loaded:e(p)}])},[(e(a)?e(a).poster:t.poster)?(o(),_(y,{key:0,src:e(a)?e(a).poster:t.poster},null,8,["src"])):u("",!0),e(p)?(o(),c("div",S,[e(a)?e(a).name==="youtube"?(o(),c("iframe",{key:1,allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:"true",autoplay:t.autoplay,src:e(a).src},null,8,N)):u("",!0):(o(),c("video",{key:0,poster:t.poster,controls:"",autoplay:""},[e(d)?(o(),c("source",{key:0,src:e(d)},null,8,V)):u("",!0),(o(!0),c(h,null,k(t.sources,n=>(o(),c("source",{key:n.src||n,src:n.src||n,type:n.type},null,8,$))),128))],8,C))])):u("",!0),e(p)?u("",!0):(o(),c("div",{key:2,class:"play-button",onClick:l[0]||(l[0]=n=>p.value=!0)},F))],2)}}}),q=x(P,[["__scopeId","data-v-4cfef1c2"]]);export{q as default}; diff --git a/_nuxt/VoltaBoard._Ti1fhn8.css b/_nuxt/VoltaBoard._Ti1fhn8.css new file mode 100644 index 000000000..4c7542870 --- /dev/null +++ b/_nuxt/VoltaBoard._Ti1fhn8.css @@ -0,0 +1 @@ +iframe{background-color:var(--elements-state-primary-backgroundColor-primary)!important;border-color:var(--elements-state-primary-borderColor-primary)!important;border-radius:var(--radii-md);color:var(--elements-state-primary-color-primary)!important;min-height:66.66667vh;width:var(--size-full)}iframe :deep(p code){background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}iframe :deep(code){background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-primary)!important}iframe :deep(a code){border-color:var(--elements-state-primary-borderColor-primary)!important}iframe :deep(a){border-color:currentColor}iframe :deep(a) code{background-color:var(--elements-state-primary-backgroundColor-primary)!important}iframe :deep(a):hover{border-color:currentColor!important;color:var(--elements-state-primary-color-secondary)!important}iframe :deep(a):hover code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;border-color:var(--elements-state-primary-borderColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important} diff --git a/_nuxt/VoltaBoard.yxPmtuT-.js b/_nuxt/VoltaBoard.yxPmtuT-.js new file mode 100644 index 000000000..47a2b31c1 --- /dev/null +++ b/_nuxt/VoltaBoard.yxPmtuT-.js @@ -0,0 +1 @@ +import{d as s,I as r,b as n,c,M as a}from"./entry.uIHGwm26.js";const p=["src"],d=s({__name:"VoltaBoard",props:{token:{type:String,required:!0}},setup(e){const t=e,o=r(()=>`https://volta.net/embed/${t.token}`);return(l,u)=>(n(),c("iframe",{src:a(o),class:"w-full"},null,8,p))}});export{d as default}; diff --git a/_nuxt/article.5OuagtG6.js b/_nuxt/article.5OuagtG6.js new file mode 100644 index 000000000..650f09112 --- /dev/null +++ b/_nuxt/article.5OuagtG6.js @@ -0,0 +1 @@ +import{d as B,V,s as A,x as D,r as N,C as S,I as E,b as s,c as n,g as c,w as y,M as o,e as _,t as p,f as l,a5 as M,aA as P,E as $,D as j,a6 as H,p as L,i as R,k as q}from"./entry.uIHGwm26.js";import z from"./ProseA.uZkReT9p.js";import{f as F}from"./date.3uOv5BcS.js";const G=a=>(L("data-v-c46ef290"),a=a(),R(),a),J=G(()=>_("span",null," Back ",-1)),K={key:0,class:"title"},O=["datetime"],Q={class:"prose"},U={key:0,class:"back-to-top"},W=B({__name:"article",setup(a){const{page:t}=V(),w=A(),r=D().alpine,u=N(null);if(t.value){const e=[],i=[];t.value.cover&&i.push({property:"og:image",content:t.value.cover}),t.value.canonical&&e.push({rel:"canonical",href:t.value.canonical}),S({meta:i,link:e})}const x=E(()=>{const e=w.path.split("/");return e.pop(),e.join("/")}),C=()=>{var e;(e=u.value)==null||e.scrollIntoView({behavior:"smooth"})};return(e,i)=>{var m,f,h;const d=H,I=$,g=z;return s(),n("article",{ref_key:"article",ref:u},[c(I,{to:o(x),class:"back"},{default:y(()=>[c(d,{name:"ph:arrow-left"}),J]),_:1},8,["to"]),_("header",null,[(m=o(t))!=null&&m.title?(s(),n("h1",K,p(o(t).title),1)):l("",!0),(f=o(t))!=null&&f.date?(s(),n("time",{key:1,datetime:o(t).date},p(("formatDate"in e?e.formatDate:o(F))(o(t).date)),9,O)):l("",!0)]),_("div",Q,[M(e.$slots,"default",{},void 0,!0),(h=o(r))!=null&&h.backToTop?(s(),n("div",U,[c(g,{onClick:P(C,["prevent","stop"])},{default:y(()=>{var k,v,T,b;return[j(p(((v=(k=o(r))==null?void 0:k.backToTop)==null?void 0:v.text)||"Back to top")+" ",1),c(d,{name:((b=(T=o(r))==null?void 0:T.backToTop)==null?void 0:b.icon)||"material-symbols:arrow-upward"},null,8,["name"])]}),_:1})])):l("",!0)])],512)}}}),ee=q(W,[["__scopeId","data-v-c46ef290"]]);export{ee as default}; diff --git a/_nuxt/article.BIVGjHlQ.css b/_nuxt/article.BIVGjHlQ.css new file mode 100644 index 000000000..8f2e9a446 --- /dev/null +++ b/_nuxt/article.BIVGjHlQ.css @@ -0,0 +1 @@ +article[data-v-c46ef290]{margin-left:auto;margin-right:auto;max-width:var(--alpine-readableLine);padding-bottom:var(--space-4);padding-top:var(--space-4)}@media (min-width:640px){article[data-v-c46ef290]{padding-bottom:var(--space-12);padding-top:var(--space-12)}}article .back[data-v-c46ef290]{align-items:center;border-bottom:1px solid var(--elements-border-secondary-static);display:inline-flex;font-size:var(--text-lg-fontSize)}article .back[data-v-c46ef290] svg{height:var(--size-16);margin-right:var(--space-2);width:var(--size-16)}article header[data-v-c46ef290]{margin-bottom:var(--space-12);margin-top:var(--space-16)}article .title[data-v-c46ef290]{font-size:var(--text-5xl-fontSize);font-weight:var(--fontWeight-semibold);line-height:var(--text-5xl-lineHeight);margin-bottom:var(--space-4)}article time[data-v-c46ef290]{color:var(--elements-text-secondary-color-static)}article .prose .back-to-top[data-v-c46ef290]{align-items:center;display:flex;justify-content:flex-end;width:100%}article .prose .back-to-top a[data-v-c46ef290]{cursor:pointer;font-size:var(--text-lg-fontSize)}article .prose[data-v-c46ef290] h1{display:none} diff --git a/_nuxt/asyncData.uJQpiaTt.js b/_nuxt/asyncData.uJQpiaTt.js new file mode 100644 index 000000000..2c7de2cef --- /dev/null +++ b/_nuxt/asyncData.uJQpiaTt.js @@ -0,0 +1 @@ +import{a7 as w,j as D,a8 as x,r as d,a9 as C,aa as b,ab as O,a as m,ac as k,ad as M,ae as B,M as H,af as R}from"./entry.uIHGwm26.js";const E=n=>n==="defer"||n===!1;function A(...n){var h;const l=typeof n[n.length-1]=="string"?n.pop():void 0;typeof n[0]!="string"&&n.unshift(l);let[a,u,e={}]=n;if(typeof a!="string")throw new TypeError("[nuxt] [asyncData] key must be a string.");if(typeof u!="function")throw new TypeError("[nuxt] [asyncData] handler must be a function.");const t=D(),v=()=>null,_=()=>t.isHydrating?t.payload.data[a]:t.static.data[a];e.server=e.server??!0,e.default=e.default??v,e.getCachedData=e.getCachedData??_,e.lazy=e.lazy??!1,e.immediate=e.immediate??!0,e.deep=e.deep??x.deep,e.dedupe=e.dedupe??"cancel";const f=()=>![null,void 0].includes(e.getCachedData(a));if(!t._asyncData[a]||!e.immediate){(h=t.payload._errors)[a]??(h[a]=null);const i=e.deep?d:C;t._asyncData[a]={data:i(e.getCachedData(a)??e.default()),pending:d(!f()),error:b(t.payload._errors,a),status:d("idle")}}const s={...t._asyncData[a]};s.refresh=s.execute=(i={})=>{if(t._asyncDataPromises[a]){if(E(i.dedupe??e.dedupe))return t._asyncDataPromises[a];t._asyncDataPromises[a].cancelled=!0}if((i._initial||t.isHydrating&&i._initial!==!1)&&f())return Promise.resolve(e.getCachedData(a));s.pending.value=!0,s.status.value="pending";const c=new Promise((r,o)=>{try{r(u(t))}catch(P){o(P)}}).then(r=>{if(c.cancelled)return t._asyncDataPromises[a];let o=r;e.transform&&(o=e.transform(r)),e.pick&&(o=j(o,e.pick)),t.payload.data[a]=o,s.data.value=o,s.error.value=null,s.status.value="success"}).catch(r=>{if(c.cancelled)return t._asyncDataPromises[a];s.error.value=B(r),s.data.value=H(e.default()),s.status.value="error"}).finally(()=>{c.cancelled||(s.pending.value=!1,delete t._asyncDataPromises[a])});return t._asyncDataPromises[a]=c,t._asyncDataPromises[a]};const y=()=>s.refresh({_initial:!0}),g=e.server!==!1&&t.payload.serverRendered;{const i=R();if(i&&!i._nuxtOnBeforeMountCbs){i._nuxtOnBeforeMountCbs=[];const r=i._nuxtOnBeforeMountCbs;i&&(O(()=>{r.forEach(o=>{o()}),r.splice(0,r.length)}),m(()=>r.splice(0,r.length)))}g&&t.isHydrating&&(s.error.value||f())?(s.pending.value=!1,s.status.value=s.error.value?"error":"success"):i&&(t.payload.serverRendered&&t.isHydrating||e.lazy)&&e.immediate?i._nuxtOnBeforeMountCbs.push(y):e.immediate&&y(),e.watch&&k(e.watch,()=>s.refresh());const c=t.hook("app:data:refresh",async r=>{(!r||r.includes(a))&&await s.refresh()});i&&m(c)}const p=Promise.resolve(t._asyncDataPromises[a]).then(()=>s);return Object.assign(p,s),p}async function N(n){await new Promise(a=>w(a));const l=n?M(n):void 0;await D().hooks.callHookParallel("app:data:refresh",l)}function j(n,l){const a={};for(const u of l)a[u]=n[u];return a}export{N as r,A as u}; diff --git a/_nuxt/builds/latest.json b/_nuxt/builds/latest.json new file mode 100644 index 000000000..ecf9a1ecf --- /dev/null +++ b/_nuxt/builds/latest.json @@ -0,0 +1 @@ +{"id":"07b30e1f-60f5-47aa-9ba1-9185fd48010c","timestamp":1714687089424} \ No newline at end of file diff --git a/_nuxt/builds/meta/07b30e1f-60f5-47aa-9ba1-9185fd48010c.json b/_nuxt/builds/meta/07b30e1f-60f5-47aa-9ba1-9185fd48010c.json new file mode 100644 index 000000000..e7fbae98b --- /dev/null +++ b/_nuxt/builds/meta/07b30e1f-60f5-47aa-9ba1-9185fd48010c.json @@ -0,0 +1 @@ +{"id":"07b30e1f-60f5-47aa-9ba1-9185fd48010c","timestamp":1714687089424,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":["/","/contact","/articles","/articles/design-tokens","/articles/configure","/articles/get-started","/articles/write-articles"]} \ No newline at end of file diff --git a/_nuxt/client-db.yLCpLYUu.js b/_nuxt/client-db.yLCpLYUu.js new file mode 100644 index 000000000..72a77b00e --- /dev/null +++ b/_nuxt/client-db.yLCpLYUu.js @@ -0,0 +1 @@ +import{al as _,aB as B,aC as j,aD as E,aE as T,aF as W,aG as $,aH as P,aI as D,aJ as J,ai as b,l as M,aK as H,a0 as U,ap as k,j as G}from"./entry.uIHGwm26.js";const q="memory",F=()=>{const r=new Map;return{name:q,options:{},hasItem(t){return r.has(t)},getItem(t){return r.get(t)??null},getItemRaw(t){return r.get(t)??null},setItem(t,n){r.set(t,n)},setItemRaw(t,n){r.set(t,n)},removeItem(t){r.delete(t)},getKeys(){return Array.from(r.keys())},clear(){r.clear()},dispose(){r.clear()}}};function Z(r){return!r||typeof r.then!="function"?Promise.resolve(r):r}function p(r,...t){try{return Z(r(...t))}catch(n){return Promise.reject(n)}}function V(r){const t=typeof r;return r===null||t!=="object"&&t!=="function"}function Q(r){const t=Object.getPrototypeOf(r);return!t||t.isPrototypeOf(Object)}function S(r){if(V(r))return String(r);if(Q(r)||Array.isArray(r))return JSON.stringify(r);if(typeof r.toJSON=="function")return S(r.toJSON());throw new Error("[unstorage] Cannot stringify value!")}function z(){if(typeof Buffer===void 0)throw new TypeError("[unstorage] Buffer is not supported!")}const R="base64:";function X(r){if(typeof r=="string")return r;z();const t=Buffer.from(r).toString("base64");return R+t}function ee(r){return typeof r!="string"||!r.startsWith(R)?r:(z(),Buffer.from(r.slice(R.length),"base64"))}const te=["hasItem","getItem","getItemRaw","setItem","setItemRaw","removeItem","getMeta","setMeta","removeMeta","getKeys","clear","mount","unmount"];function re(r,t){if(t=A(t),!t)return r;const n={...r};for(const a of te)n[a]=(l="",...c)=>r[a](t+l,...c);return n.getKeys=(a="",...l)=>r.getKeys(t+a,...l).then(c=>c.map(o=>o.slice(t.length))),n}function d(r){return r?r.split("?")[0].replace(/[/\\]/g,":").replace(/:+/g,":").replace(/^:|:$/g,""):""}function ne(...r){return d(r.join(":"))}function A(r){return r=d(r),r?r+":":""}const ie="memory",ae=()=>{const r=new Map;return{name:ie,options:{},hasItem(t){return r.has(t)},getItem(t){return r.get(t)??null},getItemRaw(t){return r.get(t)??null},setItem(t,n){r.set(t,n)},setItemRaw(t,n){r.set(t,n)},removeItem(t){r.delete(t)},getKeys(){return Array.from(r.keys())},clear(){r.clear()},dispose(){r.clear()}}};function se(r={}){const t={mounts:{"":r.driver||ae()},mountpoints:[""],watching:!1,watchListeners:[],unwatch:{}},n=e=>{for(const i of t.mountpoints)if(e.startsWith(i))return{base:i,relativeKey:e.slice(i.length),driver:t.mounts[i]};return{base:"",relativeKey:e,driver:t.mounts[""]}},a=(e,i)=>t.mountpoints.filter(s=>s.startsWith(e)||i&&e.startsWith(s)).map(s=>({relativeBase:e.length>s.length?e.slice(s.length):void 0,mountpoint:s,driver:t.mounts[s]})),l=(e,i)=>{if(t.watching){i=d(i);for(const s of t.watchListeners)s(e,i)}},c=async()=>{if(!t.watching){t.watching=!0;for(const e in t.mounts)t.unwatch[e]=await x(t.mounts[e],l,e)}},o=async()=>{if(t.watching){for(const e in t.unwatch)await t.unwatch[e]();t.unwatch={},t.watching=!1}},h=(e,i,s)=>{const u=new Map,f=m=>{let y=u.get(m.base);return y||(y={driver:m.driver,base:m.base,items:[]},u.set(m.base,y)),y};for(const m of e){const y=typeof m=="string",v=d(y?m:m.key),w=y?void 0:m.value,I=y||!m.options?i:{...i,...m.options},O=n(v);f(O).items.push({key:v,value:w,relativeKey:O.relativeKey,options:I})}return Promise.all([...u.values()].map(m=>s(m))).then(m=>m.flat())},g={hasItem(e,i={}){e=d(e);const{relativeKey:s,driver:u}=n(e);return p(u.hasItem,s,i)},getItem(e,i={}){e=d(e);const{relativeKey:s,driver:u}=n(e);return p(u.getItem,s,i).then(f=>_(f))},getItems(e,i){return h(e,i,s=>s.driver.getItems?p(s.driver.getItems,s.items.map(u=>({key:u.relativeKey,options:u.options})),i).then(u=>u.map(f=>({key:ne(s.base,f.key),value:_(f.value)}))):Promise.all(s.items.map(u=>p(s.driver.getItem,u.relativeKey,u.options).then(f=>({key:u.key,value:_(f)})))))},getItemRaw(e,i={}){e=d(e);const{relativeKey:s,driver:u}=n(e);return u.getItemRaw?p(u.getItemRaw,s,i):p(u.getItem,s,i).then(f=>ee(f))},async setItem(e,i,s={}){if(i===void 0)return g.removeItem(e);e=d(e);const{relativeKey:u,driver:f}=n(e);f.setItem&&(await p(f.setItem,u,S(i),s),f.watch||l("update",e))},async setItems(e,i){await h(e,i,async s=>{s.driver.setItems&&await p(s.driver.setItems,s.items.map(u=>({key:u.relativeKey,value:S(u.value),options:u.options})),i),s.driver.setItem&&await Promise.all(s.items.map(u=>p(s.driver.setItem,u.relativeKey,S(u.value),u.options)))})},async setItemRaw(e,i,s={}){if(i===void 0)return g.removeItem(e,s);e=d(e);const{relativeKey:u,driver:f}=n(e);if(f.setItemRaw)await p(f.setItemRaw,u,i,s);else if(f.setItem)await p(f.setItem,u,X(i),s);else return;f.watch||l("update",e)},async removeItem(e,i={}){typeof i=="boolean"&&(i={removeMeta:i}),e=d(e);const{relativeKey:s,driver:u}=n(e);u.removeItem&&(await p(u.removeItem,s,i),(i.removeMeta||i.removeMata)&&await p(u.removeItem,s+"$",i),u.watch||l("remove",e))},async getMeta(e,i={}){typeof i=="boolean"&&(i={nativeOnly:i}),e=d(e);const{relativeKey:s,driver:u}=n(e),f=Object.create(null);if(u.getMeta&&Object.assign(f,await p(u.getMeta,s,i)),!i.nativeOnly){const m=await p(u.getItem,s+"$",i).then(y=>_(y));m&&typeof m=="object"&&(typeof m.atime=="string"&&(m.atime=new Date(m.atime)),typeof m.mtime=="string"&&(m.mtime=new Date(m.mtime)),Object.assign(f,m))}return f},setMeta(e,i,s={}){return this.setItem(e+"$",i,s)},removeMeta(e,i={}){return this.removeItem(e+"$",i)},async getKeys(e,i={}){e=A(e);const s=a(e,!0);let u=[];const f=[];for(const m of s){const v=(await p(m.driver.getKeys,m.relativeBase,i)).map(w=>m.mountpoint+d(w)).filter(w=>!u.some(I=>w.startsWith(I)));f.push(...v),u=[m.mountpoint,...u.filter(w=>!w.startsWith(m.mountpoint))]}return e?f.filter(m=>m.startsWith(e)&&!m.endsWith("$")):f.filter(m=>!m.endsWith("$"))},async clear(e,i={}){e=A(e),await Promise.all(a(e,!1).map(async s=>{if(s.driver.clear)return p(s.driver.clear,s.relativeBase,i);if(s.driver.removeItem){const u=await s.driver.getKeys(s.relativeBase||"",i);return Promise.all(u.map(f=>s.driver.removeItem(f,i)))}}))},async dispose(){await Promise.all(Object.values(t.mounts).map(e=>L(e)))},async watch(e){return await c(),t.watchListeners.push(e),async()=>{t.watchListeners=t.watchListeners.filter(i=>i!==e),t.watchListeners.length===0&&await o()}},async unwatch(){t.watchListeners=[],await o()},mount(e,i){if(e=A(e),e&&t.mounts[e])throw new Error(`already mounted at ${e}`);return e&&(t.mountpoints.push(e),t.mountpoints.sort((s,u)=>u.length-s.length)),t.mounts[e]=i,t.watching&&Promise.resolve(x(i,l,e)).then(s=>{t.unwatch[e]=s}).catch(console.error),g},async unmount(e,i=!0){e=A(e),!(!e||!t.mounts[e])&&(t.watching&&e in t.unwatch&&(t.unwatch[e](),delete t.unwatch[e]),i&&await L(t.mounts[e]),t.mountpoints=t.mountpoints.filter(s=>s!==e),delete t.mounts[e])},getMount(e=""){e=d(e)+":";const i=n(e);return{driver:i.driver,base:i.base}},getMounts(e="",i={}){return e=d(e),a(e,i.parents).map(u=>({driver:u.driver,base:u.mountpoint}))}};return g}function x(r,t,n){return r.watch?r.watch((a,l)=>t(a,n+l)):()=>{}}async function L(r){typeof r.dispose=="function"&&await p(r.dispose)}function oe(r={}){const t=ue(n,r.operators);function n(a,l){return typeof l!="object"||l instanceof RegExp?t.$eq(a,l):Object.keys(l||{}).every(c=>{const o=l[c];if(c.startsWith("$")&&t[c]){const h=t[c];return typeof h=="function"?h(a,o):!1}return n(B(a,c),o)})}return n}function ue(r,t={}){return{$match:(n,a)=>r(n,a),$eq:(n,a)=>a instanceof RegExp?a.test(n):n===a,$ne:(n,a)=>a instanceof RegExp?!a.test(n):n!==a,$not:(n,a)=>!r(n,a),$and:(n,a)=>(j(a,"$and requires an array as condition"),a.every(l=>r(n,l))),$or:(n,a)=>(j(a,"$or requires an array as condition"),a.some(l=>r(n,l))),$in:(n,a)=>E(a).some(l=>Array.isArray(n)?r(n,{$contains:l}):r(n,l)),$contains:(n,a)=>(n=Array.isArray(n)?n:String(n),E(a).every(l=>n.includes(l))),$icontains:(n,a)=>{if(typeof a!="string")throw new TypeError("$icontains requires a string, use $contains instead");return n=String(n).toLocaleLowerCase(),E(a).every(l=>n.includes(l.toLocaleLowerCase()))},$containsAny:(n,a)=>(j(a,"$containsAny requires an array as condition"),n=Array.isArray(n)?n:String(n),a.some(l=>n.includes(l))),$exists:(n,a)=>a?typeof n<"u":typeof n>"u",$type:(n,a)=>typeof n===String(a),$regex:(n,a)=>{if(!(a instanceof RegExp)){const l=String(a).match(/\/(.*)\/([dgimsuy]*)$/);a=l?new RegExp(l[1],l[2]||""):new RegExp(a)}return a.test(String(n||""))},$lt:(n,a)=>nn<=a,$gt:(n,a)=>n>a,$gte:(n,a)=>n>=a,...t||{}}}function ce(r){const t=oe(),n=(c,{query:o,before:h,after:g})=>{const e=typeof o=="string"?{_path:o}:o,i=c.findIndex(u=>t(u,e));h=h??1,g=g??1;const s=new Array(h+g).fill(null,0);return i===-1?s:s.map((u,f)=>c[i-h+f+ +(f>=h)]||null)},a=[(c,o)=>{const h=c.result.filter(g=>E(o.where).every(e=>t(g,e)));return{...c,result:h,total:h.length}},(c,o)=>E(o.sort).forEach(h=>W(c.result,h)),function(o,h,g){var e;if(h.surround){let i=n(((e=o.result)==null?void 0:e.length)===1?g:o.result,h.surround);i=$(P(h.without))(i),i=$(D(h.only))(i),o.surround=i}return o}],l=[(c,o)=>{if(o.skip)return{...c,result:c.result.slice(o.skip),skip:o.skip}},(c,o)=>{if(o.limit)return{...c,result:c.result.slice(0,o.limit),limit:o.limit}},function(o,h,g){var e,i,s;if(h.dirConfig){const u=((e=o.result[0])==null?void 0:e._path)||((s=(i=h.where)==null?void 0:i.find(f=>f._path))==null?void 0:s._path);if(typeof u=="string"){const f=g.find(m=>m._path===J(u,"_dir"));f&&(o.dirConfig={_path:f._path,...P(["_"])(f)})}}return o},(c,o)=>({...c,result:$(P(o.without))(c.result)}),(c,o)=>({...c,result:$(D(o.only))(c.result)})];return async c=>{const o=await r(),h=c.params(),g={result:o,limit:0,skip:0,total:o.length},e=a.reduce((s,u)=>u(s,h,o)||s,g);if(h.count)return{result:e.result.length};const i=l.reduce((s,u)=>u(s,h,o)||s,e);return h.first?{...T(["skip","limit","total"])(i),result:i.result[0]}:i}}function N(r){const t=ce(r);return async n=>{var c;const a=n.params(),l=await t(n);return a.surround?l==null?void 0:l.surround:(l!=null&&l.dirConfig&&(l.result={_path:(c=l.dirConfig)==null?void 0:c._path,...l.result,_dir:l.dirConfig}),l==null?void 0:l.result)}}var le=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},fe={exports:{}};(function(r,t){(function(n,a,l){r.exports=l(),r.exports.default=l()})("slugify",le,function(){var n=JSON.parse(`{"$":"dollar","%":"percent","&":"and","<":"less",">":"greater","|":"or","¢":"cent","£":"pound","¤":"currency","¥":"yen","©":"(c)","ª":"a","®":"(r)","º":"o","À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"U","Ý":"Y","Þ":"TH","ß":"ss","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ð":"d","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"u","ý":"y","þ":"th","ÿ":"y","Ā":"A","ā":"a","Ă":"A","ă":"a","Ą":"A","ą":"a","Ć":"C","ć":"c","Č":"C","č":"c","Ď":"D","ď":"d","Đ":"DJ","đ":"dj","Ē":"E","ē":"e","Ė":"E","ė":"e","Ę":"e","ę":"e","Ě":"E","ě":"e","Ğ":"G","ğ":"g","Ģ":"G","ģ":"g","Ĩ":"I","ĩ":"i","Ī":"i","ī":"i","Į":"I","į":"i","İ":"I","ı":"i","Ķ":"k","ķ":"k","Ļ":"L","ļ":"l","Ľ":"L","ľ":"l","Ł":"L","ł":"l","Ń":"N","ń":"n","Ņ":"N","ņ":"n","Ň":"N","ň":"n","Ō":"O","ō":"o","Ő":"O","ő":"o","Œ":"OE","œ":"oe","Ŕ":"R","ŕ":"r","Ř":"R","ř":"r","Ś":"S","ś":"s","Ş":"S","ş":"s","Š":"S","š":"s","Ţ":"T","ţ":"t","Ť":"T","ť":"t","Ũ":"U","ũ":"u","Ū":"u","ū":"u","Ů":"U","ů":"u","Ű":"U","ű":"u","Ų":"U","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","ź":"z","Ż":"Z","ż":"z","Ž":"Z","ž":"z","Ə":"E","ƒ":"f","Ơ":"O","ơ":"o","Ư":"U","ư":"u","Lj":"LJ","lj":"lj","Nj":"NJ","nj":"nj","Ș":"S","ș":"s","Ț":"T","ț":"t","ə":"e","˚":"o","Ά":"A","Έ":"E","Ή":"H","Ί":"I","Ό":"O","Ύ":"Y","Ώ":"W","ΐ":"i","Α":"A","Β":"B","Γ":"G","Δ":"D","Ε":"E","Ζ":"Z","Η":"H","Θ":"8","Ι":"I","Κ":"K","Λ":"L","Μ":"M","Ν":"N","Ξ":"3","Ο":"O","Π":"P","Ρ":"R","Σ":"S","Τ":"T","Υ":"Y","Φ":"F","Χ":"X","Ψ":"PS","Ω":"W","Ϊ":"I","Ϋ":"Y","ά":"a","έ":"e","ή":"h","ί":"i","ΰ":"y","α":"a","β":"b","γ":"g","δ":"d","ε":"e","ζ":"z","η":"h","θ":"8","ι":"i","κ":"k","λ":"l","μ":"m","ν":"n","ξ":"3","ο":"o","π":"p","ρ":"r","ς":"s","σ":"s","τ":"t","υ":"y","φ":"f","χ":"x","ψ":"ps","ω":"w","ϊ":"i","ϋ":"y","ό":"o","ύ":"y","ώ":"w","Ё":"Yo","Ђ":"DJ","Є":"Ye","І":"I","Ї":"Yi","Ј":"J","Љ":"LJ","Њ":"NJ","Ћ":"C","Џ":"DZ","А":"A","Б":"B","В":"V","Г":"G","Д":"D","Е":"E","Ж":"Zh","З":"Z","И":"I","Й":"J","К":"K","Л":"L","М":"M","Н":"N","О":"O","П":"P","Р":"R","С":"S","Т":"T","У":"U","Ф":"F","Х":"H","Ц":"C","Ч":"Ch","Ш":"Sh","Щ":"Sh","Ъ":"U","Ы":"Y","Ь":"","Э":"E","Ю":"Yu","Я":"Ya","а":"a","б":"b","в":"v","г":"g","д":"d","е":"e","ж":"zh","з":"z","и":"i","й":"j","к":"k","л":"l","м":"m","н":"n","о":"o","п":"p","р":"r","с":"s","т":"t","у":"u","ф":"f","х":"h","ц":"c","ч":"ch","ш":"sh","щ":"sh","ъ":"u","ы":"y","ь":"","э":"e","ю":"yu","я":"ya","ё":"yo","ђ":"dj","є":"ye","і":"i","ї":"yi","ј":"j","љ":"lj","њ":"nj","ћ":"c","ѝ":"u","џ":"dz","Ґ":"G","ґ":"g","Ғ":"GH","ғ":"gh","Қ":"KH","қ":"kh","Ң":"NG","ң":"ng","Ү":"UE","ү":"ue","Ұ":"U","ұ":"u","Һ":"H","һ":"h","Ә":"AE","ә":"ae","Ө":"OE","ө":"oe","Ա":"A","Բ":"B","Գ":"G","Դ":"D","Ե":"E","Զ":"Z","Է":"E'","Ը":"Y'","Թ":"T'","Ժ":"JH","Ի":"I","Լ":"L","Խ":"X","Ծ":"C'","Կ":"K","Հ":"H","Ձ":"D'","Ղ":"GH","Ճ":"TW","Մ":"M","Յ":"Y","Ն":"N","Շ":"SH","Չ":"CH","Պ":"P","Ջ":"J","Ռ":"R'","Ս":"S","Վ":"V","Տ":"T","Ր":"R","Ց":"C","Փ":"P'","Ք":"Q'","Օ":"O''","Ֆ":"F","և":"EV","ء":"a","آ":"aa","أ":"a","ؤ":"u","إ":"i","ئ":"e","ا":"a","ب":"b","ة":"h","ت":"t","ث":"th","ج":"j","ح":"h","خ":"kh","د":"d","ذ":"th","ر":"r","ز":"z","س":"s","ش":"sh","ص":"s","ض":"dh","ط":"t","ظ":"z","ع":"a","غ":"gh","ف":"f","ق":"q","ك":"k","ل":"l","م":"m","ن":"n","ه":"h","و":"w","ى":"a","ي":"y","ً":"an","ٌ":"on","ٍ":"en","َ":"a","ُ":"u","ِ":"e","ْ":"","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","پ":"p","چ":"ch","ژ":"zh","ک":"k","گ":"g","ی":"y","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","฿":"baht","ა":"a","ბ":"b","გ":"g","დ":"d","ე":"e","ვ":"v","ზ":"z","თ":"t","ი":"i","კ":"k","ლ":"l","მ":"m","ნ":"n","ო":"o","პ":"p","ჟ":"zh","რ":"r","ს":"s","ტ":"t","უ":"u","ფ":"f","ქ":"k","ღ":"gh","ყ":"q","შ":"sh","ჩ":"ch","ც":"ts","ძ":"dz","წ":"ts","ჭ":"ch","ხ":"kh","ჯ":"j","ჰ":"h","Ṣ":"S","ṣ":"s","Ẁ":"W","ẁ":"w","Ẃ":"W","ẃ":"w","Ẅ":"W","ẅ":"w","ẞ":"SS","Ạ":"A","ạ":"a","Ả":"A","ả":"a","Ấ":"A","ấ":"a","Ầ":"A","ầ":"a","Ẩ":"A","ẩ":"a","Ẫ":"A","ẫ":"a","Ậ":"A","ậ":"a","Ắ":"A","ắ":"a","Ằ":"A","ằ":"a","Ẳ":"A","ẳ":"a","Ẵ":"A","ẵ":"a","Ặ":"A","ặ":"a","Ẹ":"E","ẹ":"e","Ẻ":"E","ẻ":"e","Ẽ":"E","ẽ":"e","Ế":"E","ế":"e","Ề":"E","ề":"e","Ể":"E","ể":"e","Ễ":"E","ễ":"e","Ệ":"E","ệ":"e","Ỉ":"I","ỉ":"i","Ị":"I","ị":"i","Ọ":"O","ọ":"o","Ỏ":"O","ỏ":"o","Ố":"O","ố":"o","Ồ":"O","ồ":"o","Ổ":"O","ổ":"o","Ỗ":"O","ỗ":"o","Ộ":"O","ộ":"o","Ớ":"O","ớ":"o","Ờ":"O","ờ":"o","Ở":"O","ở":"o","Ỡ":"O","ỡ":"o","Ợ":"O","ợ":"o","Ụ":"U","ụ":"u","Ủ":"U","ủ":"u","Ứ":"U","ứ":"u","Ừ":"U","ừ":"u","Ử":"U","ử":"u","Ữ":"U","ữ":"u","Ự":"U","ự":"u","Ỳ":"Y","ỳ":"y","Ỵ":"Y","ỵ":"y","Ỷ":"Y","ỷ":"y","Ỹ":"Y","ỹ":"y","–":"-","‘":"'","’":"'","“":"\\"","”":"\\"","„":"\\"","†":"+","•":"*","…":"...","₠":"ecu","₢":"cruzeiro","₣":"french franc","₤":"lira","₥":"mill","₦":"naira","₧":"peseta","₨":"rupee","₩":"won","₪":"new shequel","₫":"dong","€":"euro","₭":"kip","₮":"tugrik","₯":"drachma","₰":"penny","₱":"peso","₲":"guarani","₳":"austral","₴":"hryvnia","₵":"cedi","₸":"kazakhstani tenge","₹":"indian rupee","₺":"turkish lira","₽":"russian ruble","₿":"bitcoin","℠":"sm","™":"tm","∂":"d","∆":"delta","∑":"sum","∞":"infinity","♥":"love","元":"yuan","円":"yen","﷼":"rial","ﻵ":"laa","ﻷ":"laa","ﻹ":"lai","ﻻ":"la"}`),a=JSON.parse('{"bg":{"Й":"Y","Ц":"Ts","Щ":"Sht","Ъ":"A","Ь":"Y","й":"y","ц":"ts","щ":"sht","ъ":"a","ь":"y"},"de":{"Ä":"AE","ä":"ae","Ö":"OE","ö":"oe","Ü":"UE","ü":"ue","ß":"ss","%":"prozent","&":"und","|":"oder","∑":"summe","∞":"unendlich","♥":"liebe"},"es":{"%":"por ciento","&":"y","<":"menor que",">":"mayor que","|":"o","¢":"centavos","£":"libras","¤":"moneda","₣":"francos","∑":"suma","∞":"infinito","♥":"amor"},"fr":{"%":"pourcent","&":"et","<":"plus petit",">":"plus grand","|":"ou","¢":"centime","£":"livre","¤":"devise","₣":"franc","∑":"somme","∞":"infini","♥":"amour"},"pt":{"%":"porcento","&":"e","<":"menor",">":"maior","|":"ou","¢":"centavo","∑":"soma","£":"libra","∞":"infinito","♥":"amor"},"uk":{"И":"Y","и":"y","Й":"Y","й":"y","Ц":"Ts","ц":"ts","Х":"Kh","х":"kh","Щ":"Shch","щ":"shch","Г":"H","г":"h"},"vi":{"Đ":"D","đ":"d"},"da":{"Ø":"OE","ø":"oe","Å":"AA","å":"aa","%":"procent","&":"og","|":"eller","$":"dollar","<":"mindre end",">":"større end"},"nb":{"&":"og","Å":"AA","Æ":"AE","Ø":"OE","å":"aa","æ":"ae","ø":"oe"},"it":{"&":"e"},"nl":{"&":"en"},"sv":{"&":"och","Å":"AA","Ä":"AE","Ö":"OE","å":"aa","ä":"ae","ö":"oe"}}');function l(c,o){if(typeof c!="string")throw new Error("slugify: string argument expected");o=typeof o=="string"?{replacement:o}:o||{};var h=a[o.locale]||{},g=o.replacement===void 0?"-":o.replacement,e=o.trim===void 0?!0:o.trim,i=c.normalize().split("").reduce(function(s,u){var f=h[u];return f===void 0&&(f=n[u]),f===void 0&&(f=u),f===g&&(f=" "),s+f.replace(o.remove||/[^\w\s$*_+~.()'"!\-:@]+/g,"")},"");return o.strict&&(i=i.replace(/[^A-Za-z0-9\s]/g,"")),e&&(i=i.trim()),i=i.replace(/\s+/g,g),o.lower&&(i=i.toLowerCase()),i}return l.extend=function(c){Object.assign(n,c)},l})})(fe);const me=r=>r.split(/[\s-]/g).map(b).join(" ");function he(r,t){const{navigation:n}=M().public.content;if(n===!1)return[];const a=c=>({...pe(["title",...n.fields])(c),...de(c==null?void 0:c.navigation)?c.navigation:{}}),l=r.sort((c,o)=>c._path.localeCompare(o._path)).reduce((c,o)=>{const h=o._path.substring(1).split("/"),g=o._id.split(":").slice(1),e=!!g[g.length-1].match(/([1-9][0-9]*\.)?index.md/g),i=f=>({title:f.title,_path:f._path,_file:f._file,children:[],...a(f),...f._draft?{_draft:!0}:{}}),s=i(o);if(e){const f=t[s._path];if(typeof(f==null?void 0:f.navigation)<"u"&&!(f!=null&&f.navigation))return c;if(o._path!=="/"){const m=i(o);s.children.push(m)}Object.assign(s,a(f))}return h.length===1?(c.push(s),c):(h.slice(0,-1).reduce((f,m,y)=>{const v="/"+h.slice(0,y+1).join("/"),w=t[v];if(typeof(w==null?void 0:w.navigation)<"u"&&!w.navigation)return[];let I=f.find(O=>O._path===v);return I||(I={title:me(m),_path:v,_file:o._file,children:[],...a(w)},f.push(I)),I.children},c).push(s),c)},[]);return Y(l)}const ge=new Intl.Collator(void 0,{numeric:!0,sensitivity:"base"});function Y(r){var n;const t=r.sort((a,l)=>ge.compare(a._file,l._file));for(const a of t)(n=a.children)!=null&&n.length?Y(a.children):delete a.children,delete a._file;return r}function pe(r){return t=>(t=t||{},r&&r.length?r.filter(n=>typeof t[n]<"u").reduce((n,a)=>Object.assign(n,{[a]:t[a]}),{}):t)}function de(r){return Object.prototype.toString.call(r)==="[object Object]"}const ye=r=>k(r,M().public.content.api.baseURL),we=re(se({driver:F()}),"@content");function ve(r){async function t(){const n=new Set(await r.getKeys("cache:")),a=U().getPreviewToken();if(a){const c=await r.getItem(`${a}$`).then(g=>g||{});if(Array.isArray(c.ignoreSources)){const g=c.ignoreSources.map(e=>`cache:${e.trim()}:`);for(const e of n)g.some(i=>e.startsWith(i))&&n.delete(e)}const o=await r.getKeys(`${a}:`),h=await Promise.all(o.map(g=>r.getItem(g)));for(const g of h)n.delete(`cache:${g._id}`),g.__deleted||n.add(`${a}:${g._id}`)}return await Promise.all(Array.from(n).map(c=>r.getItem(c)))}return{storage:r,fetch:N(t),query:n=>H(N(t),{initialParams:n,legacy:!0})}}let C=null,K=null;async function Ie(){return K?await K:C||(K=Ae(),C=await K),C}async function Ae(){const r=G(),{content:t}=M().public,n=ve(we),a=await n.storage.getItem("integrity");if(t.integrity!==+(a||0)){const{contents:l,navigation:c}=await $fetch(ye(t.integrity?`cache.${t.integrity}.json`:"cache.json"));await Promise.all(l.map(o=>n.storage.setItem(`cache:${o._id}`,o))),await n.storage.setItem("navigation",c),await n.storage.setItem("integrity",t.integrity)}return await r.callHook("content:storage",n.storage),n}async function Oe(r){const t=await Ie();if(!U().getPreviewToken()&&Object.keys(r||{}).length===0)return t.storage.getItem("navigation");const n=await t.query(r).where({_partial:!1,navigation:{$ne:!1}}).find(),l=(await t.query().where({_path:/\/_dir$/i,_partial:!0}).find()).reduce((c,o)=>{var g;((g=o.title)==null?void 0:g.toLowerCase())==="dir"&&(o.title=void 0);const h=o._path.split("/").slice(0,-1).join("/")||"/";return c[h]={...o,...o.body},c},{});return he(n,l)}export{we as contentStorage,ve as createDB,Oe as generateNavigation,Ie as useContentDatabase}; diff --git a/_nuxt/date.3uOv5BcS.js b/_nuxt/date.3uOv5BcS.js new file mode 100644 index 000000000..0ae4150bd --- /dev/null +++ b/_nuxt/date.3uOv5BcS.js @@ -0,0 +1 @@ +const t=e=>new Date(e).toLocaleDateString("en",{year:"numeric",month:"long",day:"numeric"});export{t as f}; diff --git a/_nuxt/default.jXLbP3QL.js b/_nuxt/default.jXLbP3QL.js new file mode 100644 index 000000000..96112c8cf --- /dev/null +++ b/_nuxt/default.jXLbP3QL.js @@ -0,0 +1 @@ +import{k as t,c as a,a5 as n,b as r}from"./entry.uIHGwm26.js";const c={};function o(e,s){return r(),a("main",null,[n(e.$slots,"default")])}const f=t(c,[["render",o]]);export{f as default}; diff --git a/_nuxt/document-driven.IEHCyUsA.js b/_nuxt/document-driven.IEHCyUsA.js new file mode 100644 index 000000000..732787af7 --- /dev/null +++ b/_nuxt/document-driven.IEHCyUsA.js @@ -0,0 +1 @@ +import h from"./DocumentDrivenEmpty.yLQDgpAl.js";import L from"./ContentRenderer.Nxv-BsjZ.js";import b from"./DocumentDrivenNotFound.eFsPKjvl.js";import{j as g,d as p,G as k,P as R,s as x,H as C,I as S,r as j,J as c,K as B,L as N,M as u,N as m,T,O as A,Q as O,S as w,R as D,U as E,l as H,V as $,W as q,b as f,c as I,g as y,w as _,X as v}from"./entry.uIHGwm26.js";import"./ContentRendererMarkdown.vue.ZvRXHQ1T.js";const M=p({name:"LayoutLoader",inheritAttrs:!1,props:{name:String,layoutProps:Object},async setup(t,o){const e=await c[t.name]().then(n=>n.default||n);return()=>m(e,t.layoutProps,o.slots)}}),V=p({name:"NuxtLayout",inheritAttrs:!1,props:{name:{type:[String,Boolean,Object],default:null},fallback:{type:[String,Object],default:null}},setup(t,o){const e=g(),n=k(R),s=n===x()?C():n,r=S(()=>{let a=u(t.name)??s.meta.layout??"default";return a&&!(a in c)&&t.fallback&&(a=u(t.fallback)),a}),l=j();o.expose({layoutRef:l});const d=e.deferHydration();return()=>{const a=r.value&&r.value in c,i=s.meta.layoutTransition??B;return N(T,a&&i,{default:()=>m(w,{suspensible:!0,onResolve:()=>{O(d)}},{default:()=>m(F,{layoutProps:A(o.attrs,{ref:l}),key:r.value||void 0,name:r.value,shouldProvide:!t.name,hasTransition:!!i},o.slots)})}).default()}}}),F=p({name:"NuxtLayoutProvider",inheritAttrs:!1,props:{name:{type:[String,Boolean]},layoutProps:{type:Object},hasTransition:{type:Boolean},shouldProvide:{type:Boolean}},setup(t,o){const e=t.name;return t.shouldProvide&&D(E,{isCurrent:n=>e===(n.meta.layout??"default")}),()=>{var n,s;return!e||typeof e=="string"&&!(e in c)?(s=(n=o.slots).default)==null?void 0:s.call(n):m(M,{key:e,layoutProps:t.layoutProps,name:e},o.slots)}}}),G={class:"document-driven-page"},X=p({__name:"document-driven",setup(t){const{contentHead:o}=H().public.content,{page:e,layout:n}=$();return e.value,o&&q(e),(s,r)=>{const l=h,d=L,a=b,i=V;return f(),I("div",G,[y(i,{name:u(n)||"default"},{default:_(()=>[u(e)?(f(),v(d,{key:u(e)._id,value:u(e)},{empty:_(({value:P})=>[y(l,{value:P},null,8,["value"])]),_:1},8,["value"])):(f(),v(a,{key:1}))]),_:1},8,["name"])])}}});export{X as default}; diff --git a/_nuxt/entry.CEWKmYjC.css b/_nuxt/entry.CEWKmYjC.css new file mode 100644 index 000000000..9d675bb9a --- /dev/null +++ b/_nuxt/entry.CEWKmYjC.css @@ -0,0 +1 @@ +body{background-color:var(--alpine-body-backgroundColor);color:var(--alpine-body-color)}.light-img{display:block}.dark-img{display:none}@media (prefers-color-scheme:dark){html:not(.light) .dark-img{display:block}html:not(.light) .light-img{display:none}}html.dark .dark-img{display:block}html.dark .light-img{display:none}html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.sr-only{height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;clip:rect(0,0,0,0)!important;border:0!important;white-space:nowrap!important}*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}.nuxt-progress{background:repeating-linear-gradient(90deg,#00dc82 0,#34cdfe 50%,#0047e1);left:0;opacity:1;position:fixed;right:0;top:0;transition:width .1s,height .4s,opacity .4s;width:0;z-index:999999}nav ul[data-v-43ad9a69]{display:flex;flex-direction:column;gap:var(--space-4);justify-content:center;width:100%}@media (min-width:640px){nav ul[data-v-43ad9a69]{flex-direction:row;gap:var(--space-8)}}nav ul a[data-v-43ad9a69]{position:relative}nav ul a.router-link-active[data-v-43ad9a69]{color:var(--color-primary-500)}nav ul a .underline-fx[data-v-43ad9a69]{background-color:currentColor;bottom:-4px;height:1px;position:absolute;transition:width .2s ease-in-out;width:0}a:hover :is(nav ul a .underline-fx):is(nav ul a .underline-fx[data-v-43ad9a69]){width:100%}header[data-v-88146f45]{--header-padding:var(--space-16);--logo-height:var(--space-8);align-items:center;display:grid;gap:var(--space-4);grid-template-columns:repeat(12,minmax(0,1fr));padding-bottom:var(--header-padding);padding-top:var(--header-padding);position:relative}header .menu[data-v-88146f45]{display:flex;position:absolute}header .menu[data-v-88146f45] :hover{color:var(--color-primary-500)}.left :is(header .menu):is(header .menu[data-v-88146f45]){right:0}@media (min-width:640px){header .menu[data-v-88146f45]{display:none}}header .overlay[data-v-88146f45]{-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);background-color:var(--alpine-backdrop-backgroundColor);border:1px solid var(--color-gray-200);border-radius:var(--radii-md);font-size:var(--text-lg-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-lg-lineHeight);padding:var(--space-6);padding-right:var(--space-24);perspective:2000px;position:absolute;top:calc(var(--header-padding) + var(--logo-height) + var(--space-2));transform-origin:top;transition:all .25s;will-change:opacity,transform}header .overlay[data-v-88146f45]:not(.show){opacity:0;transform:translateY(-10px) rotateY(-8deg) rotateX(-20deg)}.left :is(header .overlay:not(.show)):is(header .overlay[data-v-88146f45]:not(.show)){transform:translateY(-10px) rotateY(8deg) rotateX(-20deg)}header .overlay[data-v-88146f45]:not(.show){pointer-events:none}.left :is(header .overlay):is(header .overlay[data-v-88146f45]){padding:var(--space-6);padding-left:var(--space-16);right:0;text-align:right}@media (min-width:640px){header .overlay[data-v-88146f45]{display:none}}:root.dark header .overlay[data-v-88146f45]{border-color:var(--color-gray-800)}header .logo[data-v-88146f45]{display:flex;grid-column:span 12/span 12;height:var(--logo-height)}header .logo a[data-v-88146f45]{display:flex}.center :is(header .logo):is(header .logo[data-v-88146f45]){grid-column:span 12/span 12;justify-content:center}.right :is(header .logo):is(header .logo[data-v-88146f45]){justify-content:flex-end}@media (min-width:640px){header .logo[data-v-88146f45]{grid-column:span 4/span 4;grid-column-start:auto}.right :is(header .logo):is(header .logo[data-v-88146f45]){order:2}}header .logo .fallback[data-v-88146f45]{font-size:var(--text-2xl-fontSize);font-weight:var(--fontWeight-semibold);line-height:var(--text-2xl-lineHeight)}header .main-nav[data-v-88146f45]{display:none}@media (min-width:640px){header .main-nav[data-v-88146f45]{display:flex;font-size:var(--text-xl-fontSize);font-weight:var(--fontWeight-medium);grid-column:span 8/span 8;line-height:var(--text-xl-lineHeight)}.center :is(header .main-nav):is(header .main-nav[data-v-88146f45]){grid-column:span 12/span 12;justify-content:center}.right :is(header .main-nav):is(header .main-nav[data-v-88146f45]){justify-content:flex-start}.left :is(header .main-nav):is(header .main-nav[data-v-88146f45]){justify-content:flex-end}}.icon[data-v-734900d8]{display:inline-block;vertical-align:middle}a[data-v-3967aaca]{--social-icon-size:24px;display:flex;height:24px;height:var(--social-icon-size);width:24px;width:var(--social-icon-size)}a[data-v-3967aaca] :hover{color:var(--color-primary-500)}a svg[data-v-3967aaca]{height:100%;width:100%}button[data-v-7ddac757]{display:flex;--color-mode-switcher-size:24px;height:24px;height:var(--color-mode-switcher-size);width:24px;width:var(--color-mode-switcher-size)}button[data-v-7ddac757] :hover{color:var(--color-primary-500)}button svg[data-v-7ddac757]{height:100%;width:100%}footer[data-v-ae2d2e60]{align-items:center;display:flex;flex-direction:column;margin-top:var(--space-24);padding-bottom:var(--space-8);padding-top:var(--space-8)}footer.left[data-v-ae2d2e60]{align-items:flex-start}footer.right[data-v-ae2d2e60]{align-items:flex-end}@media (min-width:768px){footer[data-v-ae2d2e60]{min-height:var(--space-36)}}footer .credits[data-v-ae2d2e60]{font-size:var(--text-3xl-fontSize);font-weight:var(--fontWeight-bold);line-height:var(--text-3xl-lineHeight);margin-bottom:var(--space-4)}footer .navigation[data-v-ae2d2e60]{display:none}@media (min-width:640px){footer .navigation[data-v-ae2d2e60]{display:flex;font-size:var(--text-base-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-base-lineHeight);margin-bottom:var(--space-8)}}footer .message[data-v-ae2d2e60]{margin-bottom:var(--space-4);text-align:center}footer .icons[data-v-ae2d2e60]{display:grid;gap:var(--space-4);grid-template-columns:repeat(12,minmax(0,1fr));width:100%}.left :is(footer .icons):is(footer .icons[data-v-ae2d2e60]){align-items:center;display:flex;justify-content:space-between}.right :is(footer .icons):is(footer .icons[data-v-ae2d2e60]){align-items:center;display:flex;flex-direction:row-reverse;justify-content:space-between}footer .icons .social[data-v-ae2d2e60]{display:flex;gap:var(--space-4);grid-column:span 12/span 12;justify-content:center}@media (min-width:475px){footer .icons .social[data-v-ae2d2e60]{grid-column:span 4/span 4;grid-column-start:5}}footer .icons .color-mode-switch[data-v-ae2d2e60]{display:flex;grid-column:span 12/span 12;justify-content:center}@media (min-width:475px){footer .icons .color-mode-switch[data-v-ae2d2e60]{grid-column:span 2/span 2;grid-column-start:11;justify-content:flex-end}}.container[data-v-ff27660e]{margin-inline-end:auto;margin-inline-start:auto;width:100%}.app-layout[data-v-0359c710]{min-width:var(--size-xs)}html{font-family:var(--font-sans)} diff --git a/_nuxt/entry.uIHGwm26.js b/_nuxt/entry.uIHGwm26.js new file mode 100644 index 000000000..6cf7a565d --- /dev/null +++ b/_nuxt/entry.uIHGwm26.js @@ -0,0 +1,32 @@ +function __vite__mapDeps(indexes) { + if (!__vite__mapDeps.viteFileDeps) { + __vite__mapDeps.viteFileDeps = ["./document-driven.IEHCyUsA.js","./DocumentDrivenEmpty.yLQDgpAl.js","./ContentRenderer.Nxv-BsjZ.js","./ContentRendererMarkdown.vue.ZvRXHQ1T.js","./DocumentDrivenNotFound.eFsPKjvl.js","./DocumentDrivenNotFound.sIhqOboZ.css","./ArticlesList.w4ljBGN9.js","./ArticlesListItem.5fodA8Bq.js","./date.3uOv5BcS.js","./ArticlesListItem.DFkJIClr.css","./ProseA.uZkReT9p.js","./ProseA.kEJeNy76.css","./ProseCodeInline.QqXTIiNZ.js","./ProseCodeInline.dcZ3SRGn.css","./asyncData.uJQpiaTt.js","./ArticlesList.lBtJjnNZ.css","./ContactForm.tEhGLfwL.js","./Input.O4Qi4YDL.js","./Input.CTVi45-o.css","./Button.g123B8Zx.js","./Button.eKFWhRPD.css","./ContactForm.-eNkvpkm.css","./Gallery.7RmfIhLJ.js","./Gallery.UfSLtplu.css","./Hero.1FX06ln7.js","./MDCSlot.3Uw_wiOf.js","./slot.-hZqRm-7.js","./Hero.OGyS2H6Y.css","./ProseBlockquote.bFQ9hQBn.js","./ProseBlockquote.ZOgCPkt5.css","./ProseCode.IEFN8-CC.js","./ProseCode.R0dUtoE8.css","./ProseEm.Wxx6HHfF.js","./ProseEm.dvRII03j.css","./ProseH1.q-s6ntTg.js","./ProseH1.Tj6KTW5B.css","./ProseH2.-Dj0TlzF.js","./ProseH2.tKJKS6HF.css","./ProseH3.wnSRy-7f.js","./ProseH3.lCYEpZCb.css","./ProseH4.gpl85eLQ.js","./ProseH4.HhSzCX1O.css","./ProseH5.AlWveEHe.js","./ProseH5.R8A-Te7D.css","./ProseH6.-bYyeRxA.js","./ProseH6.wJBcC_hn.css","./ProseHr.K5Vj6GYP.js","./ProseHr.Tvvhc6x9.css","./ProseImg.I0RBlcUV.js","./ProseImg.0JcGsKBo.css","./ProseLi.OMtdwuSm.js","./ProseLi.IujKas3c.css","./ProseOl.1anPfVba.js","./ProseOl.2lqLbkZc.css","./ProseP.cLR3X3GK.js","./ProseP.hibu3w-W.css","./ProseStrong.WA8kRZ0C.js","./ProseStrong.-KymXpFz.css","./ProseTable.yEu4BAQd.js","./ProseTable.BQRSA75O.css","./ProseTd.Ex0GYgEm.js","./ProseTd.VC01GbWi.css","./ProseTh.erSO7NHs.js","./ProseTh.rlCefe3r.css","./ProseThead.lvISFRJw.js","./ProseThead.XzVN2nn5.css","./ProseTr.ltHBB1I0.js","./ProseTr.gg5vYHkS.css","./ProseUl.p-UuMORz.js","./ProseUl.oWedjes3.css","./Alert.GtxI_vOc.js","./Alert.dRu2JuWW.css","./Badge.HXxWjNZ1.js","./Badge.EMPLMkxf.css","./ButtonLink.ksLlCBiP.js","./ButtonLink.orOlXGTt.css","./Callout.E91Cy_Al.js","./Callout.b4yc-htk.css","./CodeBlock.y2QqWgp5.js","./CodeBlock.zB8Jw6V9.css","./CodeGroup.0d6j5SRS.js","./TabsHeader.9cm5rUp8.js","./TabsHeader.KtTkEEaQ.css","./CodeGroup.kDvzdcIq.css","./CopyButton.hri7U-us.js","./index.ocM43EYf.js","./Ellipsis.zer7EKhg.js","./Ellipsis.AlDwIO90.css","./List.GfZlsH2t.js","./List.KMfEwUIj.css","./Props.vLDDOLog.js","./ProseTbody.BrO4vgr2.js","./Sandbox.PDD7OVAs.js","./Sandbox.6TlAS_L3.css","./SourceLink.jsCTPIA_.js","./Terminal.VDcXMABj.js","./Terminal.SaLvH6UD.css","./VideoPlayer.tYPt4bfC.js","./VideoPlayer.ND7TcxYT.css","./IconNuxtStudio.ntIa3tVN.js","./IconNuxtStudio.H-RXqhZ1.css","./BlockHero.veNOJ5nY.js","./BlockHero.k3n1K4Cy.css","./Card.i3uihuxy.js","./Card.k1cr2r__.css","./CardGrid.F9TrR3nz.js","./CardGrid.O6Alz0uV.css","./VoltaBoard.yxPmtuT-.js","./VoltaBoard._Ti1fhn8.css","./ComponentPlayground.3LfJEpxm.js","./ComponentPlaygroundData.RrSZJEaQ.js","./ComponentPlaygroundProps.7V5osBTn.js","./ComponentPlaygroundProps.XERzf4St.css","./ComponentPlaygroundSlots.vue.Vsa6kh9o.js","./ComponentPlaygroundTokens.vue.f6xMzuka.js","./ComponentPlaygroundData.76AdijLo.css","./ComponentPlayground.PBFPrZyz.css","./ComponentPlaygroundSlots.DK5SwSE6.js","./ComponentPlaygroundTokens.JGKSc7jH.js","./PreviewLayout.LEhGpK7q.js","./PreviewLayout.MaZAQnQp.css","./ContentDoc.qrlkab9E.js","./ContentQuery.7Sw12qte.js","./ContentList.UnpkXccW.js","./ContentNavigation.wyUnHXUa.js","./ContentRendererMarkdown.ht7j1CGW.js","./ContentSlot.frkPNmKi.js","./Markdown.LJw0RYDX.js","./ProsePre.qvj6veFU.js","./ProsePre.nIRUQbb-.css","./IconCSS.Qy8jnwOg.js","./IconCSS.ZKlLp-Na.css","./article.5OuagtG6.js","./article.BIVGjHlQ.css","./useStudio.fjak5mNM.js","./useStudio.MGuw41gw.css","./error-404.OnErpc_e.js","./error-404.vdUK6ycY.css","./error-500.bnmY8Isf.js","./error-500.NeFAvDTs.css"] + } + return indexes.map((i) => __vite__mapDeps.viteFileDeps[i]) +} +/** +* @vue/shared v3.4.15 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function Is(e,t){const n=new Set(e.split(","));return t?r=>n.has(r.toLowerCase()):r=>n.has(r)}const me={},dn=[],Qe=()=>{},_f=()=>!1,cr=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Os=e=>e.startsWith("onUpdate:"),Pe=Object.assign,$s=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},vf=Object.prototype.hasOwnProperty,ie=(e,t)=>vf.call(e,t),J=Array.isArray,hn=e=>lr(e)==="[object Map]",kc=e=>lr(e)==="[object Set]",bf=e=>lr(e)==="[object RegExp]",Z=e=>typeof e=="function",_e=e=>typeof e=="string",Cn=e=>typeof e=="symbol",pe=e=>e!==null&&typeof e=="object",Ms=e=>(pe(e)||Z(e))&&Z(e.then)&&Z(e.catch),Rc=Object.prototype.toString,lr=e=>Rc.call(e),wf=e=>lr(e).slice(8,-1),Ac=e=>lr(e)==="[object Object]",Ns=e=>_e(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Hn=Is(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),ro=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Ef=/-(\w)/g,ft=ro(e=>e.replace(Ef,(t,n)=>n?n.toUpperCase():"")),Cf=/\B([A-Z])/g,Pn=ro(e=>e.replace(Cf,"-$1").toLowerCase()),oo=ro(e=>e.charAt(0).toUpperCase()+e.slice(1)),wo=ro(e=>e?`on${oo(e)}`:""),Ht=(e,t)=>!Object.is(e,t),jn=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Pf=e=>{const t=parseFloat(e);return isNaN(t)?e:t},xc=e=>{const t=_e(e)?Number(e):NaN;return isNaN(t)?e:t};let Mi;const Lc=()=>Mi||(Mi=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Tn(e){if(J(e)){const t={};for(let n=0;n{if(n){const r=n.split(Sf);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function Ke(e){let t="";if(_e(e))t=e;else if(J(e))for(let n=0;n_e(e)?e:e==null?"":J(e)||pe(e)&&(e.toString===Rc||!Z(e.toString))?JSON.stringify(e,Oc,2):String(e),Oc=(e,t)=>t&&t.__v_isRef?Oc(e,t.value):hn(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,o],s)=>(n[Eo(r,s)+" =>"]=o,n),{})}:kc(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>Eo(n))}:Cn(t)?Eo(t):pe(t)&&!J(t)&&!Ac(t)?String(t):t,Eo=(e,t="")=>{var n;return Cn(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** +* @vue/reactivity v3.4.15 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Ue;class $c{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Ue,!t&&Ue&&(this.index=(Ue.scopes||(Ue.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=Ue;try{return Ue=this,t()}finally{Ue=n}}}on(){Ue=this}off(){Ue=this.parent}stop(t){if(this._active){let n,r;for(n=0,r=this.effects.length;n=2))break}this._dirtyLevel<2&&(this._dirtyLevel=0),rn()}return this._dirtyLevel>=2}set dirty(t){this._dirtyLevel=t?2:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=It,n=Jt;try{return It=!0,Jt=this,this._runnings++,Ni(this),this.fn()}finally{Hi(this),this._runnings--,Jt=n,It=t}}stop(){var t;this.active&&(Ni(this),Hi(this),(t=this.onStop)==null||t.call(this),this.active=!1)}}function $f(e){return e.value}function Ni(e){e._trackId++,e._depsLength=0}function Hi(e){if(e.deps&&e.deps.length>e._depsLength){for(let t=e._depsLength;t{const n=new Map;return n.cleanup=e,n.computed=t,n},Br=new WeakMap,Xt=Symbol(""),Uo=Symbol("");function Ve(e,t,n){if(It&&Jt){let r=Br.get(e);r||Br.set(e,r=new Map);let o=r.get(n);o||r.set(n,o=Bc(()=>r.delete(n))),Hc(Jt,o)}}function gt(e,t,n,r,o,s){const i=Br.get(e);if(!i)return;let a=[];if(t==="clear")a=[...i.values()];else if(n==="length"&&J(e)){const c=Number(r);i.forEach((u,l)=>{(l==="length"||!Cn(l)&&l>=c)&&a.push(u)})}else switch(n!==void 0&&a.push(i.get(n)),t){case"add":J(e)?Ns(n)&&a.push(i.get("length")):(a.push(i.get(Xt)),hn(e)&&a.push(i.get(Uo)));break;case"delete":J(e)||(a.push(i.get(Xt)),hn(e)&&a.push(i.get(Uo)));break;case"set":hn(e)&&a.push(i.get(Xt));break}Ds();for(const c of a)c&&jc(c,2);Bs()}function Mf(e,t){var n;return(n=Br.get(e))==null?void 0:n.get(t)}const Nf=Is("__proto__,__v_isRef,__isVue"),Fc=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Cn)),ji=Hf();function Hf(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const r=ae(this);for(let s=0,i=this.length;s{e[t]=function(...n){nn(),Ds();const r=ae(this)[t].apply(this,n);return Bs(),rn(),r}}),e}function jf(e){const t=ae(this);return Ve(t,"has",e),t.hasOwnProperty(e)}class Vc{constructor(t=!1,n=!1){this._isReadonly=t,this._shallow=n}get(t,n,r){const o=this._isReadonly,s=this._shallow;if(n==="__v_isReactive")return!o;if(n==="__v_isReadonly")return o;if(n==="__v_isShallow")return s;if(n==="__v_raw")return r===(o?s?Xf:Wc:s?Kc:Uc).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(r)?t:void 0;const i=J(t);if(!o){if(i&&ie(ji,n))return Reflect.get(ji,n,r);if(n==="hasOwnProperty")return jf}const a=Reflect.get(t,n,r);return(Cn(n)?Fc.has(n):Nf(n))||(o||Ve(t,"get",n),s)?a:Ae(a)?i&&Ns(n)?a:a.value:pe(a)?o?qc(a):rt(a):a}}class zc extends Vc{constructor(t=!1){super(!1,t)}set(t,n,r,o){let s=t[n];if(!this._shallow){const c=Zt(s);if(!Fr(r)&&!Zt(r)&&(s=ae(s),r=ae(r)),!J(t)&&Ae(s)&&!Ae(r))return c?!1:(s.value=r,!0)}const i=J(t)&&Ns(n)?Number(n)e,so=e=>Reflect.getPrototypeOf(e);function yr(e,t,n=!1,r=!1){e=e.__v_raw;const o=ae(e),s=ae(t);n||(Ht(t,s)&&Ve(o,"get",t),Ve(o,"get",s));const{has:i}=so(o),a=r?Fs:n?Us:Jn;if(i.call(o,t))return a(e.get(t));if(i.call(o,s))return a(e.get(s));e!==o&&e.get(t)}function _r(e,t=!1){const n=this.__v_raw,r=ae(n),o=ae(e);return t||(Ht(e,o)&&Ve(r,"has",e),Ve(r,"has",o)),e===o?n.has(e):n.has(e)||n.has(o)}function vr(e,t=!1){return e=e.__v_raw,!t&&Ve(ae(e),"iterate",Xt),Reflect.get(e,"size",e)}function Di(e){e=ae(e);const t=ae(this);return so(t).has.call(t,e)||(t.add(e),gt(t,"add",e,e)),this}function Bi(e,t){t=ae(t);const n=ae(this),{has:r,get:o}=so(n);let s=r.call(n,e);s||(e=ae(e),s=r.call(n,e));const i=o.call(n,e);return n.set(e,t),s?Ht(t,i)&>(n,"set",e,t):gt(n,"add",e,t),this}function Fi(e){const t=ae(this),{has:n,get:r}=so(t);let o=n.call(t,e);o||(e=ae(e),o=n.call(t,e)),r&&r.call(t,e);const s=t.delete(e);return o&>(t,"delete",e,void 0),s}function Vi(){const e=ae(this),t=e.size!==0,n=e.clear();return t&>(e,"clear",void 0,void 0),n}function br(e,t){return function(r,o){const s=this,i=s.__v_raw,a=ae(i),c=t?Fs:e?Us:Jn;return!e&&Ve(a,"iterate",Xt),i.forEach((u,l)=>r.call(o,c(u),c(l),s))}}function wr(e,t,n){return function(...r){const o=this.__v_raw,s=ae(o),i=hn(s),a=e==="entries"||e===Symbol.iterator&&i,c=e==="keys"&&i,u=o[e](...r),l=n?Fs:t?Us:Jn;return!t&&Ve(s,"iterate",c?Uo:Xt),{next(){const{value:f,done:d}=u.next();return d?{value:f,done:d}:{value:a?[l(f[0]),l(f[1])]:l(f),done:d}},[Symbol.iterator](){return this}}}}function wt(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function zf(){const e={get(s){return yr(this,s)},get size(){return vr(this)},has:_r,add:Di,set:Bi,delete:Fi,clear:Vi,forEach:br(!1,!1)},t={get(s){return yr(this,s,!1,!0)},get size(){return vr(this)},has:_r,add:Di,set:Bi,delete:Fi,clear:Vi,forEach:br(!1,!0)},n={get(s){return yr(this,s,!0)},get size(){return vr(this,!0)},has(s){return _r.call(this,s,!0)},add:wt("add"),set:wt("set"),delete:wt("delete"),clear:wt("clear"),forEach:br(!0,!1)},r={get(s){return yr(this,s,!0,!0)},get size(){return vr(this,!0)},has(s){return _r.call(this,s,!0)},add:wt("add"),set:wt("set"),delete:wt("delete"),clear:wt("clear"),forEach:br(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(s=>{e[s]=wr(s,!1,!1),n[s]=wr(s,!0,!1),t[s]=wr(s,!1,!0),r[s]=wr(s,!0,!0)}),[e,n,t,r]}const[Uf,Kf,Wf,qf]=zf();function Vs(e,t){const n=t?e?qf:Wf:e?Kf:Uf;return(r,o,s)=>o==="__v_isReactive"?!e:o==="__v_isReadonly"?e:o==="__v_raw"?r:Reflect.get(ie(n,o)&&o in r?n:r,o,s)}const Gf={get:Vs(!1,!1)},Qf={get:Vs(!1,!0)},Jf={get:Vs(!0,!1)},Uc=new WeakMap,Kc=new WeakMap,Wc=new WeakMap,Xf=new WeakMap;function Yf(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Zf(e){return e.__v_skip||!Object.isExtensible(e)?0:Yf(wf(e))}function rt(e){return Zt(e)?e:zs(e,!1,Bf,Gf,Uc)}function Ot(e){return zs(e,!1,Vf,Qf,Kc)}function qc(e){return zs(e,!0,Ff,Jf,Wc)}function zs(e,t,n,r,o){if(!pe(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const s=o.get(e);if(s)return s;const i=Zf(e);if(i===0)return e;const a=new Proxy(e,i===2?r:n);return o.set(e,a),a}function pn(e){return Zt(e)?pn(e.__v_raw):!!(e&&e.__v_isReactive)}function Zt(e){return!!(e&&e.__v_isReadonly)}function Fr(e){return!!(e&&e.__v_isShallow)}function Gc(e){return pn(e)||Zt(e)}function ae(e){const t=e&&e.__v_raw;return t?ae(t):e}function Qc(e){return Dr(e,"__v_skip",!0),e}const Jn=e=>pe(e)?rt(e):e,Us=e=>pe(e)?qc(e):e;class Jc{constructor(t,n,r,o){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new js(()=>t(this._value),()=>Dn(this,1),()=>this.dep&&Dc(this.dep)),this.effect.computed=this,this.effect.active=this._cacheable=!o,this.__v_isReadonly=r}get value(){const t=ae(this);return(!t._cacheable||t.effect.dirty)&&Ht(t._value,t._value=t.effect.run())&&Dn(t,2),Ks(t),t.effect._dirtyLevel>=1&&Dn(t,1),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function ed(e,t,n=!1){let r,o;const s=Z(e);return s?(r=e,o=Qe):(r=e.get,o=e.set),new Jc(r,o,s||!o,n)}function Ks(e){It&&Jt&&(e=ae(e),Hc(Jt,e.dep||(e.dep=Bc(()=>e.dep=void 0,e instanceof Jc?e:void 0))))}function Dn(e,t=2,n){e=ae(e);const r=e.dep;r&&jc(r,t)}function Ae(e){return!!(e&&e.__v_isRef===!0)}function ve(e){return Xc(e,!1)}function $t(e){return Xc(e,!0)}function Xc(e,t){return Ae(e)?e:new td(e,t)}class td{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:ae(t),this._value=n?t:Jn(t)}get value(){return Ks(this),this._value}set value(t){const n=this.__v_isShallow||Fr(t)||Zt(t);t=n?t:ae(t),Ht(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:Jn(t),Dn(this,2))}}function H(e){return Ae(e)?e.value:e}const nd={get:(e,t,n)=>H(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const o=e[t];return Ae(o)&&!Ae(n)?(o.value=n,!0):Reflect.set(e,t,n,r)}};function Yc(e){return pn(e)?e:new Proxy(e,nd)}class rd{constructor(t){this.dep=void 0,this.__v_isRef=!0;const{get:n,set:r}=t(()=>Ks(this),()=>Dn(this));this._get=n,this._set=r}get value(){return this._get()}set value(t){this._set(t)}}function od(e){return new rd(e)}function fE(e){const t=J(e)?new Array(e.length):{};for(const n in e)t[n]=el(e,n);return t}class sd{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return Mf(ae(this._object),this._key)}}class id{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Zc(e,t,n){return Ae(e)?e:Z(e)?new id(e):pe(e)&&arguments.length>1?el(e,t,n):ve(e)}function el(e,t,n){const r=e[t];return Ae(r)?r:new sd(e,t,n)}/** +* @vue/runtime-core v3.4.15 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function Mt(e,t,n,r){let o;try{o=r?e(...r):e()}catch(s){Sn(s,t,n)}return o}function Xe(e,t,n,r){if(Z(e)){const s=Mt(e,t,n,r);return s&&Ms(s)&&s.catch(i=>{Sn(i,t,n)}),s}const o=[];for(let s=0;s>>1,o=Ie[r],s=Yn(o);sut&&Ie.splice(t,1)}function Wo(e){J(e)?mn.push(...e):(!St||!St.includes(e,e.allowRecurse?qt+1:qt))&&mn.push(e),nl()}function zi(e,t,n=Xn?ut+1:0){for(;nYn(n)-Yn(r));if(mn.length=0,St){St.push(...t);return}for(St=t,qt=0;qte.id==null?1/0:e.id,ud=(e,t)=>{const n=Yn(e)-Yn(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function rl(e){Ko=!1,Xn=!0,Ie.sort(ud);try{for(ut=0;ut_e(h)?h.trim():h)),f&&(o=n.map(Pf))}let a,c=r[a=wo(t)]||r[a=wo(ft(t))];!c&&s&&(c=r[a=wo(Pn(t))]),c&&Xe(c,e,6,o);const u=r[a+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[a])return;e.emitted[a]=!0,Xe(u,e,6,o)}}function ol(e,t,n=!1){const r=t.emitsCache,o=r.get(e);if(o!==void 0)return o;const s=e.emits;let i={},a=!1;if(!Z(e)){const c=u=>{const l=ol(u,t,!0);l&&(a=!0,Pe(i,l))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!s&&!a?(pe(e)&&r.set(e,null),null):(J(s)?s.forEach(c=>i[c]=null):Pe(i,s),pe(e)&&r.set(e,i),i)}function ao(e,t){return!e||!cr(t)?!1:(t=t.slice(2).replace(/Once$/,""),ie(e,t[0].toLowerCase()+t.slice(1))||ie(e,Pn(t))||ie(e,t))}let Ee=null,co=null;function zr(e){const t=Ee;return Ee=e,co=e&&e.type.__scopeId||null,t}function qs(e){co=e}function Gs(){co=null}function Ye(e,t=Ee,n){if(!t||e._n)return e;const r=(...o)=>{r._d&&na(-1);const s=zr(t);let i;try{i=e(...o)}finally{zr(s),r._d&&na(1)}return i};return r._n=!0,r._c=!0,r._d=!0,r}function Co(e){const{type:t,vnode:n,proxy:r,withProxy:o,props:s,propsOptions:[i],slots:a,attrs:c,emit:u,render:l,renderCache:f,data:d,setupState:h,ctx:m,inheritAttrs:y}=e;let b,E;const v=zr(e);try{if(n.shapeFlag&4){const w=o||r,P=w;b=Ge(l.call(P,w,f,s,h,d,m)),E=c}else{const w=t;b=Ge(w.length>1?w(s,{attrs:c,slots:a,emit:u}):w(s,null)),E=t.props?c:hd(c)}}catch(w){Vn.length=0,Sn(w,e,1),b=se(He)}let p=b;if(E&&y!==!1){const w=Object.keys(E),{shapeFlag:P}=p;w.length&&P&7&&(i&&w.some(Os)&&(E=pd(E,i)),p=yt(p,E))}return n.dirs&&(p=yt(p),p.dirs=p.dirs?p.dirs.concat(n.dirs):n.dirs),n.transition&&(p.transition=n.transition),b=p,zr(v),b}function dd(e,t=!0){let n;for(let r=0;r{let t;for(const n in e)(n==="class"||n==="style"||cr(n))&&((t||(t={}))[n]=e[n]);return t},pd=(e,t)=>{const n={};for(const r in e)(!Os(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function md(e,t,n){const{props:r,children:o,component:s}=e,{props:i,children:a,patchFlag:c}=t,u=s.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return r?Ui(r,i,u):!!i;if(c&8){const l=t.dynamicProps;for(let f=0;fe.__isSuspense;let qo=0;const yd={name:"Suspense",__isSuspense:!0,process(e,t,n,r,o,s,i,a,c,u){if(e==null)_d(t,n,r,o,s,i,a,c,u);else{if(s&&s.deps>0){t.suspense=e.suspense;return}vd(e,t,n,r,o,i,a,c,u)}},hydrate:bd,create:Ys,normalize:wd},cl=yd;function Zn(e,t){const n=e.props&&e.props[t];Z(n)&&n()}function _d(e,t,n,r,o,s,i,a,c){const{p:u,o:{createElement:l}}=c,f=l("div"),d=e.suspense=Ys(e,o,r,t,f,n,s,i,a,c);u(null,d.pendingBranch=e.ssContent,f,null,r,d,s,i),d.deps>0?(Zn(e,"onPending"),Zn(e,"onFallback"),u(null,e.ssFallback,t,n,r,null,s,i),gn(d,e.ssFallback)):d.resolve(!1,!0)}function vd(e,t,n,r,o,s,i,a,{p:c,um:u,o:{createElement:l}}){const f=t.suspense=e.suspense;f.vnode=t,t.el=e.el;const d=t.ssContent,h=t.ssFallback,{activeBranch:m,pendingBranch:y,isInFallback:b,isHydrating:E}=f;if(y)f.pendingBranch=d,nt(d,y)?(c(y,d,f.hiddenContainer,null,o,f,s,i,a),f.deps<=0?f.resolve():b&&(E||(c(m,h,n,r,o,null,s,i,a),gn(f,h)))):(f.pendingId=qo++,E?(f.isHydrating=!1,f.activeBranch=y):u(y,o,f),f.deps=0,f.effects.length=0,f.hiddenContainer=l("div"),b?(c(null,d,f.hiddenContainer,null,o,f,s,i,a),f.deps<=0?f.resolve():(c(m,h,n,r,o,null,s,i,a),gn(f,h))):m&&nt(d,m)?(c(m,d,n,r,o,f,s,i,a),f.resolve(!0)):(c(null,d,f.hiddenContainer,null,o,f,s,i,a),f.deps<=0&&f.resolve()));else if(m&&nt(d,m))c(m,d,n,r,o,f,s,i,a),gn(f,d);else if(Zn(t,"onPending"),f.pendingBranch=d,d.shapeFlag&512?f.pendingId=d.component.suspenseId:f.pendingId=qo++,c(null,d,f.hiddenContainer,null,o,f,s,i,a),f.deps<=0)f.resolve();else{const{timeout:v,pendingId:p}=f;v>0?setTimeout(()=>{f.pendingId===p&&f.fallback(h)},v):v===0&&f.fallback(h)}}function Ys(e,t,n,r,o,s,i,a,c,u,l=!1){const{p:f,m:d,um:h,n:m,o:{parentNode:y,remove:b}}=u;let E;const v=Ed(e);v&&t!=null&&t.pendingBranch&&(E=t.pendingId,t.deps++);const p=e.props?xc(e.props.timeout):void 0,w=s,P={vnode:e,parent:t,parentComponent:n,namespace:i,container:r,hiddenContainer:o,deps:0,pendingId:qo++,timeout:typeof p=="number"?p:-1,activeBranch:null,pendingBranch:null,isInFallback:!l,isHydrating:l,isUnmounted:!1,effects:[],resolve(C=!1,A=!1){const{vnode:x,activeBranch:D,pendingBranch:O,pendingId:Y,effects:M,parentComponent:X,container:de}=P;let he=!1;P.isHydrating?P.isHydrating=!1:C||(he=D&&O.transition&&O.transition.mode==="out-in",he&&(D.transition.afterLeave=()=>{Y===P.pendingId&&(d(O,de,s===w?m(D):s,0),Wo(M))}),D&&(y(D.el)!==P.hiddenContainer&&(s=m(D)),h(D,X,P,!0)),he||d(O,de,s,0)),gn(P,O),P.pendingBranch=null,P.isInFallback=!1;let K=P.parent,te=!1;for(;K;){if(K.pendingBranch){K.effects.push(...M),te=!0;break}K=K.parent}!te&&!he&&Wo(M),P.effects=[],v&&t&&t.pendingBranch&&E===t.pendingId&&(t.deps--,t.deps===0&&!A&&t.resolve()),Zn(x,"onResolve")},fallback(C){if(!P.pendingBranch)return;const{vnode:A,activeBranch:x,parentComponent:D,container:O,namespace:Y}=P;Zn(A,"onFallback");const M=m(x),X=()=>{P.isInFallback&&(f(null,C,O,M,D,null,Y,a,c),gn(P,C))},de=C.transition&&C.transition.mode==="out-in";de&&(x.transition.afterLeave=X),P.isInFallback=!0,h(x,D,null,!0),de||X()},move(C,A,x){P.activeBranch&&d(P.activeBranch,C,A,x),P.container=C},next(){return P.activeBranch&&m(P.activeBranch)},registerDep(C,A){const x=!!P.pendingBranch;x&&P.deps++;const D=C.vnode.el;C.asyncDep.catch(O=>{Sn(O,C,0)}).then(O=>{if(C.isUnmounted||P.isUnmounted||P.pendingId!==C.suspenseId)return;C.asyncResolved=!0;const{vnode:Y}=C;ts(C,O,!1),D&&(Y.el=D);const M=!D&&C.subTree.el;A(C,Y,y(D||C.subTree.el),D?null:m(C.subTree),P,i,c),M&&b(M),Qs(C,Y.el),x&&--P.deps===0&&P.resolve()})},unmount(C,A){P.isUnmounted=!0,P.activeBranch&&h(P.activeBranch,n,C,A),P.pendingBranch&&h(P.pendingBranch,n,C,A)}};return P}function bd(e,t,n,r,o,s,i,a,c){const u=t.suspense=Ys(t,r,n,e.parentNode,document.createElement("div"),null,o,s,i,a,!0),l=c(e,u.pendingBranch=t.ssContent,n,u,s,i);return u.deps===0&&u.resolve(!1,!0),l}function wd(e){const{shapeFlag:t,children:n}=e,r=t&32;e.ssContent=Wi(r?n.default:n),e.ssFallback=r?Wi(n.fallback):se(He)}function Wi(e){let t;if(Z(e)){const n=vn&&e._c;n&&(e._d=!1,ne()),e=e(),n&&(e._d=!0,t=Je,Ol())}return J(e)&&(e=dd(e)),e=Ge(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(n=>n!==e)),e}function ll(e,t){t&&t.pendingBranch?J(e)?t.effects.push(...e):t.effects.push(e):Wo(e)}function gn(e,t){e.activeBranch=t;const{vnode:n,parentComponent:r}=e;let o=t.el;for(;!o&&t.component;)t=t.component.subTree,o=t.el;n.el=o,r&&r.subTree===n&&(r.vnode.el=o,Qs(r,o))}function Ed(e){var t;return((t=e.props)==null?void 0:t.suspensible)!=null&&e.props.suspensible!==!1}const Cd=Symbol.for("v-scx"),Pd=()=>Oe(Cd);function Td(e,t){return lo(e,null,t)}function Sd(e,t){return lo(e,null,{flush:"post"})}const Er={};function Ne(e,t,n){return lo(e,t,n)}function lo(e,t,{immediate:n,deep:r,flush:o,once:s,onTrack:i,onTrigger:a}=me){if(t&&s){const C=t;t=(...A)=>{C(...A),P()}}const c=Ce,u=C=>r===!0?C:Gt(C,r===!1?1:void 0);let l,f=!1,d=!1;if(Ae(e)?(l=()=>e.value,f=Fr(e)):pn(e)?(l=()=>u(e),f=!0):J(e)?(d=!0,f=e.some(C=>pn(C)||Fr(C)),l=()=>e.map(C=>{if(Ae(C))return C.value;if(pn(C))return u(C);if(Z(C))return Mt(C,c,2)})):Z(e)?t?l=()=>Mt(e,c,2):l=()=>(h&&h(),Xe(e,c,3,[m])):l=Qe,t&&r){const C=l;l=()=>Gt(C())}let h,m=C=>{h=p.onStop=()=>{Mt(C,c,4),h=p.onStop=void 0}},y;if(hr)if(m=Qe,t?n&&Xe(t,c,3,[l(),d?[]:void 0,m]):l(),o==="sync"){const C=Pd();y=C.__watcherHandles||(C.__watcherHandles=[])}else return Qe;let b=d?new Array(e.length).fill(Er):Er;const E=()=>{if(!(!p.active||!p.dirty))if(t){const C=p.run();(r||f||(d?C.some((A,x)=>Ht(A,b[x])):Ht(C,b)))&&(h&&h(),Xe(t,c,3,[C,b===Er?void 0:d&&b[0]===Er?[]:b,m]),b=C)}else p.run()};E.allowRecurse=!!t;let v;o==="sync"?v=E:o==="post"?v=()=>ke(E,c&&c.suspense):(E.pre=!0,c&&(E.id=c.uid),v=()=>io(E));const p=new js(l,Qe,v),w=Hs(),P=()=>{p.stop(),w&&$s(w.effects,p)};return t?n?E():b=p.run():o==="post"?ke(p.run.bind(p),c&&c.suspense):p.run(),y&&y.push(P),P}function kd(e,t,n){const r=this.proxy,o=_e(e)?e.includes(".")?ul(r,e):()=>r[e]:e.bind(r,r);let s;Z(t)?s=t:(s=t.handler,n=t);const i=en(this),a=lo(o,s.bind(r),n);return i(),a}function ul(e,t){const n=t.split(".");return()=>{let r=e;for(let o=0;o0){if(n>=t)return e;n++}if(r=r||new Set,r.has(e))return e;if(r.add(e),Ae(e))Gt(e.value,t,n,r);else if(J(e))for(let o=0;o{Gt(o,t,n,r)});else if(Ac(e))for(const o in e)Gt(e[o],t,n,r);return e}function dE(e,t){if(Ee===null)return e;const n=ho(Ee)||Ee.proxy,r=e.dirs||(e.dirs=[]);for(let o=0;o{e.isMounted=!0}),Rn(()=>{e.isUnmounting=!0}),e}const qe=[Function,Array],fl={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:qe,onEnter:qe,onAfterEnter:qe,onEnterCancelled:qe,onBeforeLeave:qe,onLeave:qe,onAfterLeave:qe,onLeaveCancelled:qe,onBeforeAppear:qe,onAppear:qe,onAfterAppear:qe,onAppearCancelled:qe},Ad={name:"BaseTransition",props:fl,setup(e,{slots:t}){const n=Ft(),r=Rd();let o;return()=>{const s=t.default&&hl(t.default(),!0);if(!s||!s.length)return;let i=s[0];if(s.length>1){for(const y of s)if(y.type!==He){i=y;break}}const a=ae(e),{mode:c}=a;if(r.isLeaving)return Po(i);const u=qi(i);if(!u)return Po(i);const l=Go(u,a,r,n);Ur(u,l);const f=n.subTree,d=f&&qi(f);let h=!1;const{getTransitionKey:m}=u.type;if(m){const y=m();o===void 0?o=y:y!==o&&(o=y,h=!0)}if(d&&d.type!==He&&(!nt(u,d)||h)){const y=Go(d,a,r,n);if(Ur(d,y),c==="out-in")return r.isLeaving=!0,y.afterLeave=()=>{r.isLeaving=!1,n.update.active!==!1&&(n.effect.dirty=!0,n.update())},Po(i);c==="in-out"&&u.type!==He&&(y.delayLeave=(b,E,v)=>{const p=dl(r,d);p[String(d.key)]=d,b[kt]=()=>{E(),b[kt]=void 0,delete l.delayedLeave},l.delayedLeave=v})}return i}}},xd=Ad;function dl(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function Go(e,t,n,r){const{appear:o,mode:s,persisted:i=!1,onBeforeEnter:a,onEnter:c,onAfterEnter:u,onEnterCancelled:l,onBeforeLeave:f,onLeave:d,onAfterLeave:h,onLeaveCancelled:m,onBeforeAppear:y,onAppear:b,onAfterAppear:E,onAppearCancelled:v}=t,p=String(e.key),w=dl(n,e),P=(x,D)=>{x&&Xe(x,r,9,D)},C=(x,D)=>{const O=D[1];P(x,D),J(x)?x.every(Y=>Y.length<=1)&&O():x.length<=1&&O()},A={mode:s,persisted:i,beforeEnter(x){let D=a;if(!n.isMounted)if(o)D=y||a;else return;x[kt]&&x[kt](!0);const O=w[p];O&&nt(e,O)&&O.el[kt]&&O.el[kt](),P(D,[x])},enter(x){let D=c,O=u,Y=l;if(!n.isMounted)if(o)D=b||c,O=E||u,Y=v||l;else return;let M=!1;const X=x[Cr]=de=>{M||(M=!0,de?P(Y,[x]):P(O,[x]),A.delayedLeave&&A.delayedLeave(),x[Cr]=void 0)};D?C(D,[x,X]):X()},leave(x,D){const O=String(e.key);if(x[Cr]&&x[Cr](!0),n.isUnmounting)return D();P(f,[x]);let Y=!1;const M=x[kt]=X=>{Y||(Y=!0,D(),X?P(m,[x]):P(h,[x]),x[kt]=void 0,w[O]===e&&delete w[O])};w[O]=e,d?C(d,[x,M]):M()},clone(x){return Go(x,t,n,r)}};return A}function Po(e){if(fr(e))return e=yt(e),e.children=null,e}function qi(e){return fr(e)?e.children?e.children[0]:void 0:e}function Ur(e,t){e.shapeFlag&6&&e.component?Ur(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function hl(e,t=!1,n){let r=[],o=0;for(let s=0;s1)for(let s=0;s!!e.type.__asyncLoader;/*! #__NO_SIDE_EFFECTS__ */function $(e){Z(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:o=200,timeout:s,suspensible:i=!0,onError:a}=e;let c=null,u,l=0;const f=()=>(l++,c=null,d()),d=()=>{let h;return c||(h=c=t().catch(m=>{if(m=m instanceof Error?m:new Error(String(m)),a)return new Promise((y,b)=>{a(m,()=>y(f()),()=>b(m),l+1)});throw m}).then(m=>h!==c&&c?c:(m&&(m.__esModule||m[Symbol.toStringTag]==="Module")&&(m=m.default),u=m,m)))};return xe({name:"AsyncComponentWrapper",__asyncLoader:d,get __asyncResolved(){return u},setup(){const h=Ce;if(u)return()=>To(u,h);const m=v=>{c=null,Sn(v,h,13,!r)};if(i&&h.suspense||hr)return d().then(v=>()=>To(v,h)).catch(v=>(m(v),()=>r?se(r,{error:v}):null));const y=ve(!1),b=ve(),E=ve(!!o);return o&&setTimeout(()=>{E.value=!1},o),s!=null&&setTimeout(()=>{if(!y.value&&!b.value){const v=new Error(`Async component timed out after ${s}ms.`);m(v),b.value=v}},s),d().then(()=>{y.value=!0,h.parent&&fr(h.parent.vnode)&&(h.parent.effect.dirty=!0,io(h.parent.update))}).catch(v=>{m(v),b.value=v}),()=>{if(y.value&&u)return To(u,h);if(b.value&&r)return se(r,{error:b.value});if(n&&!E.value)return se(n)}}})}function To(e,t){const{ref:n,props:r,children:o,ce:s}=t.vnode,i=se(e,r,o);return i.ref=n,i.ce=s,delete t.vnode.ce,i}const fr=e=>e.type.__isKeepAlive,Ld={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=Ft(),r=n.ctx;if(!r.renderer)return()=>{const v=t.default&&t.default();return v&&v.length===1?v[0]:v};const o=new Map,s=new Set;let i=null;const a=n.suspense,{renderer:{p:c,m:u,um:l,o:{createElement:f}}}=r,d=f("div");r.activate=(v,p,w,P,C)=>{const A=v.component;u(v,p,w,0,a),c(A.vnode,v,p,w,A,a,P,v.slotScopeIds,C),ke(()=>{A.isDeactivated=!1,A.a&&jn(A.a);const x=v.props&&v.props.onVnodeMounted;x&&Fe(x,A.parent,v)},a)},r.deactivate=v=>{const p=v.component;u(v,d,null,1,a),ke(()=>{p.da&&jn(p.da);const w=v.props&&v.props.onVnodeUnmounted;w&&Fe(w,p.parent,v),p.isDeactivated=!0},a)};function h(v){So(v),l(v,n,a,!0)}function m(v){o.forEach((p,w)=>{const P=ns(p.type);P&&(!v||!v(P))&&y(w)})}function y(v){const p=o.get(v);!i||!nt(p,i)?h(p):i&&So(i),o.delete(v),s.delete(v)}Ne(()=>[e.include,e.exclude],([v,p])=>{v&&m(w=>$n(v,w)),p&&m(w=>!$n(p,w))},{flush:"post",deep:!0});let b=null;const E=()=>{b!=null&&o.set(b,ko(n.subTree))};return kn(E),yl(E),Rn(()=>{o.forEach(v=>{const{subTree:p,suspense:w}=n,P=ko(p);if(v.type===P.type&&v.key===P.key){So(P);const C=P.component.da;C&&ke(C,w);return}h(v)})}),()=>{if(b=null,!t.default)return null;const v=t.default(),p=v[0];if(v.length>1)return i=null,v;if(!bn(p)||!(p.shapeFlag&4)&&!(p.shapeFlag&128))return i=null,p;let w=ko(p);const P=w.type,C=ns(Yt(w)?w.type.__asyncResolved||{}:P),{include:A,exclude:x,max:D}=e;if(A&&(!C||!$n(A,C))||x&&C&&$n(x,C))return i=w,p;const O=w.key==null?P:w.key,Y=o.get(O);return w.el&&(w=yt(w),p.shapeFlag&128&&(p.ssContent=w)),b=O,Y?(w.el=Y.el,w.component=Y.component,w.transition&&Ur(w,w.transition),w.shapeFlag|=512,s.delete(O),s.add(O)):(s.add(O),D&&s.size>parseInt(D,10)&&y(s.values().next().value)),w.shapeFlag|=256,i=w,al(p.type)?p:w}}},Id=Ld;function $n(e,t){return J(e)?e.some(n=>$n(n,t)):_e(e)?e.split(",").includes(t):bf(e)?e.test(t):!1}function pl(e,t){gl(e,"a",t)}function ml(e,t){gl(e,"da",t)}function gl(e,t,n=Ce){const r=e.__wdc||(e.__wdc=()=>{let o=n;for(;o;){if(o.isDeactivated)return;o=o.parent}return e()});if(uo(t,r,n),n){let o=n.parent;for(;o&&o.parent;)fr(o.parent.vnode)&&Od(r,t,n,o),o=o.parent}}function Od(e,t,n,r){const o=uo(t,e,r,!0);Zs(()=>{$s(r[t],o)},n)}function So(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function ko(e){return e.shapeFlag&128?e.ssContent:e}function uo(e,t,n=Ce,r=!1){if(n){const o=n[e]||(n[e]=[]),s=t.__weh||(t.__weh=(...i)=>{if(n.isUnmounted)return;nn();const a=en(n),c=Xe(t,n,e,i);return a(),rn(),c});return r?o.unshift(s):o.push(s),s}}const vt=e=>(t,n=Ce)=>(!hr||e==="sp")&&uo(e,(...r)=>t(...r),n),$d=vt("bm"),kn=vt("m"),Md=vt("bu"),yl=vt("u"),Rn=vt("bum"),Zs=vt("um"),Nd=vt("sp"),Hd=vt("rtg"),jd=vt("rtc");function _l(e,t=Ce){uo("ec",e,t)}function vl(e,t,n,r){let o;const s=n&&n[r];if(J(e)||_e(e)){o=new Array(e.length);for(let i=0,a=e.length;it(i,a,void 0,s&&s[a]));else{const i=Object.keys(e);o=new Array(i.length);for(let a=0,c=i.length;abn(t)?!(t.type===He||t.type===we&&!bl(t.children)):!0)?e:null}const Qo=e=>e?Hl(e)?ho(e)||e.proxy:Qo(e.parent):null,Bn=Pe(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Qo(e.parent),$root:e=>Qo(e.root),$emit:e=>e.emit,$options:e=>ti(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,io(e.update)}),$nextTick:e=>e.n||(e.n=Bt.bind(e.proxy)),$watch:e=>kd.bind(e)}),Ro=(e,t)=>e!==me&&!e.__isScriptSetup&&ie(e,t),Dd={get({_:e},t){const{ctx:n,setupState:r,data:o,props:s,accessCache:i,type:a,appContext:c}=e;let u;if(t[0]!=="$"){const h=i[t];if(h!==void 0)switch(h){case 1:return r[t];case 2:return o[t];case 4:return n[t];case 3:return s[t]}else{if(Ro(r,t))return i[t]=1,r[t];if(o!==me&&ie(o,t))return i[t]=2,o[t];if((u=e.propsOptions[0])&&ie(u,t))return i[t]=3,s[t];if(n!==me&&ie(n,t))return i[t]=4,n[t];Jo&&(i[t]=0)}}const l=Bn[t];let f,d;if(l)return t==="$attrs"&&Ve(e,"get",t),l(e);if((f=a.__cssModules)&&(f=f[t]))return f;if(n!==me&&ie(n,t))return i[t]=4,n[t];if(d=c.config.globalProperties,ie(d,t))return d[t]},set({_:e},t,n){const{data:r,setupState:o,ctx:s}=e;return Ro(o,t)?(o[t]=n,!0):r!==me&&ie(r,t)?(r[t]=n,!0):ie(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(s[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:o,propsOptions:s}},i){let a;return!!n[i]||e!==me&&ie(e,i)||Ro(t,i)||(a=s[0])&&ie(a,i)||ie(r,i)||ie(Bn,i)||ie(o.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:ie(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function hE(){return Bd().slots}function Bd(){const e=Ft();return e.setupContext||(e.setupContext=Dl(e))}function Gi(e){return J(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}function Fd(e){const t=Ft();let n=e();return es(),Ms(n)&&(n=n.catch(r=>{throw en(t),r})),[n,()=>en(t)]}let Jo=!0;function Vd(e){const t=ti(e),n=e.proxy,r=e.ctx;Jo=!1,t.beforeCreate&&Qi(t.beforeCreate,e,"bc");const{data:o,computed:s,methods:i,watch:a,provide:c,inject:u,created:l,beforeMount:f,mounted:d,beforeUpdate:h,updated:m,activated:y,deactivated:b,beforeDestroy:E,beforeUnmount:v,destroyed:p,unmounted:w,render:P,renderTracked:C,renderTriggered:A,errorCaptured:x,serverPrefetch:D,expose:O,inheritAttrs:Y,components:M,directives:X,filters:de}=t;if(u&&zd(u,r,null),i)for(const te in i){const q=i[te];Z(q)&&(r[te]=q.bind(n))}if(o){const te=o.call(n,n);pe(te)&&(e.data=rt(te))}if(Jo=!0,s)for(const te in s){const q=s[te],Ze=Z(q)?q.bind(n,n):Z(q.get)?q.get.bind(n,n):Qe,bt=!Z(q)&&Z(q.set)?q.set.bind(n):Qe,it=oe({get:Ze,set:bt});Object.defineProperty(r,te,{enumerable:!0,configurable:!0,get:()=>it.value,set:De=>it.value=De})}if(a)for(const te in a)wl(a[te],r,n,te);if(c){const te=Z(c)?c.call(n):c;Reflect.ownKeys(te).forEach(q=>{yn(q,te[q])})}l&&Qi(l,e,"c");function K(te,q){J(q)?q.forEach(Ze=>te(Ze.bind(n))):q&&te(q.bind(n))}if(K($d,f),K(kn,d),K(Md,h),K(yl,m),K(pl,y),K(ml,b),K(_l,x),K(jd,C),K(Hd,A),K(Rn,v),K(Zs,w),K(Nd,D),J(O))if(O.length){const te=e.exposed||(e.exposed={});O.forEach(q=>{Object.defineProperty(te,q,{get:()=>n[q],set:Ze=>n[q]=Ze})})}else e.exposed||(e.exposed={});P&&e.render===Qe&&(e.render=P),Y!=null&&(e.inheritAttrs=Y),M&&(e.components=M),X&&(e.directives=X)}function zd(e,t,n=Qe){J(e)&&(e=Xo(e));for(const r in e){const o=e[r];let s;pe(o)?"default"in o?s=Oe(o.from||r,o.default,!0):s=Oe(o.from||r):s=Oe(o),Ae(s)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>s.value,set:i=>s.value=i}):t[r]=s}}function Qi(e,t,n){Xe(J(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function wl(e,t,n,r){const o=r.includes(".")?ul(n,r):()=>n[r];if(_e(e)){const s=t[e];Z(s)&&Ne(o,s)}else if(Z(e))Ne(o,e.bind(n));else if(pe(e))if(J(e))e.forEach(s=>wl(s,t,n,r));else{const s=Z(e.handler)?e.handler.bind(n):t[e.handler];Z(s)&&Ne(o,s,e)}}function ti(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:o,optionsCache:s,config:{optionMergeStrategies:i}}=e.appContext,a=s.get(t);let c;return a?c=a:!o.length&&!n&&!r?c=t:(c={},o.length&&o.forEach(u=>Kr(c,u,i,!0)),Kr(c,t,i)),pe(t)&&s.set(t,c),c}function Kr(e,t,n,r=!1){const{mixins:o,extends:s}=t;s&&Kr(e,s,n,!0),o&&o.forEach(i=>Kr(e,i,n,!0));for(const i in t)if(!(r&&i==="expose")){const a=Ud[i]||n&&n[i];e[i]=a?a(e[i],t[i]):t[i]}return e}const Ud={data:Ji,props:Xi,emits:Xi,methods:Mn,computed:Mn,beforeCreate:Me,created:Me,beforeMount:Me,mounted:Me,beforeUpdate:Me,updated:Me,beforeDestroy:Me,beforeUnmount:Me,destroyed:Me,unmounted:Me,activated:Me,deactivated:Me,errorCaptured:Me,serverPrefetch:Me,components:Mn,directives:Mn,watch:Wd,provide:Ji,inject:Kd};function Ji(e,t){return t?e?function(){return Pe(Z(e)?e.call(this,this):e,Z(t)?t.call(this,this):t)}:t:e}function Kd(e,t){return Mn(Xo(e),Xo(t))}function Xo(e){if(J(e)){const t={};for(let n=0;n1)return n&&Z(t)?t.call(r&&r.proxy):t}}function Cl(){return!!(Ce||Ee||er)}function Qd(e,t,n,r=!1){const o={},s={};Dr(s,fo,1),e.propsDefaults=Object.create(null),Pl(e,t,o,s);for(const i in e.propsOptions[0])i in o||(o[i]=void 0);n?e.props=r?o:Ot(o):e.type.props?e.props=o:e.props=s,e.attrs=s}function Jd(e,t,n,r){const{props:o,attrs:s,vnode:{patchFlag:i}}=e,a=ae(o),[c]=e.propsOptions;let u=!1;if((r||i>0)&&!(i&16)){if(i&8){const l=e.vnode.dynamicProps;for(let f=0;f{c=!0;const[d,h]=Tl(f,t,!0);Pe(i,d),h&&a.push(...h)};!n&&t.mixins.length&&t.mixins.forEach(l),e.extends&&l(e.extends),e.mixins&&e.mixins.forEach(l)}if(!s&&!c)return pe(e)&&r.set(e,dn),dn;if(J(s))for(let l=0;l-1,h[1]=y<0||m-1||ie(h,"default"))&&a.push(f)}}}const u=[i,a];return pe(e)&&r.set(e,u),u}function Yi(e){return e[0]!=="$"}function Zi(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:e===null?"null":""}function ea(e,t){return Zi(e)===Zi(t)}function ta(e,t){return J(t)?t.findIndex(n=>ea(n,e)):Z(t)&&ea(t,e)?0:-1}const Sl=e=>e[0]==="_"||e==="$stable",ni=e=>J(e)?e.map(Ge):[Ge(e)],Xd=(e,t,n)=>{if(t._n)return t;const r=Ye((...o)=>ni(t(...o)),n);return r._c=!1,r},kl=(e,t,n)=>{const r=e._ctx;for(const o in e){if(Sl(o))continue;const s=e[o];if(Z(s))t[o]=Xd(o,s,r);else if(s!=null){const i=ni(s);t[o]=()=>i}}},Rl=(e,t)=>{const n=ni(t);e.slots.default=()=>n},Yd=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=ae(t),Dr(t,"_",n)):kl(t,e.slots={})}else e.slots={},t&&Rl(e,t);Dr(e.slots,fo,1)},Zd=(e,t,n)=>{const{vnode:r,slots:o}=e;let s=!0,i=me;if(r.shapeFlag&32){const a=t._;a?n&&a===1?s=!1:(Pe(o,t),!n&&a===1&&delete o._):(s=!t.$stable,kl(t,o)),i=t}else t&&(Rl(e,t),i={default:1});if(s)for(const a in o)!Sl(a)&&i[a]==null&&delete o[a]};function Wr(e,t,n,r,o=!1){if(J(e)){e.forEach((d,h)=>Wr(d,t&&(J(t)?t[h]:t),n,r,o));return}if(Yt(r)&&!o)return;const s=r.shapeFlag&4?ho(r.component)||r.component.proxy:r.el,i=o?null:s,{i:a,r:c}=e,u=t&&t.r,l=a.refs===me?a.refs={}:a.refs,f=a.setupState;if(u!=null&&u!==c&&(_e(u)?(l[u]=null,ie(f,u)&&(f[u]=null)):Ae(u)&&(u.value=null)),Z(c))Mt(c,a,12,[i,l]);else{const d=_e(c),h=Ae(c),m=e.f;if(d||h){const y=()=>{if(m){const b=d?ie(f,c)?f[c]:l[c]:c.value;o?J(b)&&$s(b,s):J(b)?b.includes(s)||b.push(s):d?(l[c]=[s],ie(f,c)&&(f[c]=l[c])):(c.value=[s],e.k&&(l[e.k]=c.value))}else d?(l[c]=i,ie(f,c)&&(f[c]=i)):h&&(c.value=i,e.k&&(l[e.k]=i))};o||m?y():(y.id=-1,ke(y,n))}}}let Et=!1;const eh=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",th=e=>e.namespaceURI.includes("MathML"),Pr=e=>{if(eh(e))return"svg";if(th(e))return"mathml"},Tr=e=>e.nodeType===8;function nh(e){const{mt:t,p:n,o:{patchProp:r,createText:o,nextSibling:s,parentNode:i,remove:a,insert:c,createComment:u}}=e,l=(p,w)=>{if(!w.hasChildNodes()){n(null,p,w),Vr(),w._vnode=p;return}Et=!1,f(w.firstChild,p,null,null,null),Vr(),w._vnode=p,Et&&console.error("Hydration completed but contains mismatches.")},f=(p,w,P,C,A,x=!1)=>{const D=Tr(p)&&p.data==="[",O=()=>y(p,w,P,C,A,D),{type:Y,ref:M,shapeFlag:X,patchFlag:de}=w;let he=p.nodeType;w.el=p,de===-2&&(x=!1,w.dynamicChildren=null);let K=null;switch(Y){case _n:he!==3?w.children===""?(c(w.el=o(""),i(p),p),K=p):K=O():(p.data!==w.children&&(Et=!0,p.data=w.children),K=s(p));break;case He:v(p)?(K=s(p),E(w.el=p.content.firstChild,p,P)):he!==8||D?K=O():K=s(p);break;case Fn:if(D&&(p=s(p),he=p.nodeType),he===1||he===3){K=p;const te=!w.children.length;for(let q=0;q{x=x||!!w.dynamicChildren;const{type:D,props:O,patchFlag:Y,shapeFlag:M,dirs:X,transition:de}=w,he=D==="input"||D==="option";if(he||Y!==-1){X&<(w,null,P,"created");let K=!1;if(v(p)){K=xl(C,de)&&P&&P.vnode.props&&P.vnode.props.appear;const q=p.content.firstChild;K&&de.beforeEnter(q),E(q,p,P),w.el=p=q}if(M&16&&!(O&&(O.innerHTML||O.textContent))){let q=h(p.firstChild,w,p,P,C,A,x);for(;q;){Et=!0;const Ze=q;q=q.nextSibling,a(Ze)}}else M&8&&p.textContent!==w.children&&(Et=!0,p.textContent=w.children);if(O)if(he||!x||Y&48)for(const q in O)(he&&(q.endsWith("value")||q==="indeterminate")||cr(q)&&!Hn(q)||q[0]===".")&&r(p,q,null,O[q],void 0,void 0,P);else O.onClick&&r(p,"onClick",null,O.onClick,void 0,void 0,P);let te;(te=O&&O.onVnodeBeforeMount)&&Fe(te,P,w),X&<(w,null,P,"beforeMount"),((te=O&&O.onVnodeMounted)||X||K)&&ll(()=>{te&&Fe(te,P,w),K&&de.enter(p),X&<(w,null,P,"mounted")},C)}return p.nextSibling},h=(p,w,P,C,A,x,D)=>{D=D||!!w.dynamicChildren;const O=w.children,Y=O.length;for(let M=0;M{const{slotScopeIds:D}=w;D&&(A=A?A.concat(D):D);const O=i(p),Y=h(s(p),w,O,P,C,A,x);return Y&&Tr(Y)&&Y.data==="]"?s(w.anchor=Y):(Et=!0,c(w.anchor=u("]"),O,Y),Y)},y=(p,w,P,C,A,x)=>{if(Et=!0,w.el=null,x){const Y=b(p);for(;;){const M=s(p);if(M&&M!==Y)a(M);else break}}const D=s(p),O=i(p);return a(p),n(null,w,O,D,P,C,Pr(O),A),D},b=(p,w="[",P="]")=>{let C=0;for(;p;)if(p=s(p),p&&Tr(p)&&(p.data===w&&C++,p.data===P)){if(C===0)return s(p);C--}return p},E=(p,w,P)=>{const C=w.parentNode;C&&C.replaceChild(p,w);let A=P;for(;A;)A.vnode.el===w&&(A.vnode.el=A.subTree.el=p),A=A.parent},v=p=>p.nodeType===1&&p.tagName.toLowerCase()==="template";return[l,f]}const ke=ll;function rh(e){return Al(e)}function oh(e){return Al(e,nh)}function Al(e,t){const n=Lc();n.__VUE__=!0;const{insert:r,remove:o,patchProp:s,createElement:i,createText:a,createComment:c,setText:u,setElementText:l,parentNode:f,nextSibling:d,setScopeId:h=Qe,insertStaticContent:m}=e,y=(g,_,T,R=null,S=null,j=null,V=void 0,N=null,B=!!_.dynamicChildren)=>{if(g===_)return;g&&!nt(g,_)&&(R=k(g),De(g,S,j,!0),g=null),_.patchFlag===-2&&(B=!1,_.dynamicChildren=null);const{type:I,ref:U,shapeFlag:Q}=_;switch(I){case _n:b(g,_,T,R);break;case He:E(g,_,T,R);break;case Fn:g==null&&v(_,T,R,V);break;case we:M(g,_,T,R,S,j,V,N,B);break;default:Q&1?P(g,_,T,R,S,j,V,N,B):Q&6?X(g,_,T,R,S,j,V,N,B):(Q&64||Q&128)&&I.process(g,_,T,R,S,j,V,N,B,W)}U!=null&&S&&Wr(U,g&&g.ref,j,_||g,!_)},b=(g,_,T,R)=>{if(g==null)r(_.el=a(_.children),T,R);else{const S=_.el=g.el;_.children!==g.children&&u(S,_.children)}},E=(g,_,T,R)=>{g==null?r(_.el=c(_.children||""),T,R):_.el=g.el},v=(g,_,T,R)=>{[g.el,g.anchor]=m(g.children,_,T,R,g.el,g.anchor)},p=({el:g,anchor:_},T,R)=>{let S;for(;g&&g!==_;)S=d(g),r(g,T,R),g=S;r(_,T,R)},w=({el:g,anchor:_})=>{let T;for(;g&&g!==_;)T=d(g),o(g),g=T;o(_)},P=(g,_,T,R,S,j,V,N,B)=>{_.type==="svg"?V="svg":_.type==="math"&&(V="mathml"),g==null?C(_,T,R,S,j,V,N,B):D(g,_,S,j,V,N,B)},C=(g,_,T,R,S,j,V,N)=>{let B,I;const{props:U,shapeFlag:Q,transition:G,dirs:ee}=g;if(B=g.el=i(g.type,j,U&&U.is,U),Q&8?l(B,g.children):Q&16&&x(g.children,B,null,R,S,Ao(g,j),V,N),ee&<(g,null,R,"created"),A(B,g,g.scopeId,V,R),U){for(const ue in U)ue!=="value"&&!Hn(ue)&&s(B,ue,null,U[ue],j,g.children,R,S,Le);"value"in U&&s(B,"value",null,U.value,j),(I=U.onVnodeBeforeMount)&&Fe(I,R,g)}ee&<(g,null,R,"beforeMount");const re=xl(S,G);re&&G.beforeEnter(B),r(B,_,T),((I=U&&U.onVnodeMounted)||re||ee)&&ke(()=>{I&&Fe(I,R,g),re&&G.enter(B),ee&<(g,null,R,"mounted")},S)},A=(g,_,T,R,S)=>{if(T&&h(g,T),R)for(let j=0;j{for(let I=B;I{const N=_.el=g.el;let{patchFlag:B,dynamicChildren:I,dirs:U}=_;B|=g.patchFlag&16;const Q=g.props||me,G=_.props||me;let ee;if(T&&Vt(T,!1),(ee=G.onVnodeBeforeUpdate)&&Fe(ee,T,_,g),U&<(_,g,T,"beforeUpdate"),T&&Vt(T,!0),I?O(g.dynamicChildren,I,N,T,R,Ao(_,S),j):V||q(g,_,N,null,T,R,Ao(_,S),j,!1),B>0){if(B&16)Y(N,_,Q,G,T,R,S);else if(B&2&&Q.class!==G.class&&s(N,"class",null,G.class,S),B&4&&s(N,"style",Q.style,G.style,S),B&8){const re=_.dynamicProps;for(let ue=0;ue{ee&&Fe(ee,T,_,g),U&<(_,g,T,"updated")},R)},O=(g,_,T,R,S,j,V)=>{for(let N=0;N<_.length;N++){const B=g[N],I=_[N],U=B.el&&(B.type===we||!nt(B,I)||B.shapeFlag&70)?f(B.el):T;y(B,I,U,null,R,S,j,V,!0)}},Y=(g,_,T,R,S,j,V)=>{if(T!==R){if(T!==me)for(const N in T)!Hn(N)&&!(N in R)&&s(g,N,T[N],null,V,_.children,S,j,Le);for(const N in R){if(Hn(N))continue;const B=R[N],I=T[N];B!==I&&N!=="value"&&s(g,N,I,B,V,_.children,S,j,Le)}"value"in R&&s(g,"value",T.value,R.value,V)}},M=(g,_,T,R,S,j,V,N,B)=>{const I=_.el=g?g.el:a(""),U=_.anchor=g?g.anchor:a("");let{patchFlag:Q,dynamicChildren:G,slotScopeIds:ee}=_;ee&&(N=N?N.concat(ee):ee),g==null?(r(I,T,R),r(U,T,R),x(_.children||[],T,U,S,j,V,N,B)):Q>0&&Q&64&&G&&g.dynamicChildren?(O(g.dynamicChildren,G,T,S,j,V,N),(_.key!=null||S&&_===S.subTree)&&Ll(g,_,!0)):q(g,_,T,U,S,j,V,N,B)},X=(g,_,T,R,S,j,V,N,B)=>{_.slotScopeIds=N,g==null?_.shapeFlag&512?S.ctx.activate(_,T,R,V,B):de(_,T,R,S,j,V,B):he(g,_,B)},de=(g,_,T,R,S,j,V)=>{const N=g.component=fh(g,R,S);if(fr(g)&&(N.ctx.renderer=W),dh(N),N.asyncDep){if(S&&S.registerDep(N,K),!g.el){const B=N.subTree=se(He);E(null,B,_,T)}}else K(N,g,_,T,S,j,V)},he=(g,_,T)=>{const R=_.component=g.component;if(md(g,_,T))if(R.asyncDep&&!R.asyncResolved){te(R,_,T);return}else R.next=_,ld(R.update),R.effect.dirty=!0,R.update();else _.el=g.el,R.vnode=_},K=(g,_,T,R,S,j,V)=>{const N=()=>{if(g.isMounted){let{next:U,bu:Q,u:G,parent:ee,vnode:re}=g;{const cn=Il(g);if(cn){U&&(U.el=re.el,te(g,U,V)),cn.asyncDep.then(()=>{g.isUnmounted||N()});return}}let ue=U,ye;Vt(g,!1),U?(U.el=re.el,te(g,U,V)):U=re,Q&&jn(Q),(ye=U.props&&U.props.onVnodeBeforeUpdate)&&Fe(ye,ee,U,re),Vt(g,!0);const Te=Co(g),et=g.subTree;g.subTree=Te,y(et,Te,f(et.el),k(et),g,S,j),U.el=Te.el,ue===null&&Qs(g,Te.el),G&&ke(G,S),(ye=U.props&&U.props.onVnodeUpdated)&&ke(()=>Fe(ye,ee,U,re),S)}else{let U;const{el:Q,props:G}=_,{bm:ee,m:re,parent:ue}=g,ye=Yt(_);if(Vt(g,!1),ee&&jn(ee),!ye&&(U=G&&G.onVnodeBeforeMount)&&Fe(U,ue,_),Vt(g,!0),Q&&ge){const Te=()=>{g.subTree=Co(g),ge(Q,g.subTree,g,S,null)};ye?_.type.__asyncLoader().then(()=>!g.isUnmounted&&Te()):Te()}else{const Te=g.subTree=Co(g);y(null,Te,T,R,g,S,j),_.el=Te.el}if(re&&ke(re,S),!ye&&(U=G&&G.onVnodeMounted)){const Te=_;ke(()=>Fe(U,ue,Te),S)}(_.shapeFlag&256||ue&&Yt(ue.vnode)&&ue.vnode.shapeFlag&256)&&g.a&&ke(g.a,S),g.isMounted=!0,_=T=R=null}},B=g.effect=new js(N,Qe,()=>io(I),g.scope),I=g.update=()=>{B.dirty&&B.run()};I.id=g.uid,Vt(g,!0),I()},te=(g,_,T)=>{_.component=g;const R=g.vnode.props;g.vnode=_,g.next=null,Jd(g,_.props,R,T),Zd(g,_.children,T),nn(),zi(g),rn()},q=(g,_,T,R,S,j,V,N,B=!1)=>{const I=g&&g.children,U=g?g.shapeFlag:0,Q=_.children,{patchFlag:G,shapeFlag:ee}=_;if(G>0){if(G&128){bt(I,Q,T,R,S,j,V,N,B);return}else if(G&256){Ze(I,Q,T,R,S,j,V,N,B);return}}ee&8?(U&16&&Le(I,S,j),Q!==I&&l(T,Q)):U&16?ee&16?bt(I,Q,T,R,S,j,V,N,B):Le(I,S,j,!0):(U&8&&l(T,""),ee&16&&x(Q,T,R,S,j,V,N,B))},Ze=(g,_,T,R,S,j,V,N,B)=>{g=g||dn,_=_||dn;const I=g.length,U=_.length,Q=Math.min(I,U);let G;for(G=0;GU?Le(g,S,j,!0,!1,Q):x(_,T,R,S,j,V,N,B,Q)},bt=(g,_,T,R,S,j,V,N,B)=>{let I=0;const U=_.length;let Q=g.length-1,G=U-1;for(;I<=Q&&I<=G;){const ee=g[I],re=_[I]=B?Rt(_[I]):Ge(_[I]);if(nt(ee,re))y(ee,re,T,null,S,j,V,N,B);else break;I++}for(;I<=Q&&I<=G;){const ee=g[Q],re=_[G]=B?Rt(_[G]):Ge(_[G]);if(nt(ee,re))y(ee,re,T,null,S,j,V,N,B);else break;Q--,G--}if(I>Q){if(I<=G){const ee=G+1,re=eeG)for(;I<=Q;)De(g[I],S,j,!0),I++;else{const ee=I,re=I,ue=new Map;for(I=re;I<=G;I++){const ze=_[I]=B?Rt(_[I]):Ge(_[I]);ze.key!=null&&ue.set(ze.key,I)}let ye,Te=0;const et=G-re+1;let cn=!1,Ii=0;const An=new Array(et);for(I=0;I=et){De(ze,S,j,!0);continue}let at;if(ze.key!=null)at=ue.get(ze.key);else for(ye=re;ye<=G;ye++)if(An[ye-re]===0&&nt(ze,_[ye])){at=ye;break}at===void 0?De(ze,S,j,!0):(An[at-re]=I+1,at>=Ii?Ii=at:cn=!0,y(ze,_[at],T,null,S,j,V,N,B),Te++)}const Oi=cn?sh(An):dn;for(ye=Oi.length-1,I=et-1;I>=0;I--){const ze=re+I,at=_[ze],$i=ze+1{const{el:j,type:V,transition:N,children:B,shapeFlag:I}=g;if(I&6){it(g.component.subTree,_,T,R);return}if(I&128){g.suspense.move(_,T,R);return}if(I&64){V.move(g,_,T,W);return}if(V===we){r(j,_,T);for(let Q=0;QN.enter(j),S);else{const{leave:Q,delayLeave:G,afterLeave:ee}=N,re=()=>r(j,_,T),ue=()=>{Q(j,()=>{re(),ee&&ee()})};G?G(j,re,ue):ue()}else r(j,_,T)},De=(g,_,T,R=!1,S=!1)=>{const{type:j,props:V,ref:N,children:B,dynamicChildren:I,shapeFlag:U,patchFlag:Q,dirs:G}=g;if(N!=null&&Wr(N,null,T,g,!0),U&256){_.ctx.deactivate(g);return}const ee=U&1&&G,re=!Yt(g);let ue;if(re&&(ue=V&&V.onVnodeBeforeUnmount)&&Fe(ue,_,g),U&6)gr(g.component,T,R);else{if(U&128){g.suspense.unmount(T,R);return}ee&<(g,null,_,"beforeUnmount"),U&64?g.type.remove(g,_,T,S,W,R):I&&(j!==we||Q>0&&Q&64)?Le(I,_,T,!1,!0):(j===we&&Q&384||!S&&U&16)&&Le(B,_,T),R&&sn(g)}(re&&(ue=V&&V.onVnodeUnmounted)||ee)&&ke(()=>{ue&&Fe(ue,_,g),ee&<(g,null,_,"unmounted")},T)},sn=g=>{const{type:_,el:T,anchor:R,transition:S}=g;if(_===we){an(T,R);return}if(_===Fn){w(g);return}const j=()=>{o(T),S&&!S.persisted&&S.afterLeave&&S.afterLeave()};if(g.shapeFlag&1&&S&&!S.persisted){const{leave:V,delayLeave:N}=S,B=()=>V(T,j);N?N(g.el,j,B):B()}else j()},an=(g,_)=>{let T;for(;g!==_;)T=d(g),o(g),g=T;o(_)},gr=(g,_,T)=>{const{bum:R,scope:S,update:j,subTree:V,um:N}=g;R&&jn(R),S.stop(),j&&(j.active=!1,De(V,g,_,T)),N&&ke(N,_),ke(()=>{g.isUnmounted=!0},_),_&&_.pendingBranch&&!_.isUnmounted&&g.asyncDep&&!g.asyncResolved&&g.suspenseId===_.pendingId&&(_.deps--,_.deps===0&&_.resolve())},Le=(g,_,T,R=!1,S=!1,j=0)=>{for(let V=j;Vg.shapeFlag&6?k(g.component.subTree):g.shapeFlag&128?g.suspense.next():d(g.anchor||g.el);let z=!1;const F=(g,_,T)=>{g==null?_._vnode&&De(_._vnode,null,null,!0):y(_._vnode||null,g,_,null,null,null,T),z||(z=!0,zi(),Vr(),z=!1),_._vnode=g},W={p:y,um:De,m:it,r:sn,mt:de,mc:x,pc:q,pbc:O,n:k,o:e};let ce,ge;return t&&([ce,ge]=t(W)),{render:F,hydrate:ce,createApp:Gd(F,ce)}}function Ao({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function Vt({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function xl(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Ll(e,t,n=!1){const r=e.children,o=t.children;if(J(r)&&J(o))for(let s=0;s>1,e[n[a]]0&&(t[r]=n[s-1]),n[s]=r)}}for(s=n.length,i=n[s-1];s-- >0;)n[s]=i,i=t[i];return n}function Il(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Il(t)}const ih=e=>e.__isTeleport,we=Symbol.for("v-fgt"),_n=Symbol.for("v-txt"),He=Symbol.for("v-cmt"),Fn=Symbol.for("v-stc"),Vn=[];let Je=null;function ne(e=!1){Vn.push(Je=e?null:[])}function Ol(){Vn.pop(),Je=Vn[Vn.length-1]||null}let vn=1;function na(e){vn+=e}function $l(e){return e.dynamicChildren=vn>0?Je||dn:null,Ol(),vn>0&&Je&&Je.push(e),e}function Re(e,t,n,r,o,s){return $l(Se(e,t,n,r,o,s,!0))}function be(e,t,n,r,o){return $l(se(e,t,n,r,o,!0))}function bn(e){return e?e.__v_isVNode===!0:!1}function nt(e,t){return e.type===t.type&&e.key===t.key}const fo="__vInternal",Ml=({key:e})=>e??null,xr=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?_e(e)||Ae(e)||Z(e)?{i:Ee,r:e,k:t,f:!!n}:e:null);function Se(e,t=null,n=null,r=0,o=null,s=e===we?0:1,i=!1,a=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Ml(t),ref:t&&xr(t),scopeId:co,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:s,patchFlag:r,dynamicProps:o,dynamicChildren:null,appContext:null,ctx:Ee};return a?(ri(c,n),s&128&&e.normalize(c)):n&&(c.shapeFlag|=_e(n)?8:16),vn>0&&!i&&Je&&(c.patchFlag>0||s&6)&&c.patchFlag!==32&&Je.push(c),c}const se=ah;function ah(e,t=null,n=null,r=0,o=null,s=!1){if((!e||e===sl)&&(e=He),bn(e)){const a=yt(e,t,!0);return n&&ri(a,n),vn>0&&!s&&Je&&(a.shapeFlag&6?Je[Je.indexOf(e)]=a:Je.push(a)),a.patchFlag|=-2,a}if(mh(e)&&(e=e.__vccOpts),t){t=Nl(t);let{class:a,style:c}=t;a&&!_e(a)&&(t.class=Ke(a)),pe(c)&&(Gc(c)&&!J(c)&&(c=Pe({},c)),t.style=Tn(c))}const i=_e(e)?1:al(e)?128:ih(e)?64:pe(e)?4:Z(e)?2:0;return Se(e,t,n,r,o,i,s,!0)}function Nl(e){return e?Gc(e)||fo in e?Pe({},e):e:null}function yt(e,t,n=!1){const{props:r,ref:o,patchFlag:s,children:i}=e,a=t?ch(r||{},t):r;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:a,key:a&&Ml(a),ref:t&&t.ref?n&&o?J(o)?o.concat(xr(t)):[o,xr(t)]:xr(t):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==we?s===-1?16:s|16:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&yt(e.ssContent),ssFallback:e.ssFallback&&yt(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function dr(e=" ",t=0){return se(_n,null,e,t)}function Qt(e="",t=!1){return t?(ne(),be(He,null,e)):se(He,null,e)}function Ge(e){return e==null||typeof e=="boolean"?se(He):J(e)?se(we,null,e.slice()):typeof e=="object"?Rt(e):se(_n,null,String(e))}function Rt(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:yt(e)}function ri(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(J(t))n=16;else if(typeof t=="object")if(r&65){const o=t.default;o&&(o._c&&(o._d=!1),ri(e,o()),o._c&&(o._d=!0));return}else{n=32;const o=t._;!o&&!(fo in t)?t._ctx=Ee:o===3&&Ee&&(Ee.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else Z(t)?(t={default:t,_ctx:Ee},n=32):(t=String(t),r&64?(n=16,t=[dr(t)]):n=8);e.children=t,e.shapeFlag|=n}function ch(...e){const t={};for(let n=0;nCe||Ee;let qr,Zo;{const e=Lc(),t=(n,r)=>{let o;return(o=e[n])||(o=e[n]=[]),o.push(r),s=>{o.length>1?o.forEach(i=>i(s)):o[0](s)}};qr=t("__VUE_INSTANCE_SETTERS__",n=>Ce=n),Zo=t("__VUE_SSR_SETTERS__",n=>hr=n)}const en=e=>{const t=Ce;return qr(e),e.scope.on(),()=>{e.scope.off(),qr(t)}},es=()=>{Ce&&Ce.scope.off(),qr(null)};function Hl(e){return e.vnode.shapeFlag&4}let hr=!1;function dh(e,t=!1){t&&Zo(t);const{props:n,children:r}=e.vnode,o=Hl(e);Qd(e,n,o,t),Yd(e,r);const s=o?hh(e,t):void 0;return t&&Zo(!1),s}function hh(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Qc(new Proxy(e.ctx,Dd));const{setup:r}=n;if(r){const o=e.setupContext=r.length>1?Dl(e):null,s=en(e);nn();const i=Mt(r,e,0,[e.props,o]);if(rn(),s(),Ms(i)){if(i.then(es,es),t)return i.then(a=>{ts(e,a,t)}).catch(a=>{Sn(a,e,0)});e.asyncDep=i}else ts(e,i,t)}else jl(e,t)}function ts(e,t,n){Z(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:pe(t)&&(e.setupState=Yc(t)),jl(e,n)}let ra;function jl(e,t,n){const r=e.type;if(!e.render){if(!t&&ra&&!r.render){const o=r.template||ti(e).template;if(o){const{isCustomElement:s,compilerOptions:i}=e.appContext.config,{delimiters:a,compilerOptions:c}=r,u=Pe(Pe({isCustomElement:s,delimiters:a},i),c);r.render=ra(o,u)}}e.render=r.render||Qe}{const o=en(e);nn();try{Vd(e)}finally{rn(),o()}}}function ph(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get(t,n){return Ve(e,"get","$attrs"),t[n]}}))}function Dl(e){const t=n=>{e.exposed=n||{}};return{get attrs(){return ph(e)},slots:e.slots,emit:e.emit,expose:t}}function ho(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(Yc(Qc(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Bn)return Bn[n](e)},has(t,n){return n in t||n in Bn}}))}function ns(e,t=!0){return Z(e)?e.displayName||e.name:e.name||t&&e.__name}function mh(e){return Z(e)&&"__vccOpts"in e}const oe=(e,t)=>ed(e,t,hr);function $e(e,t,n){const r=arguments.length;return r===2?pe(t)&&!J(t)?bn(t)?se(e,null,[t]):se(e,t):se(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&bn(n)&&(n=[n]),se(e,t,n))}const Bl="3.4.15";/** +* @vue/runtime-dom v3.4.15 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/const gh="http://www.w3.org/2000/svg",yh="http://www.w3.org/1998/Math/MathML",At=typeof document<"u"?document:null,oa=At&&At.createElement("template"),_h={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const o=t==="svg"?At.createElementNS(gh,e):t==="mathml"?At.createElementNS(yh,e):At.createElement(e,n?{is:n}:void 0);return e==="select"&&r&&r.multiple!=null&&o.setAttribute("multiple",r.multiple),o},createText:e=>At.createTextNode(e),createComment:e=>At.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>At.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,o,s){const i=n?n.previousSibling:t.lastChild;if(o&&(o===s||o.nextSibling))for(;t.insertBefore(o.cloneNode(!0),n),!(o===s||!(o=o.nextSibling)););else{oa.innerHTML=r==="svg"?`${e}`:r==="mathml"?`${e}`:e;const a=oa.content;if(r==="svg"||r==="mathml"){const c=a.firstChild;for(;c.firstChild;)a.appendChild(c.firstChild);a.removeChild(c)}t.insertBefore(a,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Ct="transition",xn="animation",tr=Symbol("_vtc"),oi=(e,{slots:t})=>$e(xd,vh(e),t);oi.displayName="Transition";const Fl={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};oi.props=Pe({},fl,Fl);const zt=(e,t=[])=>{J(e)?e.forEach(n=>n(...t)):e&&e(...t)},sa=e=>e?J(e)?e.some(t=>t.length>1):e.length>1:!1;function vh(e){const t={};for(const M in e)M in Fl||(t[M]=e[M]);if(e.css===!1)return t;const{name:n="v",type:r,duration:o,enterFromClass:s=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:a=`${n}-enter-to`,appearFromClass:c=s,appearActiveClass:u=i,appearToClass:l=a,leaveFromClass:f=`${n}-leave-from`,leaveActiveClass:d=`${n}-leave-active`,leaveToClass:h=`${n}-leave-to`}=e,m=bh(o),y=m&&m[0],b=m&&m[1],{onBeforeEnter:E,onEnter:v,onEnterCancelled:p,onLeave:w,onLeaveCancelled:P,onBeforeAppear:C=E,onAppear:A=v,onAppearCancelled:x=p}=t,D=(M,X,de)=>{Ut(M,X?l:a),Ut(M,X?u:i),de&&de()},O=(M,X)=>{M._isLeaving=!1,Ut(M,f),Ut(M,h),Ut(M,d),X&&X()},Y=M=>(X,de)=>{const he=M?A:v,K=()=>D(X,M,de);zt(he,[X,K]),ia(()=>{Ut(X,M?c:s),Pt(X,M?l:a),sa(he)||aa(X,r,y,K)})};return Pe(t,{onBeforeEnter(M){zt(E,[M]),Pt(M,s),Pt(M,i)},onBeforeAppear(M){zt(C,[M]),Pt(M,c),Pt(M,u)},onEnter:Y(!1),onAppear:Y(!0),onLeave(M,X){M._isLeaving=!0;const de=()=>O(M,X);Pt(M,f),Ch(),Pt(M,d),ia(()=>{M._isLeaving&&(Ut(M,f),Pt(M,h),sa(w)||aa(M,r,b,de))}),zt(w,[M,de])},onEnterCancelled(M){D(M,!1),zt(p,[M])},onAppearCancelled(M){D(M,!0),zt(x,[M])},onLeaveCancelled(M){O(M),zt(P,[M])}})}function bh(e){if(e==null)return null;if(pe(e))return[xo(e.enter),xo(e.leave)];{const t=xo(e);return[t,t]}}function xo(e){return xc(e)}function Pt(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[tr]||(e[tr]=new Set)).add(t)}function Ut(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const n=e[tr];n&&(n.delete(t),n.size||(e[tr]=void 0))}function ia(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let wh=0;function aa(e,t,n,r){const o=e._endId=++wh,s=()=>{o===e._endId&&r()};if(n)return setTimeout(s,n);const{type:i,timeout:a,propCount:c}=Eh(e,t);if(!i)return r();const u=i+"end";let l=0;const f=()=>{e.removeEventListener(u,d),s()},d=h=>{h.target===e&&++l>=c&&f()};setTimeout(()=>{l(n[m]||"").split(", "),o=r(`${Ct}Delay`),s=r(`${Ct}Duration`),i=ca(o,s),a=r(`${xn}Delay`),c=r(`${xn}Duration`),u=ca(a,c);let l=null,f=0,d=0;t===Ct?i>0&&(l=Ct,f=i,d=s.length):t===xn?u>0&&(l=xn,f=u,d=c.length):(f=Math.max(i,u),l=f>0?i>u?Ct:xn:null,d=l?l===Ct?s.length:c.length:0);const h=l===Ct&&/\b(transform|all)(,|$)/.test(r(`${Ct}Property`).toString());return{type:l,timeout:f,propCount:d,hasTransform:h}}function ca(e,t){for(;e.lengthla(n)+la(e[r])))}function la(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function Ch(){return document.body.offsetHeight}function Ph(e,t,n){const r=e[tr];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const si=Symbol("_vod"),pE={beforeMount(e,{value:t},{transition:n}){e[si]=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):Ln(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:r}){!t!=!n&&(r?t?(r.beforeEnter(e),Ln(e,!0),r.enter(e)):r.leave(e,()=>{Ln(e,!1)}):Ln(e,t))},beforeUnmount(e,{value:t}){Ln(e,t)}};function Ln(e,t){e.style.display=t?e[si]:"none"}const Vl=Symbol("");function mE(e){const t=Ft();if(!t)return;const n=t.ut=(o=e(t.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${t.uid}"]`)).forEach(s=>os(s,o))},r=()=>{const o=e(t.proxy);rs(t.subTree,o),n(o)};Sd(r),kn(()=>{const o=new MutationObserver(r);o.observe(t.subTree.el.parentNode,{childList:!0}),Zs(()=>o.disconnect())})}function rs(e,t){if(e.shapeFlag&128){const n=e.suspense;e=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push(()=>{rs(n.activeBranch,t)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)os(e.el,t);else if(e.type===we)e.children.forEach(n=>rs(n,t));else if(e.type===Fn){let{el:n,anchor:r}=e;for(;n&&(os(n,t),n!==r);)n=n.nextSibling}}function os(e,t){if(e.nodeType===1){const n=e.style;let r="";for(const o in t)n.setProperty(`--${o}`,t[o]),r+=`--${o}: ${t[o]};`;n[Vl]=r}}function Th(e,t,n){const r=e.style,o=r.display,s=_e(n);if(n&&!s){if(t&&!_e(t))for(const i in t)n[i]==null&&ss(r,i,"");for(const i in n)ss(r,i,n[i])}else if(s){if(t!==n){const i=r[Vl];i&&(n+=";"+i),r.cssText=n}}else t&&e.removeAttribute("style");si in e&&(r.display=o)}const ua=/\s*!important$/;function ss(e,t,n){if(J(n))n.forEach(r=>ss(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=Sh(e,t);ua.test(n)?e.setProperty(Pn(r),n.replace(ua,""),"important"):e[r]=n}}const fa=["Webkit","Moz","ms"],Lo={};function Sh(e,t){const n=Lo[t];if(n)return n;let r=ft(t);if(r!=="filter"&&r in e)return Lo[t]=r;r=oo(r);for(let o=0;oIo||(Oh.then(()=>Io=0),Io=Date.now());function Mh(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;Xe(Nh(r,n.value),t,5,[r])};return n.value=e,n.attached=$h(),n}function Nh(e,t){if(J(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>o=>!o._stopped&&r&&r(o))}else return t}const ma=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Hh=(e,t,n,r,o,s,i,a,c)=>{const u=o==="svg";t==="class"?Ph(e,r,u):t==="style"?Th(e,n,r):cr(t)?Os(t)||Lh(e,t,n,r,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):jh(e,t,r,u))?Rh(e,t,r,s,i,a,c):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),kh(e,t,r,u))};function jh(e,t,n,r){if(r)return!!(t==="innerHTML"||t==="textContent"||t in e&&ma(t)&&Z(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const o=e.tagName;if(o==="IMG"||o==="VIDEO"||o==="CANVAS"||o==="SOURCE")return!1}return ma(t)&&_e(n)?!1:t in e}const Dh=["ctrl","shift","alt","meta"],Bh={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>Dh.some(n=>e[`${n}Key`]&&!t.includes(n))},gE=(e,t)=>{const n=e._withMods||(e._withMods={}),r=t.join(".");return n[r]||(n[r]=(o,...s)=>{for(let i=0;i{const t=Fh().createApp(...e),{mount:n}=t;return t.mount=r=>{const o=Kl(r);if(!o)return;const s=t._component;!Z(s)&&!s.render&&!s.template&&(s.template=o.innerHTML),o.innerHTML="";const i=n(o,!1,Ul(o));return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),i},t},Uh=(...e)=>{const t=Vh().createApp(...e),{mount:n}=t;return t.mount=r=>{const o=Kl(r);if(o)return n(o,!0,Ul(o))},t};function Ul(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function Kl(e){return _e(e)?document.querySelector(e):e}const Kh=/#/g,Wh=/&/g,qh=/=/g,ii=/\+/g,Gh=/%5e/gi,Qh=/%60/gi,Jh=/%7c/gi,Xh=/%20/gi;function Yh(e){return encodeURI(""+e).replace(Jh,"|")}function is(e){return Yh(typeof e=="string"?e:JSON.stringify(e)).replace(ii,"%2B").replace(Xh,"+").replace(Kh,"%23").replace(Wh,"%26").replace(Qh,"`").replace(Gh,"^")}function Oo(e){return is(e).replace(qh,"%3D")}function Gr(e=""){try{return decodeURIComponent(""+e)}catch{return""+e}}function Zh(e){return Gr(e.replace(ii," "))}function ep(e){return Gr(e.replace(ii," "))}function Wl(e=""){const t={};e[0]==="?"&&(e=e.slice(1));for(const n of e.split("&")){const r=n.match(/([^=]+)=?(.*)/)||[];if(r.length<2)continue;const o=Zh(r[1]);if(o==="__proto__"||o==="constructor")continue;const s=ep(r[2]||"");t[o]===void 0?t[o]=s:Array.isArray(t[o])?t[o].push(s):t[o]=[t[o],s]}return t}function tp(e,t){return(typeof t=="number"||typeof t=="boolean")&&(t=String(t)),t?Array.isArray(t)?t.map(n=>`${Oo(e)}=${is(n)}`).join("&"):`${Oo(e)}=${is(t)}`:Oo(e)}function np(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>tp(t,e[t])).filter(Boolean).join("&")}const rp=/^[\s\w\0+.-]{2,}:([/\\]{1,2})/,op=/^[\s\w\0+.-]{2,}:([/\\]{2})?/,sp=/^([/\\]\s*){2,}[^/\\]/;function _t(e,t={}){return typeof t=="boolean"&&(t={acceptRelative:t}),t.strict?rp.test(e):op.test(e)||(t.acceptRelative?sp.test(e):!1)}const ip=/^[\s\0]*(blob|data|javascript|vbscript):$/i;function ap(e){return!!e&&ip.test(e)}const cp=/\/$|\/\?|\/#/;function as(e="",t){return t?cp.test(e):e.endsWith("/")}function jt(e="",t){if(!t)return(as(e)?e.slice(0,-1):e)||"/";if(!as(e,!0))return e||"/";let n=e,r="";const o=e.indexOf("#");o>=0&&(n=e.slice(0,o),r=e.slice(o));const[s,...i]=n.split("?");return(s.slice(0,-1)||"/")+(i.length>0?`?${i.join("?")}`:"")+r}function Qr(e="",t){if(!t)return e.endsWith("/")?e:e+"/";if(as(e,!0))return e||"/";let n=e,r="";const o=e.indexOf("#");if(o>=0&&(n=e.slice(0,o),r=e.slice(o),!n))return r;const[s,...i]=n.split("?");return s+"/"+(i.length>0?`?${i.join("?")}`:"")+r}function lp(e=""){return e.startsWith("/")}function cs(e=""){return lp(e)?e:"/"+e}function ai(e,t){if(Gl(t)||_t(e))return e;const n=jt(t);return e.startsWith(n)?e:on(n,e)}function ya(e,t){if(Gl(t))return e;const n=jt(t);if(!e.startsWith(n))return e;const r=e.slice(n.length);return r[0]==="/"?r:"/"+r}function ql(e,t){const n=pr(e),r={...Wl(n.search),...t};return n.search=np(r),hp(n)}function Gl(e){return!e||e==="/"}function up(e){return e&&e!=="/"}const fp=/^\.?\//;function on(e,...t){let n=e||"";for(const r of t.filter(o=>up(o)))if(n){const o=r.replace(fp,"");n=Qr(n)+o}else n=r;return n}function dp(e,t,n={}){return n.trailingSlash||(e=Qr(e),t=Qr(t)),n.leadingSlash||(e=cs(e),t=cs(t)),n.encoding||(e=Gr(e),t=Gr(t)),e===t}function pr(e="",t){const n=e.match(/^[\s\0]*(blob:|data:|javascript:|vbscript:)(.*)/i);if(n){const[,f,d=""]=n;return{protocol:f.toLowerCase(),pathname:d,href:f+d,auth:"",host:"",search:"",hash:""}}if(!_t(e,{acceptRelative:!0}))return t?pr(t+e):_a(e);const[,r="",o,s=""]=e.replace(/\\/g,"/").match(/^[\s\0]*([\w+.-]{2,}:)?\/\/([^/@]+@)?(.*)/)||[],[,i="",a=""]=s.match(/([^#/?]*)(.*)?/)||[],{pathname:c,search:u,hash:l}=_a(a.replace(/\/(?=[A-Za-z]:)/,""));return{protocol:r.toLowerCase(),auth:o?o.slice(0,Math.max(0,o.length-1)):"",host:i,pathname:c,search:u,hash:l}}function _a(e=""){const[t="",n="",r=""]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:n,hash:r}}function hp(e){const t=e.pathname||"",n=e.search?(e.search.startsWith("?")?"":"?")+e.search:"",r=e.hash||"",o=e.auth?e.auth+"@":"",s=e.host||"";return(e.protocol?e.protocol+"//":"")+o+s+t+n+r}const pp=()=>{var e;return((e=window==null?void 0:window.__NUXT__)==null?void 0:e.config)||{}},Jr=pp().app,mp=()=>Jr.baseURL,gp=()=>Jr.buildAssetsDir,ci=(...e)=>on(Ql(),gp(),...e),Ql=(...e)=>{const t=Jr.cdnURL||Jr.baseURL;return e.length?on(t,...e):t};globalThis.__buildAssetsURL=ci,globalThis.__publicAssetsURL=Ql;const yp=/"(?:_|\\u0{2}5[Ff]){2}(?:p|\\u0{2}70)(?:r|\\u0{2}72)(?:o|\\u0{2}6[Ff])(?:t|\\u0{2}74)(?:o|\\u0{2}6[Ff])(?:_|\\u0{2}5[Ff]){2}"\s*:/,_p=/"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/,vp=/^\s*["[{]|^\s*-?\d{1,16}(\.\d{1,17})?([Ee][+-]?\d+)?\s*$/;function bp(e,t){if(e==="__proto__"||e==="constructor"&&t&&typeof t=="object"&&"prototype"in t){wp(e);return}return t}function wp(e){console.warn(`[destr] Dropping "${e}" key to prevent prototype pollution.`)}function nr(e,t={}){if(typeof e!="string")return e;const n=e.trim();if(e[0]==='"'&&e.at(-1)==='"'&&!e.includes("\\"))return n.slice(1,-1);if(n.length<=9){const r=n.toLowerCase();if(r==="true")return!0;if(r==="false")return!1;if(r==="undefined")return;if(r==="null")return null;if(r==="nan")return Number.NaN;if(r==="infinity")return Number.POSITIVE_INFINITY;if(r==="-infinity")return Number.NEGATIVE_INFINITY}if(!vp.test(e)){if(t.strict)throw new SyntaxError("[destr] Invalid JSON");return e}try{if(yp.test(e)||_p.test(e)){if(t.strict)throw new Error("[destr] Possible prototype pollution");return JSON.parse(e,bp)}return JSON.parse(e)}catch(r){if(t.strict)throw r;return e}}class Ep extends Error{constructor(t,n){super(t,n),this.name="FetchError",n!=null&&n.cause&&!this.cause&&(this.cause=n.cause)}}function Cp(e){var c,u,l,f,d;const t=((c=e.error)==null?void 0:c.message)||((u=e.error)==null?void 0:u.toString())||"",n=((l=e.request)==null?void 0:l.method)||((f=e.options)==null?void 0:f.method)||"GET",r=((d=e.request)==null?void 0:d.url)||String(e.request)||"/",o=`[${n}] ${JSON.stringify(r)}`,s=e.response?`${e.response.status} ${e.response.statusText}`:"",i=`${o}: ${s}${t?` ${t}`:""}`,a=new Ep(i,e.error?{cause:e.error}:void 0);for(const h of["request","options","response"])Object.defineProperty(a,h,{get(){return e[h]}});for(const[h,m]of[["data","_data"],["status","status"],["statusCode","status"],["statusText","statusText"],["statusMessage","statusText"]])Object.defineProperty(a,h,{get(){return e.response&&e.response[m]}});return a}const Pp=new Set(Object.freeze(["PATCH","POST","PUT","DELETE"]));function va(e="GET"){return Pp.has(e.toUpperCase())}function Tp(e){if(e===void 0)return!1;const t=typeof e;return t==="string"||t==="number"||t==="boolean"||t===null?!0:t!=="object"?!1:Array.isArray(e)?!0:e.buffer?!1:e.constructor&&e.constructor.name==="Object"||typeof e.toJSON=="function"}const Sp=new Set(["image/svg","application/xml","application/xhtml","application/html"]),kp=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function Rp(e=""){if(!e)return"json";const t=e.split(";").shift()||"";return kp.test(t)?"json":Sp.has(t)||t.startsWith("text/")?"text":"blob"}function Ap(e,t,n=globalThis.Headers){const r={...t,...e};if(t!=null&&t.params&&(e!=null&&e.params)&&(r.params={...t==null?void 0:t.params,...e==null?void 0:e.params}),t!=null&&t.query&&(e!=null&&e.query)&&(r.query={...t==null?void 0:t.query,...e==null?void 0:e.query}),t!=null&&t.headers&&(e!=null&&e.headers)){r.headers=new n((t==null?void 0:t.headers)||{});for(const[o,s]of new n((e==null?void 0:e.headers)||{}))r.headers.set(o,s)}return r}const xp=new Set([408,409,425,429,500,502,503,504]),Lp=new Set([101,204,205,304]);function Jl(e={}){const{fetch:t=globalThis.fetch,Headers:n=globalThis.Headers,AbortController:r=globalThis.AbortController}=e;async function o(a){const c=a.error&&a.error.name==="AbortError"&&!a.options.timeout||!1;if(a.options.retry!==!1&&!c){let l;typeof a.options.retry=="number"?l=a.options.retry:l=va(a.options.method)?0:1;const f=a.response&&a.response.status||500;if(l>0&&(Array.isArray(a.options.retryStatusCodes)?a.options.retryStatusCodes.includes(f):xp.has(f))){const d=a.options.retryDelay||0;return d>0&&await new Promise(h=>setTimeout(h,d)),s(a.request,{...a.options,retry:l-1,timeout:a.options.timeout})}}const u=Cp(a);throw Error.captureStackTrace&&Error.captureStackTrace(u,s),u}const s=async function(c,u={}){var d;const l={request:c,options:Ap(u,e.defaults,n),response:void 0,error:void 0};if(l.options.method=(d=l.options.method)==null?void 0:d.toUpperCase(),l.options.onRequest&&await l.options.onRequest(l),typeof l.request=="string"&&(l.options.baseURL&&(l.request=ai(l.request,l.options.baseURL)),(l.options.query||l.options.params)&&(l.request=ql(l.request,{...l.options.params,...l.options.query}))),l.options.body&&va(l.options.method)&&(Tp(l.options.body)?(l.options.body=typeof l.options.body=="string"?l.options.body:JSON.stringify(l.options.body),l.options.headers=new n(l.options.headers||{}),l.options.headers.has("content-type")||l.options.headers.set("content-type","application/json"),l.options.headers.has("accept")||l.options.headers.set("accept","application/json")):("pipeTo"in l.options.body&&typeof l.options.body.pipeTo=="function"||typeof l.options.body.pipe=="function")&&("duplex"in l.options||(l.options.duplex="half"))),!l.options.signal&&l.options.timeout){const h=new r;setTimeout(()=>h.abort(),l.options.timeout),l.options.signal=h.signal}try{l.response=await t(l.request,l.options)}catch(h){return l.error=h,l.options.onRequestError&&await l.options.onRequestError(l),await o(l)}if(l.response.body&&!Lp.has(l.response.status)&&l.options.method!=="HEAD"){const h=(l.options.parseResponse?"json":l.options.responseType)||Rp(l.response.headers.get("content-type")||"");switch(h){case"json":{const m=await l.response.text(),y=l.options.parseResponse||nr;l.response._data=y(m);break}case"stream":{l.response._data=l.response.body;break}default:l.response._data=await l.response[h]()}}return l.options.onResponse&&await l.options.onResponse(l),!l.options.ignoreResponseError&&l.response.status>=400&&l.response.status<600?(l.options.onResponseError&&await l.options.onResponseError(l),await o(l)):l.response},i=async function(c,u){return(await s(c,u))._data};return i.raw=s,i.native=(...a)=>t(...a),i.create=(a={})=>Jl({...e,defaults:{...e.defaults,...a}}),i}const li=function(){if(typeof globalThis<"u")return globalThis;if(typeof self<"u")return self;if(typeof window<"u")return window;if(typeof global<"u")return global;throw new Error("unable to locate global object")}(),Ip=li.fetch||(()=>Promise.reject(new Error("[ofetch] global.fetch is not supported!"))),Op=li.Headers,$p=li.AbortController,Mp=Jl({fetch:Ip,Headers:Op,AbortController:$p}),Np=Mp;globalThis.$fetch||(globalThis.$fetch=Np.create({baseURL:mp()}));function ls(e,t={},n){for(const r in e){const o=e[r],s=n?`${n}:${r}`:r;typeof o=="object"&&o!==null?ls(o,t,s):typeof o=="function"&&(t[s]=o)}return t}const Hp={run:e=>e()},jp=()=>Hp,Xl=typeof console.createTask<"u"?console.createTask:jp;function Dp(e,t){const n=t.shift(),r=Xl(n);return e.reduce((o,s)=>o.then(()=>r.run(()=>s(...t))),Promise.resolve())}function Bp(e,t){const n=t.shift(),r=Xl(n);return Promise.all(e.map(o=>r.run(()=>o(...t))))}function $o(e,t){for(const n of[...e])n(t)}class Fp{constructor(){this._hooks={},this._before=void 0,this._after=void 0,this._deprecatedMessages=void 0,this._deprecatedHooks={},this.hook=this.hook.bind(this),this.callHook=this.callHook.bind(this),this.callHookWith=this.callHookWith.bind(this)}hook(t,n,r={}){if(!t||typeof n!="function")return()=>{};const o=t;let s;for(;this._deprecatedHooks[t];)s=this._deprecatedHooks[t],t=s.to;if(s&&!r.allowDeprecated){let i=s.message;i||(i=`${o} hook has been deprecated`+(s.to?`, please use ${s.to}`:"")),this._deprecatedMessages||(this._deprecatedMessages=new Set),this._deprecatedMessages.has(i)||(console.warn(i),this._deprecatedMessages.add(i))}if(!n.name)try{Object.defineProperty(n,"name",{get:()=>"_"+t.replace(/\W+/g,"_")+"_hook_cb",configurable:!0})}catch{}return this._hooks[t]=this._hooks[t]||[],this._hooks[t].push(n),()=>{n&&(this.removeHook(t,n),n=void 0)}}hookOnce(t,n){let r,o=(...s)=>(typeof r=="function"&&r(),r=void 0,o=void 0,n(...s));return r=this.hook(t,o),r}removeHook(t,n){if(this._hooks[t]){const r=this._hooks[t].indexOf(n);r!==-1&&this._hooks[t].splice(r,1),this._hooks[t].length===0&&delete this._hooks[t]}}deprecateHook(t,n){this._deprecatedHooks[t]=typeof n=="string"?{to:n}:n;const r=this._hooks[t]||[];delete this._hooks[t];for(const o of r)this.hook(t,o)}deprecateHooks(t){Object.assign(this._deprecatedHooks,t);for(const n in t)this.deprecateHook(n,t[n])}addHooks(t){const n=ls(t),r=Object.keys(n).map(o=>this.hook(o,n[o]));return()=>{for(const o of r.splice(0,r.length))o()}}removeHooks(t){const n=ls(t);for(const r in n)this.removeHook(r,n[r])}removeAllHooks(){for(const t in this._hooks)delete this._hooks[t]}callHook(t,...n){return n.unshift(t),this.callHookWith(Dp,t,...n)}callHookParallel(t,...n){return n.unshift(t),this.callHookWith(Bp,t,...n)}callHookWith(t,n,...r){const o=this._before||this._after?{name:n,args:r,context:{}}:void 0;this._before&&$o(this._before,o);const s=t(n in this._hooks?[...this._hooks[n]]:[],r);return s instanceof Promise?s.finally(()=>{this._after&&o&&$o(this._after,o)}):(this._after&&o&&$o(this._after,o),s)}beforeEach(t){return this._before=this._before||[],this._before.push(t),()=>{if(this._before!==void 0){const n=this._before.indexOf(t);n!==-1&&this._before.splice(n,1)}}}afterEach(t){return this._after=this._after||[],this._after.push(t),()=>{if(this._after!==void 0){const n=this._after.indexOf(t);n!==-1&&this._after.splice(n,1)}}}}function Yl(){return new Fp}function Vp(e={}){let t,n=!1;const r=i=>{if(t&&t!==i)throw new Error("Context conflict")};let o;if(e.asyncContext){const i=e.AsyncLocalStorage||globalThis.AsyncLocalStorage;i?o=new i:console.warn("[unctx] `AsyncLocalStorage` is not provided.")}const s=()=>{if(o&&t===void 0){const i=o.getStore();if(i!==void 0)return i}return t};return{use:()=>{const i=s();if(i===void 0)throw new Error("Context is not available");return i},tryUse:()=>s(),set:(i,a)=>{a||r(i),t=i,n=!0},unset:()=>{t=void 0,n=!1},call:(i,a)=>{r(i),t=i;try{return o?o.run(i,a):a()}finally{n||(t=void 0)}},async callAsync(i,a){t=i;const c=()=>{t=i},u=()=>t===i?c:void 0;us.add(u);try{const l=o?o.run(i,a):a();return n||(t=void 0),await l}finally{us.delete(u)}}}}function zp(e={}){const t={};return{get(n,r={}){return t[n]||(t[n]=Vp({...e,...r})),t[n],t[n]}}}const Xr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof global<"u"?global:typeof window<"u"?window:{},ba="__unctx__",Up=Xr[ba]||(Xr[ba]=zp()),Kp=(e,t={})=>Up.get(e,t),wa="__unctx_async_handlers__",us=Xr[wa]||(Xr[wa]=new Set);function rr(e){const t=[];for(const o of us){const s=o();s&&t.push(s)}const n=()=>{for(const o of t)o()};let r=e();return r&&typeof r=="object"&&"catch"in r&&(r=r.catch(o=>{throw n(),o})),[r,n]}const Zl=Kp("nuxt-app",{asyncContext:!1}),Wp="__nuxt_plugin";function qp(e){let t=0;const n={_scope:If(),provide:void 0,globalName:"nuxt",versions:{get nuxt(){return"3.9.3"},get vue(){return n.vueApp.version}},payload:rt({data:{},state:{},once:new Set,_errors:{},...window.__NUXT__??{}}),static:{data:{}},runWithContext:o=>n._scope.run(()=>eu(n,o)),isHydrating:!0,deferHydration(){if(!n.isHydrating)return()=>{};t++;let o=!1;return()=>{if(!o&&(o=!0,t--,t===0))return n.isHydrating=!1,n.callHook("app:suspense:resolve")}},_asyncDataPromises:{},_asyncData:{},_payloadRevivers:{},...e};n.hooks=Yl(),n.hook=n.hooks.hook,n.callHook=n.hooks.callHook,n.provide=(o,s)=>{const i="$"+o;Sr(n,i,s),Sr(n.vueApp.config.globalProperties,i,s)},Sr(n.vueApp,"$nuxt",n),Sr(n.vueApp.config.globalProperties,"$nuxt",n);{window.addEventListener("nuxt.preloadError",s=>{n.callHook("app:chunkError",{error:s.payload})}),window.useNuxtApp=window.useNuxtApp||fe;const o=n.hook("app:error",(...s)=>{console.error("[nuxt] error caught during app initialization",...s)});n.hook("app:mounted",o)}const r=rt(n.payload.config);return n.provide("config",r),n}async function Gp(e,t){if(t.hooks&&e.hooks.addHooks(t.hooks),typeof t=="function"){const{provide:n}=await e.runWithContext(()=>t(e))||{};if(n&&typeof n=="object")for(const r in n)e.provide(r,n[r])}}async function Qp(e,t){const n=[],r=[],o=[],s=[];let i=0;async function a(c){if(c.dependsOn&&!c.dependsOn.every(u=>n.includes(u)))r.push([new Set(c.dependsOn),c]);else{const u=Gp(e,c).then(async()=>{c._name&&(n.push(c._name),await Promise.all(r.map(async([l,f])=>{l.has(c._name)&&(l.delete(c._name),l.size===0&&(i++,await a(f)))})))});c.parallel?o.push(u.catch(l=>s.push(l))):await u}}for(const c of t)await a(c);if(await Promise.all(o),i)for(let c=0;c{}),e,{[Wp]:!0,_name:t})}function eu(e,t,n){const r=()=>n?t(...n):t();return Zl.set(e),e.vueApp.runWithContext(r)}function fe(){var t;let e;if(Cl()&&(e=(t=Ft())==null?void 0:t.appContext.app.$nuxt),e=e||Zl.tryUse(),!e)throw new Error("[nuxt] instance unavailable");return e}function je(){return fe().$config}function Sr(e,t,n){Object.defineProperty(e,t,{get:()=>n})}const Jp="modulepreload",Xp=function(e,t){return e[0]==="."?new URL(e,t).href:e},Ea={},Yp=function(t,n,r){let o=Promise.resolve();if(n&&n.length>0){const s=document.getElementsByTagName("link");o=Promise.all(n.map(i=>{if(i=Xp(i,r),i in Ea)return;Ea[i]=!0;const a=i.endsWith(".css"),c=a?'[rel="stylesheet"]':"";if(!!r)for(let f=s.length-1;f>=0;f--){const d=s[f];if(d.href===i&&(!a||d.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${i}"]${c}`))return;const l=document.createElement("link");if(l.rel=a?"stylesheet":Jp,a||(l.as="script",l.crossOrigin=""),l.href=i,document.head.appendChild(l),a)return new Promise((f,d)=>{l.addEventListener("load",f),l.addEventListener("error",()=>d(new Error(`Unable to preload CSS for ${i}`)))})}))}return o.then(()=>t()).catch(s=>{const i=new Event("vite:preloadError",{cancelable:!0});if(i.payload=s,window.dispatchEvent(i),!i.defaultPrevented)throw s})},L=(...e)=>Yp(...e).catch(t=>{const n=new Event("nuxt.preloadError");throw n.payload=t,window.dispatchEvent(n),t}),Zp=-1,em=-2,tm=-3,nm=-4,rm=-5,om=-6;function sm(e,t){return im(JSON.parse(e),t)}function im(e,t){if(typeof e=="number")return o(e,!0);if(!Array.isArray(e)||e.length===0)throw new Error("Invalid input");const n=e,r=Array(n.length);function o(s,i=!1){if(s===Zp)return;if(s===tm)return NaN;if(s===nm)return 1/0;if(s===rm)return-1/0;if(s===om)return-0;if(i)throw new Error("Invalid input");if(s in r)return r[s];const a=n[s];if(!a||typeof a!="object")r[s]=a;else if(Array.isArray(a))if(typeof a[0]=="string"){const c=a[0],u=t==null?void 0:t[c];if(u)return r[s]=u(o(a[1]));switch(c){case"Date":r[s]=new Date(a[1]);break;case"Set":const l=new Set;r[s]=l;for(let h=1;h>>9)+65536).toString(16).substring(1,8).toLowerCase()}function Ca(e){return e._h||ui(e._d?e._d:`${e.tag}:${e.textContent||e.innerHTML||""}:${Object.entries(e.props).map(([t,n])=>`${t}:${String(n)}`).join(",")}`)}function nu(e,t){const{props:n,tag:r}=e;if(um.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}function Pa(e,t){return e==null?t||null:typeof e=="function"?e(t):e}async function dm(e,t,n){const r={tag:e,props:await ru(typeof t=="object"&&typeof t!="function"&&!(t instanceof Promise)?{...t}:{[["script","noscript","style"].includes(e)?"innerHTML":"textContent"]:t},["templateParams","titleTemplate"].includes(e))};return tu.forEach(o=>{const s=typeof r.props[o]<"u"?r.props[o]:n[o];typeof s<"u"&&((!["innerHTML","textContent","children"].includes(o)||cm.includes(r.tag))&&(r[o==="children"?"innerHTML":o]=s),delete r.props[o])}),r.props.body&&(r.tagPosition="bodyClose",delete r.props.body),r.tag==="script"&&typeof r.innerHTML=="object"&&(r.innerHTML=JSON.stringify(r.innerHTML),r.props.type=r.props.type||"application/json"),Array.isArray(r.props.content)?r.props.content.map(o=>({...r,props:{...r.props,content:o}})):r}function hm(e){return typeof e=="object"&&!Array.isArray(e)&&(e=Object.keys(e).filter(t=>e[t])),(Array.isArray(e)?e.join(" "):e).split(" ").filter(t=>t.trim()).filter(Boolean).join(" ")}async function ru(e,t){for(const n of Object.keys(e)){if(n==="class"){e[n]=hm(e[n]);continue}if(e[n]instanceof Promise&&(e[n]=await e[n]),!t&&!tu.includes(n)){const r=String(e[n]),o=n.startsWith("data-");r==="true"||r===""?e[n]=o?"true":!0:e[n]||(o&&r==="false"?e[n]="false":delete e[n])}}return e}const pm=10;async function mm(e){const t=[];return Object.entries(e.resolvedInput).filter(([n,r])=>typeof r<"u"&&lm.includes(n)).forEach(([n,r])=>{const o=am(r);t.push(...o.map(s=>dm(n,s,e)).flat())}),(await Promise.all(t)).flat().filter(Boolean).map((n,r)=>(n._e=e._i,e.mode&&(n._m=e.mode),n._p=(e._i<c&&c[u]||void 0,t):a=t[i],typeof a<"u"?(a||"").replace(/"/g,'\\"'):!1}let o=e;try{o=decodeURI(e)}catch{}return(o.match(/%(\w+\.+\w+)|%(\w+)/g)||[]).sort().reverse().forEach(i=>{const a=r(i.slice(1));typeof a=="string"&&(e=e.replace(new RegExp(`\\${i}(\\W|$)`,"g"),(c,u)=>`${a}${u}`).trim())}),e.includes(Tt)&&(e.endsWith(Tt)&&(e=e.slice(0,-Tt.length).trim()),e.startsWith(Tt)&&(e=e.slice(Tt.length).trim()),e=e.replace(new RegExp(`\\${Tt}\\s*\\${Tt}`,"g"),Tt),e=Ir(e,{separator:n},n)),e}async function ym(e){const t={tag:e.tagName.toLowerCase(),props:await ru(e.getAttributeNames().reduce((n,r)=>({...n,[r]:e.getAttribute(r)}),{})),innerHTML:e.innerHTML};return t._d=nu(t),t}async function su(e,t={}){var l;const n=t.document||e.resolvedOptions.document;if(!n)return;const r={shouldRender:e.dirty,tags:[]};if(await e.hooks.callHook("dom:beforeRender",r),!r.shouldRender)return;const o=(await e.resolveTags()).map(f=>({tag:f,id:Lr.includes(f.tag)?Ca(f):f.tag,shouldRender:!0}));let s=e._dom;if(!s){s={elMap:{htmlAttrs:n.documentElement,bodyAttrs:n.body}};for(const f of["body","head"]){const d=(l=n==null?void 0:n[f])==null?void 0:l.children;for(const h of[...d].filter(m=>Lr.includes(m.tagName.toLowerCase())))s.elMap[h.getAttribute("data-hid")||Ca(await ym(h))]=h}}s.pendingSideEffects={...s.sideEffects||{}},s.sideEffects={};function i(f,d,h){const m=`${f}:${d}`;s.sideEffects[m]=h,delete s.pendingSideEffects[m]}function a({id:f,$el:d,tag:h}){const m=h.tag.endsWith("Attrs");s.elMap[f]=d,m||(["textContent","innerHTML"].forEach(y=>{h[y]&&h[y]!==d[y]&&(d[y]=h[y])}),i(f,"el",()=>{s.elMap[f].remove(),delete s.elMap[f]})),Object.entries(h.props).forEach(([y,b])=>{const E=`attr:${y}`;if(y==="class")for(const v of(b||"").split(" ").filter(Boolean))m&&i(f,`${E}:${v}`,()=>d.classList.remove(v)),!d.classList.contains(v)&&d.classList.add(v);else d.getAttribute(y)!==b&&d.setAttribute(y,b===!0?"":String(b)),m&&i(f,E,()=>d.removeAttribute(y))})}const c=[],u={bodyClose:void 0,bodyOpen:void 0,head:void 0};for(const f of o){const{tag:d,shouldRender:h,id:m}=f;if(h){if(d.tag==="title"){n.title=d.textContent;continue}f.$el=f.$el||s.elMap[m],f.$el?a(f):Lr.includes(d.tag)&&c.push(f)}}for(const f of c){const d=f.tag.tagPosition||"head";f.$el=n.createElement(f.tag.tag),a(f),u[d]=u[d]||n.createDocumentFragment(),u[d].appendChild(f.$el)}for(const f of o)await e.hooks.callHook("dom:renderTag",f,n,i);u.head&&n.head.appendChild(u.head),u.bodyOpen&&n.body.insertBefore(u.bodyOpen,n.body.firstChild),u.bodyClose&&n.body.appendChild(u.bodyClose),Object.values(s.pendingSideEffects).forEach(f=>f()),e._dom=s,e.dirty=!1,await e.hooks.callHook("dom:rendered",{renders:o})}async function _m(e,t={}){const n=t.delayFn||(r=>setTimeout(r,10));return e._domUpdatePromise=e._domUpdatePromise||new Promise(r=>n(async()=>{await su(e,t),delete e._domUpdatePromise,r()}))}function vm(e){return t=>{var r,o;const n=((o=(r=t.resolvedOptions.document)==null?void 0:r.head.querySelector('script[id="unhead:payload"]'))==null?void 0:o.innerHTML)||!1;return n&&t.push(JSON.parse(n)),{mode:"client",hooks:{"entries:updated":function(s){_m(s,e)}}}}}const bm=["templateParams","htmlAttrs","bodyAttrs"],wm={hooks:{"tag:normalise":function({tag:e}){["hid","vmid","key"].forEach(r=>{e.props[r]&&(e.key=e.props[r],delete e.props[r])});const n=nu(e)||(e.key?`${e.tag}:${e.key}`:!1);n&&(e._d=n)},"tags:resolve":function(e){const t={};e.tags.forEach(r=>{const o=(r.key?`${r.tag}:${r.key}`:r._d)||r._p,s=t[o];if(s){let a=r==null?void 0:r.tagDuplicateStrategy;if(!a&&bm.includes(r.tag)&&(a="merge"),a==="merge"){const c=s.props;["class","style"].forEach(u=>{c[u]&&(r.props[u]?(u==="style"&&!c[u].endsWith(";")&&(c[u]+=";"),r.props[u]=`${c[u]} ${r.props[u]}`):r.props[u]=c[u])}),t[o].props={...c,...r.props};return}else if(r._e===s._e){s._duped=s._duped||[],r._d=`${s._d}:${s._duped.length+1}`,s._duped.push(r);return}else if(Yr(r)>Yr(s))return}const i=Object.keys(r.props).length+(r.innerHTML?1:0)+(r.textContent?1:0);if(Lr.includes(r.tag)&&i===0){delete t[o];return}t[o]=r});const n=[];Object.values(t).forEach(r=>{const o=r._duped;delete r._duped,n.push(r),o&&n.push(...o)}),e.tags=n,e.tags=e.tags.filter(r=>!(r.tag==="meta"&&(r.props.name||r.props.property)&&!r.props.content))}}},Em={mode:"server",hooks:{"tags:resolve":function(e){const t={};e.tags.filter(n=>["titleTemplate","templateParams","title"].includes(n.tag)&&n._m==="server").forEach(n=>{t[n.tag]=n.tag.startsWith("title")?n.textContent:n.props}),Object.keys(t).length&&e.tags.push({tag:"script",innerHTML:JSON.stringify(t),props:{id:"unhead:payload",type:"application/json"}})}}},Cm=["script","link","bodyAttrs"];function Pm(e){const t={},n={};return Object.entries(e.props).forEach(([r,o])=>{r.startsWith("on")&&typeof o=="function"?(ou.includes(r)&&(t[r]=`this.dataset.${r} = true`),n[r]=o):t[r]=o}),{props:t,eventHandlers:n}}const Tm=e=>({hooks:{"tags:resolve":function(t){for(const n of t.tags)if(Cm.includes(n.tag)){const{props:r,eventHandlers:o}=Pm(n);n.props=r,Object.keys(o).length&&((n.props.src||n.props.href)&&(n.key=n.key||ui(n.props.src||n.props.href)),n._eventHandlers=o)}},"dom:renderTag":function(t,n,r){if(!t.tag._eventHandlers)return;const o=t.tag.tag==="bodyAttrs"?n.defaultView:t.$el;Object.entries(t.tag._eventHandlers).forEach(([s,i])=>{const a=`${t.tag._d||t.tag._p}:${s}`,c=s.slice(2).toLowerCase(),u=`data-h-${c}`;if(r(t.id,a,()=>{}),t.$el.hasAttribute(u))return;t.$el.setAttribute(u,"");let l;const f=d=>{i(d),l==null||l.disconnect()};s in t.$el.dataset?f(new Event(s.replace("on",""))):ou.includes(s)&&typeof MutationObserver<"u"?(l=new MutationObserver(d=>{d.some(m=>m.attributeName===`data-${s}`)&&(f(new Event(s.replace("on",""))),l==null||l.disconnect())}),l.observe(t.$el,{attributes:!0})):o.addEventListener(c,f),r(t.id,a,()=>{l==null||l.disconnect(),o.removeEventListener(c,f),t.$el.removeAttribute(u)})})}}}),Sm=["link","style","script","noscript"],km={hooks:{"tag:normalise":({tag:e})=>{e.key&&Sm.includes(e.tag)&&(e.props["data-hid"]=e._h=ui(e.key))}}},Rm={hooks:{"tags:resolve":e=>{const t=n=>{var r;return(r=e.tags.find(o=>o._d===n))==null?void 0:r._p};for(const{prefix:n,offset:r}of gm)for(const o of e.tags.filter(s=>typeof s.tagPriority=="string"&&s.tagPriority.startsWith(n))){const s=t(o.tagPriority.replace(n,""));typeof s<"u"&&(o._p=s+r)}e.tags.sort((n,r)=>n._p-r._p).sort((n,r)=>Yr(n)-Yr(r))}}},Am={meta:"content",link:"href",htmlAttrs:"lang"},xm=e=>({hooks:{"tags:resolve":t=>{var a;const{tags:n}=t,r=(a=n.find(c=>c.tag==="title"))==null?void 0:a.textContent,o=n.findIndex(c=>c.tag==="templateParams"),s=o!==-1?n[o].props:{},i=s.separator||"|";delete s.separator,s.pageTitle=Ir(s.pageTitle||r||"",s,i);for(const c of n.filter(u=>u.processTemplateParams!==!1)){const u=Am[c.tag];u&&typeof c.props[u]=="string"?c.props[u]=Ir(c.props[u],s,i):(c.processTemplateParams===!0||["titleTemplate","title"].includes(c.tag))&&["innerHTML","textContent"].forEach(l=>{typeof c[l]=="string"&&(c[l]=Ir(c[l],s,i))})}e._templateParams=s,e._separator=i,t.tags=n.filter(c=>c.tag!=="templateParams")}}}),Lm={hooks:{"tags:resolve":e=>{const{tags:t}=e;let n=t.findIndex(o=>o.tag==="titleTemplate");const r=t.findIndex(o=>o.tag==="title");if(r!==-1&&n!==-1){const o=Pa(t[n].textContent,t[r].textContent);o!==null?t[r].textContent=o||t[r].textContent:delete t[r]}else if(n!==-1){const o=Pa(t[n].textContent);o!==null&&(t[n].textContent=o,t[n].tag="title",n=-1)}n!==-1&&delete t[n],e.tags=t.filter(Boolean)}}},Im={hooks:{"tags:afterResolve":function(e){for(const t of e.tags)typeof t.innerHTML=="string"&&(t.innerHTML&&["application/ld+json","application/json"].includes(t.props.type)?t.innerHTML=t.innerHTML.replace(/{a.dirty=!0,t.callHook("entries:updated",a)};let o=0,s=[];const i=[],a={plugins:i,dirty:!1,resolvedOptions:e,hooks:t,headEntries(){return s},use(c){const u=typeof c=="function"?c(a):c;(!u.key||!i.some(l=>l.key===u.key))&&(i.push(u),ka(u.mode,n)&&t.addHooks(u.hooks||{}))},push(c,u){u==null||delete u.head;const l={_i:o++,input:c,...u};return ka(l.mode,n)&&(s.push(l),r()),{dispose(){s=s.filter(f=>f._i!==l._i),t.callHook("entries:updated",a),r()},patch(f){s=s.map(d=>(d._i===l._i&&(d.input=l.input=f),d)),r()}}},async resolveTags(){const c={tags:[],entries:[...s]};await t.callHook("entries:resolve",c);for(const u of c.entries){const l=u.resolvedInput||u.input;if(u.resolvedInput=await(u.transform?u.transform(l):l),u.resolvedInput)for(const f of await mm(u)){const d={tag:f,entry:u,resolvedOptions:a.resolvedOptions};await t.callHook("tag:normalise",d),c.tags.push(d.tag)}}return await t.callHook("tags:beforeResolve",c),await t.callHook("tags:resolve",c),await t.callHook("tags:afterResolve",c),c.tags},ssr:n};return[wm,Em,Tm,km,Rm,xm,Lm,Im,...(e==null?void 0:e.plugins)||[]].forEach(c=>a.use(c)),a.hooks.callHook("init",a),a}function Mm(){return iu}const Nm=Bl.startsWith("3");function Hm(e){return typeof e=="function"?e():H(e)}function fs(e,t=""){if(e instanceof Promise)return e;const n=Hm(e);return!e||!n?n:Array.isArray(n)?n.map(r=>fs(r,t)):typeof n=="object"?Object.fromEntries(Object.entries(n).map(([r,o])=>r==="titleTemplate"||r.startsWith("on")?[r,H(o)]:[r,fs(o,r)])):n}const jm={hooks:{"entries:resolve":function(e){for(const t of e.entries)t.resolvedInput=fs(t.input)}}},Dm="usehead";function Bm(e){return{install(n){Nm&&(n.config.globalProperties.$unhead=e,n.config.globalProperties.$head=e,n.provide(Dm,e))}}.install}function Fm(e={}){e.domDelayFn=e.domDelayFn||(n=>Bt(()=>setTimeout(()=>n(),0)));const t=Om(e);return t.use(jm),t.install=Bm(t),t}const Vm=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},zm="__unhead_injection_handler__";function Um(e){Vm[zm]=e}const kr=/^[\u0009\u0020-\u007E\u0080-\u00FF]+$/;function Km(e,t){if(typeof e!="string")throw new TypeError("argument str must be a string");const n={},o=(t||{}).decode||Gm;let s=0;for(;scu(t,e)}}function au(e){const t={};for(const n in e)t[n]=n==="dynamic"?new Map(Object.entries(e[n]).map(([r,o])=>[r,au(o)])):new Map(Object.entries(e[n]));return t}function Xm(e){return Jm(au(e))}function cu(e,t){const n=[];for(const[o,s]of Aa(t.wildcard))e.startsWith(o)&&n.push(s);for(const[o,s]of Aa(t.dynamic))if(e.startsWith(o+"/")){const i="/"+e.slice(o.length).split("/").splice(2).join("/");n.push(...cu(i,s))}const r=t.static.get(e);return r&&n.push(r),n.filter(Boolean)}function Aa(e){return[...e.entries()].sort((t,n)=>t[0].length-n[0].length)}function Mo(e){if(e===null||typeof e!="object")return!1;const t=Object.getPrototypeOf(e);return t!==null&&t!==Object.prototype&&Object.getPrototypeOf(t)!==null||Symbol.iterator in e?!1:Symbol.toStringTag in e?Object.prototype.toString.call(e)==="[object Module]":!0}function ds(e,t,n=".",r){if(!Mo(t))return ds(e,{},n,r);const o=Object.assign({},t);for(const s in e){if(s==="__proto__"||s==="constructor")continue;const i=e[s];i!=null&&(r&&r(o,s,i,n)||(Array.isArray(i)&&Array.isArray(o[s])?o[s]=[...i,...o[s]]:Mo(i)&&Mo(o[s])?o[s]=ds(i,o[s],(n?`${n}.`:"")+s.toString(),r):o[s]=i))}return o}function lu(e){return(...t)=>t.reduce((n,r)=>ds(n,r,"",e),{})}const Un=lu(),Ym=lu((e,t,n)=>{if(e[t]!==void 0&&typeof n=="function")return e[t]=n(e[t]),!0});function Zm(e,t){try{return t in e}catch{return!1}}var eg=Object.defineProperty,tg=(e,t,n)=>t in e?eg(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Wt=(e,t,n)=>(tg(e,typeof t!="symbol"?t+"":t,n),n);class hs extends Error{constructor(t,n={}){super(t,n),Wt(this,"statusCode",500),Wt(this,"fatal",!1),Wt(this,"unhandled",!1),Wt(this,"statusMessage"),Wt(this,"data"),Wt(this,"cause"),n.cause&&!this.cause&&(this.cause=n.cause)}toJSON(){const t={message:this.message,statusCode:ms(this.statusCode,500)};return this.statusMessage&&(t.statusMessage=uu(this.statusMessage)),this.data!==void 0&&(t.data=this.data),t}}Wt(hs,"__h3_error__",!0);function ps(e){if(typeof e=="string")return new hs(e);if(ng(e))return e;const t=new hs(e.message??e.statusMessage??"",{cause:e.cause||e});if(Zm(e,"stack"))try{Object.defineProperty(t,"stack",{get(){return e.stack}})}catch{try{t.stack=e.stack}catch{}}if(e.data&&(t.data=e.data),e.statusCode?t.statusCode=ms(e.statusCode,t.statusCode):e.status&&(t.statusCode=ms(e.status,t.statusCode)),e.statusMessage?t.statusMessage=e.statusMessage:e.statusText&&(t.statusMessage=e.statusText),t.statusMessage){const n=t.statusMessage;uu(t.statusMessage)!==n&&console.warn("[h3] Please prefer using `message` for longer error messages instead of `statusMessage`. In the future, `statusMessage` will be sanitized by default.")}return e.fatal!==void 0&&(t.fatal=e.fatal),e.unhandled!==void 0&&(t.unhandled=e.unhandled),t}function ng(e){var t;return((t=e==null?void 0:e.constructor)==null?void 0:t.__h3_error__)===!0}const rg=/[^\u0009\u0020-\u007E]/g;function uu(e=""){return e.replace(rg,"")}function ms(e,t=200){return!e||(typeof e=="string"&&(e=Number.parseInt(e,10)),e<100||e>999)?t:e}const og=Symbol("layout-meta"),po=Symbol("route"),fu="__nuxt_error",mo=()=>Zc(fe().payload,"error"),fn=e=>{const t=fi(e);try{const n=fe(),r=mo();n.hooks.callHook("app:error",t),r.value=r.value||t}catch{throw t}return t},sg=async(e={})=>{const t=fe(),n=mo();t.callHook("app:error:cleared",e),e.redirect&&await st().replace(e.redirect),n.value=null},ig=e=>!!e&&typeof e=="object"&&fu in e,fi=e=>{const t=ps(e);return Object.defineProperty(t,fu,{value:!0,configurable:!1,writable:!1}),t},st=()=>{var e;return(e=fe())==null?void 0:e.$router},Dt=()=>Cl()?Oe(po,fe()._route):fe()._route;const ag=(e,t,n={})=>{const r=fe(),o=n.global||typeof e!="string",s=typeof e!="string"?e:t;if(!s){console.warn("[nuxt] No route middleware passed to `addRouteMiddleware`.",e);return}o?r._middleware.global.push(s):r._middleware.named[e]=s},cg=()=>{try{if(fe()._processingMiddleware)return!0}catch{return!0}return!1},du=(e,t)=>{e||(e="/");const n=typeof e=="string"?e:ql(e.path||"/",e.query||{})+(e.hash||"");if(t!=null&&t.open){{const{target:a="_blank",windowFeatures:c={}}=t.open,u=Object.entries(c).filter(([l,f])=>f!==void 0).map(([l,f])=>`${l.toLowerCase()}=${f}`).join(", ");open(n,a,u)}return Promise.resolve()}const r=(t==null?void 0:t.external)||_t(n,{acceptRelative:!0});if(r){if(!(t!=null&&t.external))throw new Error("Navigating to an external URL is not allowed by default. Use `navigateTo(url, { external: true })`.");const a=pr(n).protocol;if(a&&ap(a))throw new Error(`Cannot navigate to a URL with '${a}' protocol.`)}const o=cg();if(!r&&o)return e;const s=st(),i=fe();return r?(i._scope.stop(),t!=null&&t.replace?location.replace(n):location.href=n,o?i.isHydrating?new Promise(()=>{}):!1:Promise.resolve()):t!=null&&t.replace?s.replace(e):s.push(e)};function ct(e){if(typeof e!="object")return e;var t,n,r=Object.prototype.toString.call(e);if(r==="[object Object]"){if(e.constructor!==Object&&typeof e.constructor=="function"){n=new e.constructor;for(t in e)e.hasOwnProperty(t)&&n[t]!==e[t]&&(n[t]=ct(e[t]))}else{n={};for(t in e)t==="__proto__"?Object.defineProperty(n,t,{value:ct(e[t]),configurable:!0,enumerable:!0,writable:!0}):n[t]=ct(e[t])}return n}if(r==="[object Array]"){for(t=e.length,n=Array(t);t--;)n[t]=ct(e[t]);return n}return r==="[object Set]"?(n=new Set,e.forEach(function(o){n.add(ct(o))}),n):r==="[object Map]"?(n=new Map,e.forEach(function(o,s){n.set(ct(s),ct(o))}),n):r==="[object Date]"?new Date(+e):r==="[object RegExp]"?(n=new RegExp(e.source,e.flags),n.lastIndex=e.lastIndex,n):r==="[object DataView]"?new e.constructor(ct(e.buffer)):r==="[object ArrayBuffer]"?e.slice(0):r.slice(-6)==="Array]"?new e.constructor(e):e}const lg={alpine:{title:"Alpine",description:"The minimalist blog theme",image:{src:"/social-card-preview.png",alt:"An image showcasing my project.",width:400,height:300},header:{position:"right",logo:{path:"/logo.svg",pathDark:"/logo-dark.svg",alt:"alpine"}},footer:{credits:{enabled:!0,repository:"https://www.github.com/nuxt-themes/alpine"},navigation:!0,alignment:"center",message:"Follow me on"},socials:{twitter:"nuxtlabs",instagram:"atinuxt",linkedin:{icon:"uil:linkedin",label:"LinkedIn",href:"https://www.linkedin.com/company/nuxtlabs"}},form:{successMessage:"Message sent. Thank you!"}}},ug={alpine:{title:"Alpine",description:"The minimalist blog theme",image:{src:"/social-card-preview.png",alt:"An image showcasing my project.",width:400,height:300},header:{position:"right",logo:{path:"/logo.svg",pathDark:"/logo-dark.svg",alt:"alpine"}},footer:{credits:{enabled:!0,text:"Alpine",repository:"https://www.github.com/nuxt-themes/alpine"},navigation:!0,alignment:"center",message:"Follow me on"},socials:{twitter:"",instagram:"",github:"",facebook:"",medium:"",youtube:""},form:{successMessage:"Message sent. Thank you!"},backToTop:{text:"Back to top",icon:"material-symbols:arrow-upward"}}},fg={prose:{copyButton:{iconCopy:"ph:copy",iconCopied:"ph:check"},headings:{icon:"ph:link"}}},dg={},hg={nuxt:{buildId:"07b30e1f-60f5-47aa-9ba1-9185fd48010c"}},pg=Ym(lg,ug,fg,dg,hg);function mr(){const e=fe();return e._appConfig||(e._appConfig=rt(pg)),e._appConfig}const yE=!1,gs=!1,mg=!1,gg={componentName:"NuxtLink"},_E={deep:!0},yg="#__nuxt";let Or,hu;function _g(){var t;const e=(t=mr().nuxt)==null?void 0:t.buildId;return Or=$fetch(ci(`builds/meta/${e}.json`)),Or.then(n=>{hu=Xm(n.matcher)}),Or}function go(){return Or||_g()}async function pu(e){return await go(),Un({},...hu.matchAll(e).reverse())}function xa(e,t={}){const n=vg(e,t),r=fe(),o=r._payloadCache=r._payloadCache||{};return n in o||(o[n]=bg(e).then(s=>s?mu(n).then(i=>i||(delete o[n],null)):(o[n]=null,null))),o[n]}const La="json";function vg(e,t={}){const n=new URL(e,"http://localhost");if(n.search)throw new Error("Payload URL cannot contain search params: "+e);if(n.host!=="localhost"||_t(n.pathname,{acceptRelative:!0}))throw new Error("Payload URL must not include hostname: "+e);const r=t.hash||(t.fresh?Date.now():"");return on(je().app.baseURL,n.pathname,r?`_payload.${r}.${La}`:`_payload.${La}`)}async function mu(e){const t=fetch(e).then(n=>n.text().then(gu));try{return await t}catch(n){console.warn("[nuxt] Cannot load payload ",e,n)}return null}async function bg(e=Dt().path){if(e=jt(e),(await go()).prerendered.includes(e))return!0;const n=await pu(e);return!!n.prerender&&!n.redirect}let Rr=null;async function wg(){if(Rr)return Rr;const e=document.getElementById("__NUXT_DATA__");if(!e)return{};const t=await gu(e.textContent||""),n=e.dataset.src?await mu(e.dataset.src):void 0;return Rr={...t,...n,...window.__NUXT__},Rr}async function gu(e){return await sm(e,fe()._payloadRevivers)}function Eg(e,t){fe()._payloadRevivers[e]=t}const Ia={NuxtError:e=>fi(e),EmptyShallowRef:e=>$t(e==="_"?void 0:e==="0n"?BigInt(0):nr(e)),EmptyRef:e=>ve(e==="_"?void 0:e==="0n"?BigInt(0):nr(e)),ShallowRef:e=>$t(e),ShallowReactive:e=>Ot(e),Ref:e=>ve(e),Reactive:e=>rt(e)},Cg=We({name:"nuxt:revive-payload:client",order:-30,async setup(e){let t,n;for(const r in Ia)Eg(r,Ia[r]);Object.assign(e.payload,([t,n]=rr(()=>e.runWithContext(wg)),t=await t,n(),t)),window.__NUXT__=e.payload}}),Pg=[],Tg=We({name:"nuxt:head",enforce:"pre",setup(e){const t=Fm({plugins:Pg});Um(()=>fe().vueApp._context.provides.usehead),e.vueApp.use(t);{let n=!0;const r=async()=>{n=!1,await su(t)};t.hooks.hook("dom:beforeRender",o=>{o.shouldRender=!n}),e.hooks.hook("page:start",()=>{n=!0}),e.hooks.hook("page:finish",()=>{e.isHydrating||r()}),e.hooks.hook("app:error",r),e.hooks.hook("app:suspense:resolve",r)}}});/*! + * vue-router v4.3.0 + * (c) 2024 Eduardo San Martin Morote + * @license MIT + */const ln=typeof document<"u";function Sg(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const le=Object.assign;function No(e,t){const n={};for(const r in t){const o=t[r];n[r]=ot(o)?o.map(e):e(o)}return n}const Kn=()=>{},ot=Array.isArray,yu=/#/g,kg=/&/g,Rg=/\//g,Ag=/=/g,xg=/\?/g,_u=/\+/g,Lg=/%5B/g,Ig=/%5D/g,vu=/%5E/g,Og=/%60/g,bu=/%7B/g,$g=/%7C/g,wu=/%7D/g,Mg=/%20/g;function di(e){return encodeURI(""+e).replace($g,"|").replace(Lg,"[").replace(Ig,"]")}function Ng(e){return di(e).replace(bu,"{").replace(wu,"}").replace(vu,"^")}function ys(e){return di(e).replace(_u,"%2B").replace(Mg,"+").replace(yu,"%23").replace(kg,"%26").replace(Og,"`").replace(bu,"{").replace(wu,"}").replace(vu,"^")}function Hg(e){return ys(e).replace(Ag,"%3D")}function jg(e){return di(e).replace(yu,"%23").replace(xg,"%3F")}function Dg(e){return e==null?"":jg(e).replace(Rg,"%2F")}function or(e){try{return decodeURIComponent(""+e)}catch{}return""+e}const Bg=/\/$/,Fg=e=>e.replace(Bg,"");function Ho(e,t,n="/"){let r,o={},s="",i="";const a=t.indexOf("#");let c=t.indexOf("?");return a=0&&(c=-1),c>-1&&(r=t.slice(0,c),s=t.slice(c+1,a>-1?a:t.length),o=e(s)),a>-1&&(r=r||t.slice(0,a),i=t.slice(a,t.length)),r=Kg(r??t,n),{fullPath:r+(s&&"?")+s+i,path:r,query:o,hash:or(i)}}function Vg(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Oa(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function zg(e,t,n){const r=t.matched.length-1,o=n.matched.length-1;return r>-1&&r===o&&wn(t.matched[r],n.matched[o])&&Eu(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function wn(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Eu(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!Ug(e[n],t[n]))return!1;return!0}function Ug(e,t){return ot(e)?$a(e,t):ot(t)?$a(t,e):e===t}function $a(e,t){return ot(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function Kg(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/"),o=r[r.length-1];(o===".."||o===".")&&r.push("");let s=n.length-1,i,a;for(i=0;i1&&s--;else break;return n.slice(0,s).join("/")+"/"+r.slice(i).join("/")}var sr;(function(e){e.pop="pop",e.push="push"})(sr||(sr={}));var Wn;(function(e){e.back="back",e.forward="forward",e.unknown=""})(Wn||(Wn={}));function Wg(e){if(!e)if(ln){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Fg(e)}const qg=/^[^#]+#/;function Gg(e,t){return e.replace(qg,"#")+t}function Qg(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const yo=()=>({left:window.scrollX,top:window.scrollY});function Jg(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),o=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!o)return;t=Qg(o,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function Ma(e,t){return(history.state?history.state.position-t:-1)+e}const _s=new Map;function Xg(e,t){_s.set(e,t)}function Yg(e){const t=_s.get(e);return _s.delete(e),t}let Zg=()=>location.protocol+"//"+location.host;function Cu(e,t){const{pathname:n,search:r,hash:o}=t,s=e.indexOf("#");if(s>-1){let a=o.includes(e.slice(s))?e.slice(s).length:1,c=o.slice(a);return c[0]!=="/"&&(c="/"+c),Oa(c,"")}return Oa(n,e)+r+o}function ey(e,t,n,r){let o=[],s=[],i=null;const a=({state:d})=>{const h=Cu(e,location),m=n.value,y=t.value;let b=0;if(d){if(n.value=h,t.value=d,i&&i===m){i=null;return}b=y?d.position-y.position:0}else r(h);o.forEach(E=>{E(n.value,m,{delta:b,type:sr.pop,direction:b?b>0?Wn.forward:Wn.back:Wn.unknown})})};function c(){i=n.value}function u(d){o.push(d);const h=()=>{const m=o.indexOf(d);m>-1&&o.splice(m,1)};return s.push(h),h}function l(){const{history:d}=window;d.state&&d.replaceState(le({},d.state,{scroll:yo()}),"")}function f(){for(const d of s)d();s=[],window.removeEventListener("popstate",a),window.removeEventListener("beforeunload",l)}return window.addEventListener("popstate",a),window.addEventListener("beforeunload",l,{passive:!0}),{pauseListeners:c,listen:u,destroy:f}}function Na(e,t,n,r=!1,o=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:o?yo():null}}function ty(e){const{history:t,location:n}=window,r={value:Cu(e,n)},o={value:t.state};o.value||s(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function s(c,u,l){const f=e.indexOf("#"),d=f>-1?(n.host&&document.querySelector("base")?e:e.slice(f))+c:Zg()+e+c;try{t[l?"replaceState":"pushState"](u,"",d),o.value=u}catch(h){console.error(h),n[l?"replace":"assign"](d)}}function i(c,u){const l=le({},t.state,Na(o.value.back,c,o.value.forward,!0),u,{position:o.value.position});s(c,l,!0),r.value=c}function a(c,u){const l=le({},o.value,t.state,{forward:c,scroll:yo()});s(l.current,l,!0);const f=le({},Na(r.value,c,null),{position:l.position+1},u);s(c,f,!1),r.value=c}return{location:r,state:o,push:a,replace:i}}function Pu(e){e=Wg(e);const t=ty(e),n=ey(e,t.state,t.location,t.replace);function r(s,i=!0){i||n.pauseListeners(),history.go(s)}const o=le({location:"",base:e,go:r,createHref:Gg.bind(null,e)},t,n);return Object.defineProperty(o,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(o,"state",{enumerable:!0,get:()=>t.state.value}),o}function ny(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Pu(e)}function ry(e){return typeof e=="string"||e&&typeof e=="object"}function Tu(e){return typeof e=="string"||typeof e=="symbol"}const tt={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Su=Symbol("");var Ha;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(Ha||(Ha={}));function En(e,t){return le(new Error,{type:e,[Su]:!0},t)}function ht(e,t){return e instanceof Error&&Su in e&&(t==null||!!(e.type&t))}const ja="[^/]+?",oy={sensitive:!1,strict:!1,start:!0,end:!0},sy=/[.+*?^${}()[\]/\\]/g;function iy(e,t){const n=le({},oy,t),r=[];let o=n.start?"^":"";const s=[];for(const u of e){const l=u.length?[]:[90];n.strict&&!u.length&&(o+="/");for(let f=0;ft.length?t.length===1&&t[0]===80?1:-1:0}function cy(e,t){let n=0;const r=e.score,o=t.score;for(;n0&&t[t.length-1]<0}const ly={type:0,value:""},uy=/[a-zA-Z0-9_]/;function fy(e){if(!e)return[[]];if(e==="/")return[[ly]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(h){throw new Error(`ERR (${n})/"${u}": ${h}`)}let n=0,r=n;const o=[];let s;function i(){s&&o.push(s),s=[]}let a=0,c,u="",l="";function f(){u&&(n===0?s.push({type:0,value:u}):n===1||n===2||n===3?(s.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${u}) must be alone in its segment. eg: '/:ids+.`),s.push({type:1,value:u,regexp:l,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),u="")}function d(){u+=c}for(;a{i(v)}:Kn}function i(l){if(Tu(l)){const f=r.get(l);f&&(r.delete(l),n.splice(n.indexOf(f),1),f.children.forEach(i),f.alias.forEach(i))}else{const f=n.indexOf(l);f>-1&&(n.splice(f,1),l.record.name&&r.delete(l.record.name),l.children.forEach(i),l.alias.forEach(i))}}function a(){return n}function c(l){let f=0;for(;f=0&&(l.record.path!==n[f].record.path||!ku(l,n[f]));)f++;n.splice(f,0,l),l.record.name&&!Fa(l)&&r.set(l.record.name,l)}function u(l,f){let d,h={},m,y;if("name"in l&&l.name){if(d=r.get(l.name),!d)throw En(1,{location:l});y=d.record.name,h=le(Ba(f.params,d.keys.filter(v=>!v.optional).concat(d.parent?d.parent.keys.filter(v=>v.optional):[]).map(v=>v.name)),l.params&&Ba(l.params,d.keys.map(v=>v.name))),m=d.stringify(h)}else if(l.path!=null)m=l.path,d=n.find(v=>v.re.test(m)),d&&(h=d.parse(m),y=d.record.name);else{if(d=f.name?r.get(f.name):n.find(v=>v.re.test(f.path)),!d)throw En(1,{location:l,currentLocation:f});y=d.record.name,h=le({},f.params,l.params),m=d.stringify(h)}const b=[];let E=d;for(;E;)b.unshift(E.record),E=E.parent;return{name:y,path:m,params:h,matched:b,meta:gy(b)}}return e.forEach(l=>s(l)),{addRoute:s,resolve:u,removeRoute:i,getRoutes:a,getRecordMatcher:o}}function Ba(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function py(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:my(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function my(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="object"?n[r]:n;return t}function Fa(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function gy(e){return e.reduce((t,n)=>le(t,n.meta),{})}function Va(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function ku(e,t){return t.children.some(n=>n===e||ku(e,n))}function yy(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let o=0;os&&ys(s)):[r&&ys(r)]).forEach(s=>{s!==void 0&&(t+=(t.length?"&":"")+n,s!=null&&(t+="="+s))})}return t}function _y(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=ot(r)?r.map(o=>o==null?null:""+o):r==null?r:""+r)}return t}const vy=Symbol(""),Ua=Symbol(""),hi=Symbol(""),pi=Symbol(""),vs=Symbol("");function In(){let e=[];function t(r){return e.push(r),()=>{const o=e.indexOf(r);o>-1&&e.splice(o,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function xt(e,t,n,r,o,s=i=>i()){const i=r&&(r.enterCallbacks[o]=r.enterCallbacks[o]||[]);return()=>new Promise((a,c)=>{const u=d=>{d===!1?c(En(4,{from:n,to:t})):d instanceof Error?c(d):ry(d)?c(En(2,{from:t,to:d})):(i&&r.enterCallbacks[o]===i&&typeof d=="function"&&i.push(d),a())},l=s(()=>e.call(r&&r.instances[o],t,n,u));let f=Promise.resolve(l);e.length<3&&(f=f.then(u)),f.catch(d=>c(d))})}function jo(e,t,n,r,o=s=>s()){const s=[];for(const i of e)for(const a in i.components){let c=i.components[a];if(!(t!=="beforeRouteEnter"&&!i.instances[a]))if(by(c)){const l=(c.__vccOpts||c)[t];l&&s.push(xt(l,n,r,i,a,o))}else{let u=c();s.push(()=>u.then(l=>{if(!l)return Promise.reject(new Error(`Couldn't resolve component "${a}" at "${i.path}"`));const f=Sg(l)?l.default:l;i.components[a]=f;const h=(f.__vccOpts||f)[t];return h&&xt(h,n,r,i,a,o)()}))}}return s}function by(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function Ka(e){const t=Oe(hi),n=Oe(pi),r=oe(()=>t.resolve(H(e.to))),o=oe(()=>{const{matched:c}=r.value,{length:u}=c,l=c[u-1],f=n.matched;if(!l||!f.length)return-1;const d=f.findIndex(wn.bind(null,l));if(d>-1)return d;const h=Wa(c[u-2]);return u>1&&Wa(l)===h&&f[f.length-1].path!==h?f.findIndex(wn.bind(null,c[u-2])):d}),s=oe(()=>o.value>-1&&Py(n.params,r.value.params)),i=oe(()=>o.value>-1&&o.value===n.matched.length-1&&Eu(n.params,r.value.params));function a(c={}){return Cy(c)?t[H(e.replace)?"replace":"push"](H(e.to)).catch(Kn):Promise.resolve()}return{route:r,href:oe(()=>r.value.href),isActive:s,isExactActive:i,navigate:a}}const wy=xe({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:Ka,setup(e,{slots:t}){const n=rt(Ka(e)),{options:r}=Oe(hi),o=oe(()=>({[qa(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[qa(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const s=t.default&&t.default(n);return e.custom?s:$e("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:o.value},s)}}}),Ey=wy;function Cy(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function Py(e,t){for(const n in t){const r=t[n],o=e[n];if(typeof r=="string"){if(r!==o)return!1}else if(!ot(o)||o.length!==r.length||r.some((s,i)=>s!==o[i]))return!1}return!0}function Wa(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const qa=(e,t,n)=>e??t??n,Ty=xe({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=Oe(vs),o=oe(()=>e.route||r.value),s=Oe(Ua,0),i=oe(()=>{let u=H(s);const{matched:l}=o.value;let f;for(;(f=l[u])&&!f.components;)u++;return u}),a=oe(()=>o.value.matched[i.value]);yn(Ua,oe(()=>i.value+1)),yn(vy,a),yn(vs,o);const c=ve();return Ne(()=>[c.value,a.value,e.name],([u,l,f],[d,h,m])=>{l&&(l.instances[f]=u,h&&h!==l&&u&&u===d&&(l.leaveGuards.size||(l.leaveGuards=h.leaveGuards),l.updateGuards.size||(l.updateGuards=h.updateGuards))),u&&l&&(!h||!wn(l,h)||!d)&&(l.enterCallbacks[f]||[]).forEach(y=>y(u))},{flush:"post"}),()=>{const u=o.value,l=e.name,f=a.value,d=f&&f.components[l];if(!d)return Ga(n.default,{Component:d,route:u});const h=f.props[l],m=h?h===!0?u.params:typeof h=="function"?h(u):h:null,b=$e(d,le({},m,t,{onVnodeUnmounted:E=>{E.component.isUnmounted&&(f.instances[l]=null)},ref:c}));return Ga(n.default,{Component:b,route:u})||b}}});function Ga(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const Ru=Ty;function Sy(e){const t=hy(e.routes,e),n=e.parseQuery||yy,r=e.stringifyQuery||za,o=e.history,s=In(),i=In(),a=In(),c=$t(tt);let u=tt;ln&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const l=No.bind(null,k=>""+k),f=No.bind(null,Dg),d=No.bind(null,or);function h(k,z){let F,W;return Tu(k)?(F=t.getRecordMatcher(k),W=z):W=k,t.addRoute(W,F)}function m(k){const z=t.getRecordMatcher(k);z&&t.removeRoute(z)}function y(){return t.getRoutes().map(k=>k.record)}function b(k){return!!t.getRecordMatcher(k)}function E(k,z){if(z=le({},z||c.value),typeof k=="string"){const _=Ho(n,k,z.path),T=t.resolve({path:_.path},z),R=o.createHref(_.fullPath);return le(_,T,{params:d(T.params),hash:or(_.hash),redirectedFrom:void 0,href:R})}let F;if(k.path!=null)F=le({},k,{path:Ho(n,k.path,z.path).path});else{const _=le({},k.params);for(const T in _)_[T]==null&&delete _[T];F=le({},k,{params:f(_)}),z.params=f(z.params)}const W=t.resolve(F,z),ce=k.hash||"";W.params=l(d(W.params));const ge=Vg(r,le({},k,{hash:Ng(ce),path:W.path})),g=o.createHref(ge);return le({fullPath:ge,hash:ce,query:r===za?_y(k.query):k.query||{}},W,{redirectedFrom:void 0,href:g})}function v(k){return typeof k=="string"?Ho(n,k,c.value.path):le({},k)}function p(k,z){if(u!==k)return En(8,{from:z,to:k})}function w(k){return A(k)}function P(k){return w(le(v(k),{replace:!0}))}function C(k){const z=k.matched[k.matched.length-1];if(z&&z.redirect){const{redirect:F}=z;let W=typeof F=="function"?F(k):F;return typeof W=="string"&&(W=W.includes("?")||W.includes("#")?W=v(W):{path:W},W.params={}),le({query:k.query,hash:k.hash,params:W.path!=null?{}:k.params},W)}}function A(k,z){const F=u=E(k),W=c.value,ce=k.state,ge=k.force,g=k.replace===!0,_=C(F);if(_)return A(le(v(_),{state:typeof _=="object"?le({},ce,_.state):ce,force:ge,replace:g}),z||F);const T=F;T.redirectedFrom=z;let R;return!ge&&zg(r,W,F)&&(R=En(16,{to:T,from:W}),it(W,W,!0,!1)),(R?Promise.resolve(R):O(T,W)).catch(S=>ht(S)?ht(S,2)?S:bt(S):q(S,T,W)).then(S=>{if(S){if(ht(S,2))return A(le({replace:g},v(S.to),{state:typeof S.to=="object"?le({},ce,S.to.state):ce,force:ge}),z||T)}else S=M(T,W,!0,g,ce);return Y(T,W,S),S})}function x(k,z){const F=p(k,z);return F?Promise.reject(F):Promise.resolve()}function D(k){const z=an.values().next().value;return z&&typeof z.runWithContext=="function"?z.runWithContext(k):k()}function O(k,z){let F;const[W,ce,ge]=ky(k,z);F=jo(W.reverse(),"beforeRouteLeave",k,z);for(const _ of W)_.leaveGuards.forEach(T=>{F.push(xt(T,k,z))});const g=x.bind(null,k,z);return F.push(g),Le(F).then(()=>{F=[];for(const _ of s.list())F.push(xt(_,k,z));return F.push(g),Le(F)}).then(()=>{F=jo(ce,"beforeRouteUpdate",k,z);for(const _ of ce)_.updateGuards.forEach(T=>{F.push(xt(T,k,z))});return F.push(g),Le(F)}).then(()=>{F=[];for(const _ of ge)if(_.beforeEnter)if(ot(_.beforeEnter))for(const T of _.beforeEnter)F.push(xt(T,k,z));else F.push(xt(_.beforeEnter,k,z));return F.push(g),Le(F)}).then(()=>(k.matched.forEach(_=>_.enterCallbacks={}),F=jo(ge,"beforeRouteEnter",k,z,D),F.push(g),Le(F))).then(()=>{F=[];for(const _ of i.list())F.push(xt(_,k,z));return F.push(g),Le(F)}).catch(_=>ht(_,8)?_:Promise.reject(_))}function Y(k,z,F){a.list().forEach(W=>D(()=>W(k,z,F)))}function M(k,z,F,W,ce){const ge=p(k,z);if(ge)return ge;const g=z===tt,_=ln?history.state:{};F&&(W||g?o.replace(k.fullPath,le({scroll:g&&_&&_.scroll},ce)):o.push(k.fullPath,ce)),c.value=k,it(k,z,F,g),bt()}let X;function de(){X||(X=o.listen((k,z,F)=>{if(!gr.listening)return;const W=E(k),ce=C(W);if(ce){A(le(ce,{replace:!0}),W).catch(Kn);return}u=W;const ge=c.value;ln&&Xg(Ma(ge.fullPath,F.delta),yo()),O(W,ge).catch(g=>ht(g,12)?g:ht(g,2)?(A(g.to,W).then(_=>{ht(_,20)&&!F.delta&&F.type===sr.pop&&o.go(-1,!1)}).catch(Kn),Promise.reject()):(F.delta&&o.go(-F.delta,!1),q(g,W,ge))).then(g=>{g=g||M(W,ge,!1),g&&(F.delta&&!ht(g,8)?o.go(-F.delta,!1):F.type===sr.pop&&ht(g,20)&&o.go(-1,!1)),Y(W,ge,g)}).catch(Kn)}))}let he=In(),K=In(),te;function q(k,z,F){bt(k);const W=K.list();return W.length?W.forEach(ce=>ce(k,z,F)):console.error(k),Promise.reject(k)}function Ze(){return te&&c.value!==tt?Promise.resolve():new Promise((k,z)=>{he.add([k,z])})}function bt(k){return te||(te=!k,de(),he.list().forEach(([z,F])=>k?F(k):z()),he.reset()),k}function it(k,z,F,W){const{scrollBehavior:ce}=e;if(!ln||!ce)return Promise.resolve();const ge=!F&&Yg(Ma(k.fullPath,0))||(W||!F)&&history.state&&history.state.scroll||null;return Bt().then(()=>ce(k,z,ge)).then(g=>g&&Jg(g)).catch(g=>q(g,k,z))}const De=k=>o.go(k);let sn;const an=new Set,gr={currentRoute:c,listening:!0,addRoute:h,removeRoute:m,hasRoute:b,getRoutes:y,resolve:E,options:e,push:w,replace:P,go:De,back:()=>De(-1),forward:()=>De(1),beforeEach:s.add,beforeResolve:i.add,afterEach:a.add,onError:K.add,isReady:Ze,install(k){const z=this;k.component("RouterLink",Ey),k.component("RouterView",Ru),k.config.globalProperties.$router=z,Object.defineProperty(k.config.globalProperties,"$route",{enumerable:!0,get:()=>H(c)}),ln&&!sn&&c.value===tt&&(sn=!0,w(o.location).catch(ce=>{}));const F={};for(const ce in tt)Object.defineProperty(F,ce,{get:()=>c.value[ce],enumerable:!0});k.provide(hi,z),k.provide(pi,Ot(F)),k.provide(vs,c);const W=k.unmount;an.add(k),k.unmount=function(){an.delete(k),an.size<1&&(u=tt,X&&X(),X=null,c.value=tt,sn=!1,te=!1),W()}}};function Le(k){return k.reduce((z,F)=>z.then(()=>D(F)),Promise.resolve())}return gr}function ky(e,t){const n=[],r=[],o=[],s=Math.max(t.matched.length,e.matched.length);for(let i=0;iwn(u,a))?r.push(a):n.push(a));const c=e.matched[i];c&&(t.matched.find(u=>wn(u,c))||o.push(c))}return[n,r,o]}function vE(){return Oe(pi)}const Ry=(e,t)=>t.path.replace(/(:\w+)\([^)]+\)/g,"$1").replace(/(:\w+)[?+*]/g,"$1").replace(/:\w+/g,n=>{var r;return((r=e.params[n.slice(1)])==null?void 0:r.toString())||""}),bs=(e,t)=>{const n=e.route.matched.find(o=>{var s;return((s=o.components)==null?void 0:s.default)===e.Component.type}),r=t??(n==null?void 0:n.meta.key)??(n&&Ry(e.route,n));return typeof r=="function"?r(e.route):r},Ay=(e,t)=>({default:()=>e?$e(Id,e===!0?{}:e,t):t});function mi(e){return Array.isArray(e)?e:[e]}const Qa=[{name:"slug",path:"/:slug(.*)*",meta:{},alias:[],redirect:void 0,component:()=>L(()=>import("./document-driven.IEHCyUsA.js"),__vite__mapDeps([0,1,2,3,4,5]),import.meta.url).then(e=>e.default||e)}],xy=(e,t,n)=>(t=t===!0?{}:t,{default:()=>{var r;return t?$e(e,t,n):(r=n.default)==null?void 0:r.call(n)}});function Ja(e){const t=(e==null?void 0:e.meta.key)??e.path.replace(/(:\w+)\([^)]+\)/g,"$1").replace(/(:\w+)[?+*]/g,"$1").replace(/:\w+/g,n=>{var r;return((r=e.params[n.slice(1)])==null?void 0:r.toString())||""});return typeof t=="function"?t(e):t}function Ly(e,t){return e===t||t===tt?!1:Ja(e)!==Ja(t)?!0:!e.matched.every((r,o)=>{var s,i;return r.components&&r.components.default===((i=(s=t.matched[o])==null?void 0:s.components)==null?void 0:i.default)})}const Iy={scrollBehavior(e,t,n){var u;const r=fe(),o=((u=st().options)==null?void 0:u.scrollBehaviorType)??"auto";let s=n||void 0;const i=typeof e.meta.scrollToTop=="function"?e.meta.scrollToTop(e,t):e.meta.scrollToTop;if(!s&&t&&e&&i!==!1&&Ly(e,t)&&(s={left:0,top:0}),e.path===t.path){if(t.hash&&!e.hash)return{left:0,top:0};if(e.hash)return{el:e.hash,top:Xa(e.hash),behavior:o}}const a=l=>!!(l.meta.pageTransition??gs),c=a(t)&&a(e)?"page:transition:finish":"page:finish";return new Promise(l=>{r.hooks.hookOnce(c,async()=>{await Bt(),e.hash&&(s={el:e.hash,top:Xa(e.hash),behavior:o}),l(s)})})}};function Xa(e){try{const t=document.querySelector(e);if(t)return parseFloat(getComputedStyle(t).scrollMarginTop)}catch{}return 0}const Oy={hashMode:!1,scrollBehaviorType:"auto"},Be={...Oy,...Iy},$y=async e=>{var c;let t,n;if(!((c=e.meta)!=null&&c.validate))return;const r=fe(),o=st();if(([t,n]=rr(()=>Promise.resolve(e.meta.validate(e))),t=await t,n(),t)===!0)return;const i=fi({statusCode:404,statusMessage:`Page Not Found: ${e.fullPath}`,data:{path:e.fullPath}}),a=o.beforeResolve(u=>{if(a(),u===e){const l=o.afterEach(async()=>{l(),await r.runWithContext(()=>fn(i)),window.history.pushState({},"",e.fullPath)});return!1}})},My=async e=>{let t,n;const r=([t,n]=rr(()=>pu(e.path)),t=await t,n(),t);if(r.redirect)return r.redirect},Ny=[$y,My],qn={};function Hy(e,t,n){const{pathname:r,search:o,hash:s}=t,i=e.indexOf("#");if(i>-1){const u=s.includes(e.slice(i))?e.slice(i).length:1;let l=s.slice(u);return l[0]!=="/"&&(l="/"+l),ya(l,"")}const a=ya(r,e),c=!n||dp(a,n,{trailingSlash:!0})?a:n;return c+(c.includes("?")?"":o)+s}const jy=We({name:"nuxt:router",enforce:"pre",async setup(e){var y,b;let t,n,r=je().app.baseURL;Be.hashMode&&!r.includes("#")&&(r+="#");const o=((y=Be.history)==null?void 0:y.call(Be,r))??(Be.hashMode?ny(r):Pu(r)),s=((b=Be.routes)==null?void 0:b.call(Be,Qa))??Qa;let i;const a=Hy(r,window.location,e.payload.path),c=Sy({...Be,scrollBehavior:(E,v,p)=>{var w;if(v===tt){i=p;return}return c.options.scrollBehavior=Be.scrollBehavior,(w=Be.scrollBehavior)==null?void 0:w.call(Be,E,tt,i||p)},history:o,routes:s});e.vueApp.use(c);const u=$t(c.currentRoute.value);c.afterEach((E,v)=>{u.value=v}),Object.defineProperty(e.vueApp.config.globalProperties,"previousRoute",{get:()=>u.value});const l=$t(c.resolve(a)),f=()=>{l.value=c.currentRoute.value};e.hook("page:finish",f),c.afterEach((E,v)=>{var p,w,P,C;((w=(p=E.matched[0])==null?void 0:p.components)==null?void 0:w.default)===((C=(P=v.matched[0])==null?void 0:P.components)==null?void 0:C.default)&&f()});const d={};for(const E in l.value)Object.defineProperty(d,E,{get:()=>l.value[E]});e._route=Ot(d),e._middleware=e._middleware||{global:[],named:{}};const h=mo();try{[t,n]=rr(()=>c.isReady()),await t,n()}catch(E){[t,n]=rr(()=>e.runWithContext(()=>fn(E))),await t,n()}const m=e.payload.state._layout;return c.beforeEach(async(E,v)=>{var p;await e.callHook("page:loading:start"),E.meta=rt(E.meta),e.isHydrating&&m&&!Zt(E.meta.layout)&&(E.meta.layout=m),e._processingMiddleware=!0;{const w=new Set([...Ny,...e._middleware.global]);for(const P of E.matched){const C=P.meta.middleware;if(C)for(const A of mi(C))w.add(A)}for(const P of w){const C=typeof P=="string"?e._middleware.named[P]||await((p=qn[P])==null?void 0:p.call(qn).then(x=>x.default||x)):P;if(!C)throw new Error(`Unknown route middleware: '${P}'.`);const A=await e.runWithContext(()=>C(E,v));if(!e.payload.serverRendered&&e.isHydrating&&(A===!1||A instanceof Error)){const x=A||ps({statusCode:404,statusMessage:`Page Not Found: ${a}`});return await e.runWithContext(()=>fn(x)),!1}if(A!==!0&&(A||A===!1))return A}}}),c.onError(async()=>{delete e._processingMiddleware,await e.callHook("page:loading:end")}),c.afterEach(async(E,v,p)=>{delete e._processingMiddleware,!e.isHydrating&&h.value&&await e.runWithContext(sg),p&&await e.callHook("page:loading:end"),E.matched.length===0&&await e.runWithContext(()=>fn(ps({statusCode:404,fatal:!1,statusMessage:`Page not found: ${E.fullPath}`,data:{path:E.fullPath}})))}),e.hooks.hookOnce("app:created",async()=>{try{await c.replace({...c.resolve(a),name:void 0,force:!0}),c.options.scrollBehavior=Be.scrollBehavior}catch(E){await e.runWithContext(()=>fn(E))}}),{provide:{router:c}}}}),ws=globalThis.requestIdleCallback||(e=>{const t=Date.now(),n={didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))};return setTimeout(()=>{e(n)},1)}),Dy=globalThis.cancelIdleCallback||(e=>{clearTimeout(e)}),gi=e=>{const t=fe();t.isHydrating?t.hooks.hookOnce("app:suspense:resolve",()=>{ws(e)}):ws(e)},By=We({name:"nuxt:payload",setup(e){st().beforeResolve(async(t,n)=>{if(t.path===n.path)return;const r=await xa(t.path);r&&Object.assign(e.static.data,r.data)}),gi(()=>{var t;e.hooks.hook("link:prefetch",async n=>{pr(n).protocol||await xa(n)}),((t=navigator.connection)==null?void 0:t.effectiveType)!=="slow-2g"&&setTimeout(go,1e3)})}}),Fy=We(e=>{let t;async function n(){const r=await go();t&&clearTimeout(t),t=setTimeout(n,1e3*60*60);const o=await $fetch(ci("builds/latest.json"));o.id!==r.id&&e.hooks.callHook("app:manifest:update",o)}gi(()=>{t=setTimeout(n,1e3*60*60)})}),Vy=$(()=>L(()=>import("./ArticlesList.w4ljBGN9.js"),__vite__mapDeps([6,7,8,9,10,11,12,13,14,15]),import.meta.url).then(e=>e.default)),zy=$(()=>L(()=>import("./ArticlesListItem.5fodA8Bq.js"),__vite__mapDeps([7,8,9]),import.meta.url).then(e=>e.default)),Uy=$(()=>L(()=>import("./ContactForm.tEhGLfwL.js"),__vite__mapDeps([16,17,18,19,20,21]),import.meta.url).then(e=>e.default)),Ky=$(()=>L(()=>import("./Gallery.7RmfIhLJ.js"),__vite__mapDeps([22,23]),import.meta.url).then(e=>e.default)),Wy=$(()=>L(()=>import("./Hero.1FX06ln7.js"),__vite__mapDeps([24,25,26,27]),import.meta.url).then(e=>e.default)),qy=$(()=>L(()=>import("./Input.O4Qi4YDL.js"),__vite__mapDeps([17,18]),import.meta.url).then(e=>e.default)),Gy=$(()=>L(()=>Promise.resolve().then(()=>tE),void 0,import.meta.url).then(e=>e.default)),Qy=$(()=>L(()=>Promise.resolve().then(()=>Rb),void 0,import.meta.url).then(e=>e.default)),Jy=$(()=>L(()=>Promise.resolve().then(()=>iE),void 0,import.meta.url).then(e=>e.default)),Xy=$(()=>L(()=>Promise.resolve().then(()=>ub),void 0,import.meta.url).then(e=>e.default)),Yy=$(()=>L(()=>import("./Button.g123B8Zx.js"),__vite__mapDeps([19,20]),import.meta.url).then(e=>e.default)),Zy=$(()=>L(()=>Promise.resolve().then(()=>Gw),void 0,import.meta.url).then(e=>e.default)),e_=$(()=>L(()=>import("./DocumentDrivenNotFound.eFsPKjvl.js"),__vite__mapDeps([4,5]),import.meta.url).then(e=>e.default)),t_=$(()=>L(()=>Promise.resolve().then(()=>vb),void 0,import.meta.url).then(e=>e.default)),n_=$(()=>L(()=>Promise.resolve().then(()=>jw),void 0,import.meta.url).then(e=>e.default)),r_=$(()=>L(()=>import("./ProseA.uZkReT9p.js"),__vite__mapDeps([10,11]),import.meta.url).then(e=>e.default)),o_=$(()=>L(()=>import("./ProseBlockquote.bFQ9hQBn.js"),__vite__mapDeps([28,29]),import.meta.url).then(e=>e.default)),s_=$(()=>L(()=>import("./ProseCode.IEFN8-CC.js"),__vite__mapDeps([30,31]),import.meta.url).then(e=>e.default)),i_=$(()=>L(()=>import("./ProseCodeInline.QqXTIiNZ.js"),__vite__mapDeps([12,13]),import.meta.url).then(e=>e.default)),a_=$(()=>L(()=>import("./ProseEm.Wxx6HHfF.js"),__vite__mapDeps([32,33]),import.meta.url).then(e=>e.default)),c_=$(()=>L(()=>import("./ProseH1.q-s6ntTg.js"),__vite__mapDeps([34,35]),import.meta.url).then(e=>e.default)),l_=$(()=>L(()=>import("./ProseH2.-Dj0TlzF.js"),__vite__mapDeps([36,37]),import.meta.url).then(e=>e.default)),u_=$(()=>L(()=>import("./ProseH3.wnSRy-7f.js"),__vite__mapDeps([38,39]),import.meta.url).then(e=>e.default)),f_=$(()=>L(()=>import("./ProseH4.gpl85eLQ.js"),__vite__mapDeps([40,41]),import.meta.url).then(e=>e.default)),d_=$(()=>L(()=>import("./ProseH5.AlWveEHe.js"),__vite__mapDeps([42,43]),import.meta.url).then(e=>e.default)),h_=$(()=>L(()=>import("./ProseH6.-bYyeRxA.js"),__vite__mapDeps([44,45]),import.meta.url).then(e=>e.default)),p_=$(()=>L(()=>import("./ProseHr.K5Vj6GYP.js"),__vite__mapDeps([46,47]),import.meta.url).then(e=>e.default)),m_=$(()=>L(()=>import("./ProseImg.I0RBlcUV.js"),__vite__mapDeps([48,49]),import.meta.url).then(e=>e.default)),g_=$(()=>L(()=>import("./ProseLi.OMtdwuSm.js"),__vite__mapDeps([50,51]),import.meta.url).then(e=>e.default)),y_=$(()=>L(()=>import("./ProseOl.1anPfVba.js"),__vite__mapDeps([52,53]),import.meta.url).then(e=>e.default)),__=$(()=>L(()=>import("./ProseP.cLR3X3GK.js"),__vite__mapDeps([54,55]),import.meta.url).then(e=>e.default)),v_=$(()=>L(()=>import("./ProseStrong.WA8kRZ0C.js"),__vite__mapDeps([56,57]),import.meta.url).then(e=>e.default)),b_=$(()=>L(()=>import("./ProseTable.yEu4BAQd.js"),__vite__mapDeps([58,59]),import.meta.url).then(e=>e.default)),w_=$(()=>L(()=>import("./ProseTbody.BrO4vgr2.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default)),E_=$(()=>L(()=>import("./ProseTd.Ex0GYgEm.js"),__vite__mapDeps([60,61]),import.meta.url).then(e=>e.default)),C_=$(()=>L(()=>import("./ProseTh.erSO7NHs.js"),__vite__mapDeps([62,63]),import.meta.url).then(e=>e.default)),P_=$(()=>L(()=>import("./ProseThead.lvISFRJw.js"),__vite__mapDeps([64,65]),import.meta.url).then(e=>e.default)),T_=$(()=>L(()=>import("./ProseTr.ltHBB1I0.js"),__vite__mapDeps([66,67]),import.meta.url).then(e=>e.default)),S_=$(()=>L(()=>import("./ProseUl.p-UuMORz.js"),__vite__mapDeps([68,69]),import.meta.url).then(e=>e.default)),k_=$(()=>L(()=>import("./Alert.GtxI_vOc.js"),__vite__mapDeps([70,25,26,71]),import.meta.url).then(e=>e.default)),R_=$(()=>L(()=>import("./Badge.HXxWjNZ1.js"),__vite__mapDeps([72,25,26,73]),import.meta.url).then(e=>e.default)),A_=$(()=>L(()=>import("./ButtonLink.ksLlCBiP.js"),__vite__mapDeps([74,25,26,75]),import.meta.url).then(e=>e.default)),x_=$(()=>L(()=>import("./Callout.E91Cy_Al.js"),__vite__mapDeps([76,25,26,77]),import.meta.url).then(e=>e.default)),L_=$(()=>L(()=>import("./CodeBlock.y2QqWgp5.js"),__vite__mapDeps([78,79]),import.meta.url).then(e=>e.default)),I_=$(()=>L(()=>import("./CodeGroup.0d6j5SRS.js"),__vite__mapDeps([80,81,82,83]),import.meta.url).then(e=>e.default)),O_=$(()=>L(()=>Promise.resolve().then(()=>rE),void 0,import.meta.url).then(e=>e.default)),$_=$(()=>L(()=>import("./CopyButton.hri7U-us.js"),__vite__mapDeps([84,85]),import.meta.url).then(e=>e.default)),M_=$(()=>L(()=>import("./Ellipsis.zer7EKhg.js"),__vite__mapDeps([86,87]),import.meta.url).then(e=>e.default)),N_=$(()=>L(()=>import("./List.GfZlsH2t.js"),__vite__mapDeps([88,25,89]),import.meta.url).then(e=>e.default)),H_=$(()=>L(()=>import("./NuxtImg.xoobjzhr.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default)),j_=$(()=>L(()=>import("./Props.vLDDOLog.js"),__vite__mapDeps([90,62,63,66,67,64,65,12,13,60,61,91,58,59,14]),import.meta.url).then(e=>e.default)),D_=$(()=>L(()=>import("./Sandbox.PDD7OVAs.js"),__vite__mapDeps([92,81,82,93]),import.meta.url).then(e=>e.default)),B_=$(()=>L(()=>import("./SourceLink.jsCTPIA_.js"),__vite__mapDeps([94,54,55]),import.meta.url).then(e=>e.default)),F_=$(()=>L(()=>import("./TabsHeader.9cm5rUp8.js"),__vite__mapDeps([81,82]),import.meta.url).then(e=>e.default)),V_=$(()=>L(()=>import("./Terminal.VDcXMABj.js"),__vite__mapDeps([95,85,96]),import.meta.url).then(e=>e.default)),z_=$(()=>L(()=>import("./VideoPlayer.tYPt4bfC.js"),__vite__mapDeps([97,98]),import.meta.url).then(e=>e.default)),U_=$(()=>L(()=>import("./IconCodeSandBox.mIv1FjHI.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default)),K_=$(()=>L(()=>import("./IconDocus.TBTy9yMN.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default)),W_=$(()=>L(()=>import("./IconNuxt.BcQwOinP.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default)),q_=$(()=>L(()=>import("./IconNuxtContent.BcQwOinP.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default)),G_=$(()=>L(()=>import("./IconNuxtLabs.51HX9YFE.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default)),Q_=$(()=>L(()=>import("./IconNuxtStudio.ntIa3tVN.js"),__vite__mapDeps([99,100]),import.meta.url).then(e=>e.default)),J_=$(()=>L(()=>import("./IconStackBlitz.H_JzqyZe.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default)),X_=$(()=>L(()=>import("./IconVueTelescope.aviRrbuY.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default)),Y_=$(()=>L(()=>import("./BlockHero.veNOJ5nY.js"),__vite__mapDeps([101,25,74,26,75,95,85,96,97,98,102]),import.meta.url).then(e=>e.default)),Z_=$(()=>L(()=>import("./Card.i3uihuxy.js"),__vite__mapDeps([103,25,26,104]),import.meta.url).then(e=>e.default)),ev=$(()=>L(()=>import("./CardGrid.F9TrR3nz.js"),__vite__mapDeps([105,25,26,106]),import.meta.url).then(e=>e.default)),tv=$(()=>L(()=>import("./VoltaBoard.yxPmtuT-.js"),__vite__mapDeps([107,108]),import.meta.url).then(e=>e.default)),nv=$(()=>L(()=>import("./ComponentPlayground.3LfJEpxm.js"),__vite__mapDeps([109,14,86,87,110,81,82,111,40,41,12,13,72,25,26,73,54,55,85,112,113,114,115,116]),import.meta.url).then(e=>e.default)),rv=$(()=>L(()=>import("./ComponentPlaygroundData.RrSZJEaQ.js"),__vite__mapDeps([110,81,82,111,40,41,12,13,72,25,26,73,54,55,85,112,113,114,115]),import.meta.url).then(e=>e.default)),ov=$(()=>L(()=>import("./ComponentPlaygroundProps.7V5osBTn.js"),__vite__mapDeps([111,40,41,12,13,72,25,26,73,54,55,85,112]),import.meta.url).then(e=>e.default)),sv=$(()=>L(()=>import("./ComponentPlaygroundSlots.DK5SwSE6.js"),__vite__mapDeps([117,113]),import.meta.url).then(e=>e.default)),iv=$(()=>L(()=>import("./ComponentPlaygroundTokens.JGKSc7jH.js"),__vite__mapDeps([118,114]),import.meta.url).then(e=>e.default)),av=$(()=>L(()=>import("./PreviewLayout.LEhGpK7q.js"),__vite__mapDeps([119,120]),import.meta.url).then(e=>e.default)),cv=$(()=>L(()=>import("./TokensPlayground.mjyG4EuF.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default)),lv=$(()=>L(()=>import("./ContentDoc.qrlkab9E.js"),__vite__mapDeps([121,2,3,122,14]),import.meta.url).then(e=>e.default)),uv=$(()=>L(()=>import("./ContentList.UnpkXccW.js"),__vite__mapDeps([123,122,14]),import.meta.url).then(e=>e.default)),fv=$(()=>L(()=>import("./ContentNavigation.wyUnHXUa.js"),__vite__mapDeps([124,14]),import.meta.url).then(e=>e.default)),dv=$(()=>L(()=>import("./ContentQuery.7Sw12qte.js"),__vite__mapDeps([122,14]),import.meta.url).then(e=>e.default)),hv=$(()=>L(()=>import("./ContentRenderer.Nxv-BsjZ.js"),__vite__mapDeps([2,3]),import.meta.url).then(e=>e.default)),pv=$(()=>L(()=>import("./ContentRendererMarkdown.ht7j1CGW.js"),__vite__mapDeps([125,3]),import.meta.url).then(e=>e.default)),mv=$(()=>L(()=>import("./ContentSlot.frkPNmKi.js"),__vite__mapDeps([126,25]),import.meta.url).then(e=>e.default)),gv=$(()=>L(()=>import("./DocumentDrivenEmpty.yLQDgpAl.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default)),yv=$(()=>L(()=>import("./Markdown.LJw0RYDX.js"),__vite__mapDeps([127,126,25]),import.meta.url).then(e=>e.default)),_v=$(()=>L(()=>import("./ProsePre.qvj6veFU.js"),__vite__mapDeps([128,30,31,129]),import.meta.url).then(e=>e.default)),vv=$(()=>L(()=>import("./ProseScript.-a01z7pT.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default)),bv=$(()=>L(()=>Promise.resolve().then(()=>Nw),void 0,import.meta.url).then(e=>e.default)),wv=$(()=>L(()=>import("./IconCSS.Qy8jnwOg.js"),__vite__mapDeps([130,131]),import.meta.url).then(e=>e.default)),Ev=[["ArticlesList",Vy],["ArticlesListItem",zy],["ContactForm",Uy],["Gallery",Ky],["Hero",Wy],["Input",qy],["AppFooter",Gy],["AppHeader",Qy],["AppLayout",Jy],["AppLoadingBar",Xy],["Button",Yy],["ColorModeSwitch",Zy],["DocumentDrivenNotFound",e_],["MainNav",t_],["SocialIcons",n_],["ProseA",r_],["ProseBlockquote",o_],["ProseCode",s_],["ProseCodeInline",i_],["ProseEm",a_],["ProseH1",c_],["ProseH2",l_],["ProseH3",u_],["ProseH4",f_],["ProseH5",d_],["ProseH6",h_],["ProseHr",p_],["ProseImg",m_],["ProseLi",g_],["ProseOl",y_],["ProseP",__],["ProseStrong",v_],["ProseTable",b_],["ProseTbody",w_],["ProseTd",E_],["ProseTh",C_],["ProseThead",P_],["ProseTr",T_],["ProseUl",S_],["Alert",k_],["Badge",R_],["ButtonLink",A_],["Callout",x_],["CodeBlock",L_],["CodeGroup",I_],["Container",O_],["CopyButton",$_],["Ellipsis",M_],["List",N_],["NuxtImg",H_],["Props",j_],["Sandbox",D_],["SourceLink",B_],["TabsHeader",F_],["Terminal",V_],["VideoPlayer",z_],["IconCodeSandBox",U_],["IconDocus",K_],["IconNuxt",W_],["IconNuxtContent",q_],["IconNuxtLabs",G_],["IconNuxtStudio",Q_],["IconStackBlitz",J_],["IconVueTelescope",X_],["BlockHero",Y_],["Card",Z_],["CardGrid",ev],["VoltaBoard",tv],["ComponentPlayground",nv],["ComponentPlaygroundData",rv],["ComponentPlaygroundProps",ov],["ComponentPlaygroundSlots",sv],["ComponentPlaygroundTokens",iv],["PreviewLayout",av],["TokensPlayground",cv],["ContentDoc",lv],["ContentList",uv],["ContentNavigation",fv],["ContentQuery",dv],["ContentRenderer",hv],["ContentRendererMarkdown",pv],["MDCSlot",mv],["DocumentDrivenEmpty",gv],["Markdown",yv],["ProsePre",_v],["ProseScript",vv],["Icon",bv],["IconCSS",wv]],Cv=We({name:"nuxt:global-components",setup(e){for(const[t,n]of Ev)e.vueApp.component(t,n),e.vueApp.component("Lazy"+t,n)}}),Nn={article:()=>L(()=>import("./article.5OuagtG6.js"),__vite__mapDeps([132,10,11,8,133]),import.meta.url).then(e=>e.default||e),default:()=>L(()=>import("./default.jXLbP3QL.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default||e),page:()=>L(()=>import("./page.cW29poUU.js"),__vite__mapDeps([]),import.meta.url).then(e=>e.default||e)},Pv=We({name:"nuxt:prefetch",setup(e){const t=st();e.hooks.hook("app:mounted",()=>{t.beforeEach(async n=>{var o;const r=(o=n==null?void 0:n.meta)==null?void 0:o.layout;r&&typeof Nn[r]=="function"&&await Nn[r]()})}),e.hooks.hook("link:prefetch",n=>{if(_t(n))return;const r=t.resolve(n);if(!r)return;const o=r.meta.layout;let s=mi(r.meta.middleware);s=s.filter(i=>typeof i=="string");for(const i of s)typeof qn[i]=="function"&&qn[i]();o&&typeof Nn[o]=="function"&&Nn[o]()})}});function Tv(e){return Array.isArray(e)?e:[e]}const Sv=async e=>{const t=fe();e=Tv(e),await Promise.all(e.map(n=>Rv(t.vueApp._context.components[n])))},kv=e=>Sv(e);function Rv(e){if(e!=null&&e.__asyncLoader&&!e.__asyncResolved)return e.__asyncLoader()}async function Au(e,t=st()){const{path:n,matched:r}=t.resolve(e);if(!r.length||(t._routePreloaded||(t._routePreloaded=new Set),t._routePreloaded.has(n)))return;const o=t._preloadPromises=t._preloadPromises||[];if(o.length>4)return Promise.all(o).then(()=>Au(e,t));t._routePreloaded.add(n);const s=r.map(i=>{var a;return(a=i.components)==null?void 0:a.default}).filter(i=>typeof i=="function");for(const i of s){const a=Promise.resolve(i()).catch(()=>{}).finally(()=>o.splice(o.indexOf(a)));o.push(a)}await Promise.all(o)}const Av=["ArticlesList","ArticlesListItem","ContactForm","Gallery","Hero","Input","AppFooter","AppHeader","AppLayout","AppLoadingBar","Button","ColorModeSwitch","DocumentDrivenNotFound","MainNav","SocialIcons","ProseA","ProseBlockquote","ProseCode","ProseCodeInline","ProseEm","ProseH1","ProseH2","ProseH3","ProseH4","ProseH5","ProseH6","ProseHr","ProseImg","ProseLi","ProseOl","ProseP","ProseStrong","ProseTable","ProseTbody","ProseTd","ProseTh","ProseThead","ProseTr","ProseUl","ProseCodeCopyButton","Alert","Badge","ButtonLink","Callout","CodeBlock","CodeGroup","Container","CopyButton","Ellipsis","List","NuxtImg","Props","Sandbox","SourceLink","TabsHeader","Terminal","VideoPlayer","IconCodeSandBox","IconDocus","IconNuxt","IconNuxtContent","IconNuxtLabs","IconNuxtStudio","IconStackBlitz","IconVueTelescope","BlockHero","Card","CardGrid","VoltaBoard","ComponentPlayground","ComponentPlaygroundData","ComponentPlaygroundProps","ComponentPlaygroundSlots","ComponentPlaygroundTokens","PreviewLayout","TokensPlayground","ContentPreviewMode","ContentDoc","ContentList","ContentNavigation","ContentQuery","ContentRenderer","ContentRendererMarkdown","MDCSlot","DocumentDrivenEmpty","Markdown","ProsePre","ProseScript","NuxtWelcome","NuxtLayout","NuxtErrorBoundary","ClientOnly","DevOnly","ServerPlaceholder","NuxtLink","NuxtLoadingIndicator","NuxtPicture","ColorScheme","MDC","MDCRenderer","MDCSlot","Icon","IconCSS","NuxtPage","NoScript","Link","Base","Title","Meta","Style","Head","Html","Body"],xv=/\d/,Lv=["-","_","/","."];function Iv(e=""){if(!xv.test(e))return e!==e.toLowerCase()}function xu(e,t){const n=t??Lv,r=[];if(!e||typeof e!="string")return r;let o="",s,i;for(const a of e){const c=n.includes(a);if(c===!0){r.push(o),o="",s=void 0;continue}const u=Iv(a);if(i===!1){if(s===!1&&u===!0){r.push(o),o=a,s=u;continue}if(s===!0&&u===!1&&o.length>1){const l=o.at(-1);r.push(o.slice(0,Math.max(0,o.length-1))),o=l+a,s=u;continue}}o+=a,s=u,i=c}return r.push(o),r}function Ov(e){return e?e[0].toUpperCase()+e.slice(1):""}function $v(e,t){return e?(Array.isArray(e)?e:xu(e)).map(n=>Ov(t!=null&&t.normalize?n.toLowerCase():n)).join(""):""}function Es(e,t){return e?(Array.isArray(e)?e:xu(e)).map(n=>n.toLowerCase()).join(t??"-"):""}const Mv="$s";function Lt(...e){const t=typeof e[e.length-1]=="string"?e.pop():void 0;typeof e[0]!="string"&&e.unshift(t);const[n,r]=e;if(!n||typeof n!="string")throw new TypeError("[nuxt] [useState] key must be a string: "+n);if(r!==void 0&&typeof r!="function")throw new Error("[nuxt] [useState] init must be a function: "+r);const o=Mv+n,s=fe(),i=Zc(s.payload.state,o);if(i.value===void 0&&r){const a=r();if(Ae(a))return s.payload.state[o]=a,a;i.value=a}return i}const un=()=>{const e=Lt("dd-pages",()=>$t(Ot({}))),t=Lt("dd-surrounds",()=>$t(Ot({}))),n=Lt("dd-navigation"),r=Lt("dd-globals",()=>$t(Ot({})));return{pages:e,surrounds:t,navigation:n,globals:r}},Nv=()=>{const{navigation:e,pages:t,surrounds:n,globals:r}=un(),o=oe(()=>jt(Dt().path)),s=oe(()=>t.value[o.value]),i=oe(()=>n.value[o.value]),a=oe(()=>{var h,m;return(m=(h=s==null?void 0:s.value)==null?void 0:h.body)==null?void 0:m.toc}),c=oe(()=>{var h;return(h=s.value)==null?void 0:h._type}),u=oe(()=>{var h;return(h=s.value)==null?void 0:h.excerpt}),l=oe(()=>{var h;return(h=s.value)==null?void 0:h.layout}),f=oe(()=>{var h;return(h=i.value)==null?void 0:h[1]}),d=oe(()=>{var h;return(h=i.value)==null?void 0:h[0]});return{globals:r,navigation:e,surround:i,page:s,excerpt:u,toc:a,type:c,layout:l,next:f,prev:d}},Lu=e=>{if(!e.children)return e._path;for(const t of(e==null?void 0:e.children)||[]){const n=Lu(t);if(n)return n}},Iu=(e,t)=>{for(const n of t){if(n._path===e&&!n._id)return n.children;if(n.children){const r=Iu(e,n.children);if(r)return r}}},Ou=(e,t)=>{for(const n of t){if(n._path===e)return n;if(n.children){const r=Ou(e,n.children);if(r)return r}}},Hv=(e,t,n)=>{let r;const o=(s,i)=>{for(const a of i)if(!(s!=="/"&&a._path==="/")){if(s!=null&&s.startsWith(a._path)&&a[t]&&(r=a[t]),a._path===s)return;a.children&&o(s,a.children)}};return o(e,n),r},jv=()=>({navBottomLink:Lu,navDirFromPath:Iu,navPageFromPath:Ou,navKeyFromPath:Hv}),Ya=Object.freeze({ignoreUnknown:!1,respectType:!1,respectFunctionNames:!1,respectFunctionProperties:!1,unorderedObjects:!0,unorderedArrays:!1,unorderedSets:!1,excludeKeys:void 0,excludeValues:void 0,replacer:void 0});function Cs(e,t){t?t={...Ya,...t}:t=Ya;const n=$u(t);return n.dispatch(e),n.toString()}const Dv=Object.freeze(["prototype","__proto__","constructor"]);function $u(e){let t="",n=new Map;const r=o=>{t+=o};return{toString(){return t},getContext(){return n},dispatch(o){return e.replacer&&(o=e.replacer(o)),this[o===null?"null":typeof o](o)},object(o){if(o&&typeof o.toJSON=="function")return this.object(o.toJSON());const s=Object.prototype.toString.call(o);let i="";const a=s.length;a<10?i="unknown:["+s+"]":i=s.slice(8,a-1),i=i.toLowerCase();let c=null;if((c=n.get(o))===void 0)n.set(o,n.size);else return this.dispatch("[CIRCULAR:"+c+"]");if(typeof Buffer<"u"&&Buffer.isBuffer&&Buffer.isBuffer(o))return r("buffer:"),r(o.toString("utf8"));if(i!=="object"&&i!=="function"&&i!=="asyncfunction")this[i]?this[i](o):e.ignoreUnknown||this.unkown(o,i);else{let u=Object.keys(o);e.unorderedObjects&&(u=u.sort());let l=[];e.respectType!==!1&&!Za(o)&&(l=Dv),e.excludeKeys&&(u=u.filter(d=>!e.excludeKeys(d)),l=l.filter(d=>!e.excludeKeys(d))),r("object:"+(u.length+l.length)+":");const f=d=>{this.dispatch(d),r(":"),e.excludeValues||this.dispatch(o[d]),r(",")};for(const d of u)f(d);for(const d of l)f(d)}},array(o,s){if(s=s===void 0?e.unorderedArrays!==!1:s,r("array:"+o.length+":"),!s||o.length<=1){for(const c of o)this.dispatch(c);return}const i=new Map,a=o.map(c=>{const u=$u(e);u.dispatch(c);for(const[l,f]of u.getContext())i.set(l,f);return u.toString()});return n=i,a.sort(),this.array(a,!1)},date(o){return r("date:"+o.toJSON())},symbol(o){return r("symbol:"+o.toString())},unkown(o,s){if(r(s),!!o&&(r(":"),o&&typeof o.entries=="function"))return this.array(Array.from(o.entries()),!0)},error(o){return r("error:"+o.toString())},boolean(o){return r("bool:"+o)},string(o){r("string:"+o.length+":"),r(o)},function(o){r("fn:"),Za(o)?this.dispatch("[native]"):this.dispatch(o.toString()),e.respectFunctionNames!==!1&&this.dispatch("function-name:"+String(o.name)),e.respectFunctionProperties&&this.object(o)},number(o){return r("number:"+o)},xml(o){return r("xml:"+o.toString())},null(){return r("Null")},undefined(){return r("Undefined")},regexp(o){return r("regex:"+o.toString())},uint8array(o){return r("uint8array:"),this.dispatch(Array.prototype.slice.call(o))},uint8clampedarray(o){return r("uint8clampedarray:"),this.dispatch(Array.prototype.slice.call(o))},int8array(o){return r("int8array:"),this.dispatch(Array.prototype.slice.call(o))},uint16array(o){return r("uint16array:"),this.dispatch(Array.prototype.slice.call(o))},int16array(o){return r("int16array:"),this.dispatch(Array.prototype.slice.call(o))},uint32array(o){return r("uint32array:"),this.dispatch(Array.prototype.slice.call(o))},int32array(o){return r("int32array:"),this.dispatch(Array.prototype.slice.call(o))},float32array(o){return r("float32array:"),this.dispatch(Array.prototype.slice.call(o))},float64array(o){return r("float64array:"),this.dispatch(Array.prototype.slice.call(o))},arraybuffer(o){return r("arraybuffer:"),this.dispatch(new Uint8Array(o))},url(o){return r("url:"+o.toString())},map(o){r("map:");const s=[...o];return this.array(s,e.unorderedSets!==!1)},set(o){r("set:");const s=[...o];return this.array(s,e.unorderedSets!==!1)},file(o){return r("file:"),this.dispatch([o.name,o.size,o.type,o.lastModfied])},blob(){if(e.ignoreUnknown)return r("[blob]");throw new Error(`Hashing Blob objects is currently not supported +Use "options.replacer" or "options.ignoreUnknown" +`)},domwindow(){return r("domwindow")},bigint(o){return r("bigint:"+o.toString())},process(){return r("process")},timer(){return r("timer")},pipe(){return r("pipe")},tcp(){return r("tcp")},udp(){return r("udp")},tty(){return r("tty")},statwatcher(){return r("statwatcher")},securecontext(){return r("securecontext")},connection(){return r("connection")},zlib(){return r("zlib")},context(){return r("context")},nodescript(){return r("nodescript")},httpparser(){return r("httpparser")},dataview(){return r("dataview")},signal(){return r("signal")},fsevent(){return r("fsevent")},tlswrap(){return r("tlswrap")}}}const Mu="[native code] }",Bv=Mu.length;function Za(e){return typeof e!="function"?!1:Function.prototype.toString.call(e).slice(-Bv)===Mu}class Nt{constructor(t,n){t=this.words=t||[],this.sigBytes=n===void 0?t.length*4:n}toString(t){return(t||Fv).stringify(this)}concat(t){if(this.clamp(),this.sigBytes%4)for(let n=0;n>>2]>>>24-n%4*8&255;this.words[this.sigBytes+n>>>2]|=r<<24-(this.sigBytes+n)%4*8}else for(let n=0;n>>2]=t.words[n>>>2];return this.sigBytes+=t.sigBytes,this}clamp(){this.words[this.sigBytes>>>2]&=4294967295<<32-this.sigBytes%4*8,this.words.length=Math.ceil(this.sigBytes/4)}clone(){return new Nt([...this.words])}}const Fv={stringify(e){const t=[];for(let n=0;n>>2]>>>24-n%4*8&255;t.push((r>>>4).toString(16),(r&15).toString(16))}return t.join("")}},Vv={stringify(e){const t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=[];for(let r=0;r>>2]>>>24-r%4*8&255,s=e.words[r+1>>>2]>>>24-(r+1)%4*8&255,i=e.words[r+2>>>2]>>>24-(r+2)%4*8&255,a=o<<16|s<<8|i;for(let c=0;c<4&&r*8+c*6>>6*(3-c)&63))}return n.join("")}},zv={parse(e){const t=e.length,n=[];for(let r=0;r>>2]|=(e.charCodeAt(r)&255)<<24-r%4*8;return new Nt(n,t)}},Uv={parse(e){return zv.parse(unescape(encodeURIComponent(e)))}};class Kv{constructor(){this._data=new Nt,this._nDataBytes=0,this._minBufferSize=0,this.blockSize=512/32}reset(){this._data=new Nt,this._nDataBytes=0}_append(t){typeof t=="string"&&(t=Uv.parse(t)),this._data.concat(t),this._nDataBytes+=t.sigBytes}_doProcessBlock(t,n){}_process(t){let n,r=this._data.sigBytes/(this.blockSize*4);t?r=Math.ceil(r):r=Math.max((r|0)-this._minBufferSize,0);const o=r*this.blockSize,s=Math.min(o*4,this._data.sigBytes);if(o){for(let i=0;i>>7)^(p<<14|p>>>18)^p>>>3,P=Kt[d-2],C=(P<<15|P>>>17)^(P<<13|P>>>19)^P>>>10;Kt[d]=w+Kt[d-7]+C+Kt[d-16]}const h=c&u^~c&l,m=o&s^o&i^s&i,y=(o<<30|o>>>2)^(o<<19|o>>>13)^(o<<10|o>>>22),b=(c<<26|c>>>6)^(c<<21|c>>>11)^(c<<7|c>>>25),E=f+b+h+qv[d]+Kt[d],v=y+m;f=l,l=u,u=c,c=a+E|0,a=i,i=s,s=o,o=E+v|0}r[0]=r[0]+o|0,r[1]=r[1]+s|0,r[2]=r[2]+i|0,r[3]=r[3]+a|0,r[4]=r[4]+c|0,r[5]=r[5]+u|0,r[6]=r[6]+l|0,r[7]=r[7]+f|0}finalize(t){super.finalize(t);const n=this._nDataBytes*8,r=this._data.sigBytes*8;return this._data.words[r>>>5]|=128<<24-r%32,this._data.words[(r+64>>>9<<4)+14]=Math.floor(n/4294967296),this._data.words[(r+64>>>9<<4)+15]=n,this._data.sigBytes=this._data.words.length*4,this._process(),this._hash}}function Qv(e){return new Gv().finalize(e).toString(Vv)}function Zr(e,t={}){const n=typeof e=="string"?e:Cs(e,t);return Qv(n).slice(0,10)}function Jv(e,t,n={}){return e===t||Cs(e,n)===Cs(t,n)}function yi(e){return JSON.stringify(e,Xv)}function Xv(e,t){return t instanceof RegExp?`--REGEX ${t.toString()}`:t}const Nu=e=>{let t=yi(e);return t=typeof Buffer<"u"?Buffer.from(t).toString("base64"):btoa(t),t=t.replace(/\+/g,"-").replace(/\//g,"_").replace(/=/g,""),(t.match(/.{1,100}/g)||[]).join("/")},Yv={path:"/",watch:!0,decode:e=>nr(decodeURIComponent(e)),encode:e=>encodeURIComponent(typeof e=="string"?e:JSON.stringify(e))};function $r(e,t){var c;const n={...Yv,...t},r=Zv(n)||{};let o;n.maxAge!==void 0?o=n.maxAge*1e3:n.expires&&(o=n.expires.getTime()-Date.now());const s=o!==void 0&&o<=0,i=ct(s?void 0:r[e]??((c=n.default)==null?void 0:c.call(n))),a=o&&!s?n0(i,o):ve(i);{const u=typeof BroadcastChannel>"u"?null:new BroadcastChannel(`nuxt:cookies:${e}`),l=()=>{n.readonly||Jv(a.value,r[e])||(t0(e,a.value,n),r[e]=ct(a.value),u==null||u.postMessage(n.encode(a.value)))};let f=!1;Hs()&&ur(()=>{f=!0,l(),u==null||u.close()}),u&&(u.onmessage=d=>{f=!0,r[e]=a.value=n.decode(d.data),Bt(()=>{f=!1})}),n.watch?Ne(a,()=>{f||l()},{deep:n.watch!=="shallow"}):l()}return a}function Zv(e={}){return Km(document.cookie,e)}function e0(e,t,n={}){return t==null?Ra(e,t,{...n,maxAge:-1}):Ra(e,t,n)}function t0(e,t,n={}){document.cookie=e0(e,t,n)}const tc=2147483647;function n0(e,t){let n,r=0;return Hs()&&ur(()=>{clearTimeout(n)}),od((o,s)=>{function i(){clearTimeout(n);const a=t-r,c=a{if(r+=c,r({isEnabled:()=>{const r=Dt().query;return Object.prototype.hasOwnProperty.call(r,"preview")&&!r.preview?!1:!!(r.preview||$r("previewToken").value||sessionStorage.getItem("previewToken"))},getPreviewToken:()=>$r("previewToken").value||sessionStorage.getItem("previewToken")||void 0,setPreviewToken:r=>{$r("previewToken").value=r,Dt().query.preview=r||"",r?sessionStorage.setItem("previewToken",r):sessionStorage.removeItem("previewToken"),window.location.reload()}}),eo=e=>ai(e,je().public.content.api.baseURL),Hu=()=>{const{experimental:e}=je().public.content;return e.clientDB?!0:_i().isEnabled()},nc=(e,t)=>t.split(".").reduce((n,r)=>n&&n[r],e),vi=(e,t)=>Object.keys(e).filter(t).reduce((n,r)=>Object.assign(n,{[r]:e[r]}),{}),bE=e=>t=>e&&e.length?vi(t,n=>!e.includes(n)):t,wE=e=>t=>Array.isArray(t)?t.map(n=>e(n)):e(t),ju=e=>{const t=[],n=[];for(const r of e)["$","_"].includes(r)?t.push(r):n.push(r);return{prefixes:t,properties:n}},EE=(e=[])=>t=>{if(e.length===0||!t)return t;const{prefixes:n,properties:r}=ju(e);return vi(t,o=>!r.includes(o)&&!n.includes(o[0]))},CE=(e=[])=>t=>{if(e.length===0||!t)return t;const{prefixes:n,properties:r}=ju(e);return vi(t,o=>r.includes(o)||n.includes(o[0]))},PE=(e,t)=>{const n=new Intl.Collator(t.$locale,{numeric:t.$numeric,caseFirst:t.$caseFirst,sensitivity:t.$sensitivity}),r=Object.keys(t).filter(o=>!o.startsWith("$"));for(const o of r)e=e.sort((s,i)=>{const a=[nc(s,o),nc(i,o)].map(c=>{if(c!==null)return c instanceof Date?c.toISOString():c});return t[o]===-1&&a.reverse(),n.compare(a[0],a[1])});return e},TE=(e,t="Expected an array")=>{if(!Array.isArray(e))throw new TypeError(t)},pt=e=>Array.isArray(e)?e:[void 0,null].includes(e)?[]:[e],r0=["sort","where","only","without"];function o0(e,t={}){const n={};for(const i of Object.keys(t.initialParams||{}))n[i]=r0.includes(i)?pt(t.initialParams[i]):t.initialParams[i];const r=(i,a=c=>c)=>(...c)=>(n[i]=a(...c),s),o=i=>{var a;return t.legacy?i!=null&&i.surround?i.surround:i&&(i!=null&&i.dirConfig&&(i.result={_path:(a=i.dirConfig)==null?void 0:a._path,...i.result,_dir:i.dirConfig}),i!=null&&i._path||Array.isArray(i)||!Object.prototype.hasOwnProperty.call(i,"result")?i:i==null?void 0:i.result):i},s={params:()=>({...n,...n.where?{where:[...pt(n.where)]}:{},...n.sort?{sort:[...pt(n.sort)]}:{}}),only:r("only",pt),without:r("without",pt),where:r("where",i=>[...pt(n.where),...pt(i)]),sort:r("sort",i=>[...pt(n.sort),...pt(i)]),limit:r("limit",i=>parseInt(String(i),10)),skip:r("skip",i=>parseInt(String(i),10)),find:()=>e(s).then(o),findOne:()=>e(r("first")(!0)).then(o),count:()=>e(r("count")(!0)).then(o),locale:i=>s.where({_locale:i}),withSurround:r("surround",(i,a)=>({query:i,...a})),withDirConfig:()=>r("dirConfig")(!0)};return t.legacy&&(s.findSurround=(i,a)=>s.withSurround(i,a).find().then(o)),s}const s0=()=>async e=>{const{content:t}=je().public,n=e.params(),r=t.experimental.stripQueryParameters?eo(`/query/${`${Zr(n)}.${t.integrity}`}/${Nu(n)}.json`):eo(`/query/${Zr(n)}.${t.integrity}.json`);if(Hu())return(await L(()=>import("./client-db.yLCpLYUu.js"),__vite__mapDeps([]),import.meta.url).then(i=>i.useContentDatabase())).fetch(e);const o=await $fetch(r,{method:"GET",responseType:"json",params:t.experimental.stripQueryParameters?void 0:{_params:yi(n),previewToken:_i().getPreviewToken()}});if(typeof o=="string"&&o.startsWith(""))throw new Error("Not found");return o};function Mr(e,...t){const{content:n}=je().public,r=o0(s0(),{initialParams:typeof e!="string"?e:{},legacy:!0});let o;typeof e=="string"&&(o=cs(on(e,...t)));const s=r.params;return r.params=()=>{var a,c,u;const i=s();return o&&(i.where=i.where||[],i.first&&(i.where||[]).length===0?i.where.push({_path:jt(o)}):i.where.push({_path:new RegExp(`^${o.replace(/[-[\]{}()*+.,^$\s/]/g,"\\$&")}`)})),(a=i.sort)!=null&&a.length||(i.sort=[{_file:1,$numeric:!0}]),n.locales.length&&((u=(c=i.where)==null?void 0:c.find(f=>f._locale))!=null&&u._locale||(i.where=i.where||[],i.where.push({_locale:n.defaultLocale}))),i},r}const i0=async e=>{const{content:t}=je().public;typeof(e==null?void 0:e.params)!="function"&&(e=Mr(e));const n=e.params(),r=t.experimental.stripQueryParameters?eo(`/navigation/${`${Zr(n)}.${t.integrity}`}/${Nu(n)}.json`):eo(`/navigation/${Zr(n)}.${t.integrity}.json`);if(Hu())return(await L(()=>import("./client-db.yLCpLYUu.js"),__vite__mapDeps([]),import.meta.url).then(i=>i.generateNavigation))(n);const o=await $fetch(r,{method:"GET",responseType:"json",params:t.experimental.stripQueryParameters?void 0:{_params:yi(n),previewToken:_i().getPreviewToken()}});if(typeof o=="string"&&o.startsWith(""))throw new Error("Not found");return o},a0=We(e=>{var u,l,f,d;const t=(l=(u=je())==null?void 0:u.public)==null?void 0:l.content.documentDriven,n=(d=(f=je())==null?void 0:f.public)==null?void 0:d.content.experimental.clientDB,{navigation:r,pages:o,globals:s,surrounds:i}=un(),a=(h,m,y,b)=>{var E;if(m&&(m!=null&&m.layout))return m.layout;if(h.matched.length&&((E=h.matched[0].meta)!=null&&E.layout))return h.matched[0].meta.layout;if(y&&m){const{navKeyFromPath:v}=jv(),p=v(m._path,"layout",y);if(p)return p}if(t.layoutFallbacks&&b){let v;for(const p of t.layoutFallbacks)if(b[p]&&b[p].layout){v=b[p].layout;break}if(v)return v}return"default"},c=async(h,m=!1)=>{e.callHook("content:document-driven:start",{route:h,dedup:m});const y=h.meta.documentDriven||{};if(h.meta.documentDriven===!1)return;const b=jt(h.path),E=[];if(t.navigation&&y.navigation!==!1){const v=()=>{const{navigation:p}=un();return p.value&&!m?p.value:i0().then(w=>(p.value=w,w)).catch(()=>null)};E.push(v)}else E.push(()=>Promise.resolve(null));if(t.globals){const v=()=>{const{globals:p}=un();if(typeof t.globals=="object"&&Array.isArray(t.globals)){console.log("Globals must be a list of keys with QueryBuilderParams as a value.");return}return Promise.all(Object.entries(t.globals).map(([w,P])=>{if(!m&&p.value[w])return p.value[w];let C="findOne";return P!=null&&P.type&&(C=P.type),Mr(P)[C]().catch(()=>null)})).then(w=>w.reduce((P,C,A)=>{const x=Object.keys(t.globals)[A];return P[x]=C,P},{}))};E.push(v)}else E.push(()=>Promise.resolve(null));if(t.page&&y.page!==!1){let v={_path:b};typeof y.page=="string"&&(v={_path:y.page}),typeof y.page=="object"&&(v=y.page);const p=()=>{const{pages:w}=un();return!m&&w.value[b]&&w.value[b]._path===b?w.value[b]:Mr().where(v).findOne().catch(()=>null)};E.push(p)}else E.push(()=>Promise.resolve(null));if(t.surround&&y.surround!==!1){let v=b;["string","object"].includes(typeof y.page)&&(v=y.page),["string","object"].includes(typeof y.surround)&&(v=y.surround);const p=()=>{const{surrounds:w}=un();return!m&&w.value[b]?w.value[b]:Mr().where({_partial:{$not:!0},navigation:{$not:!1}}).without(["body"]).findSurround(v).catch(()=>null)};E.push(p)}else E.push(()=>Promise.resolve(null));return await Promise.all(E.map(v=>v())).then(async([v,p,w,P])=>{var A,x;v&&(r.value=v),p&&(s.value=p),P&&(i.value[b]=P);const C=(w==null?void 0:w.redirect)||((x=(A=w==null?void 0:w._dir)==null?void 0:A.navigation)==null?void 0:x.redirect);if(C)return o.value[b]=w,C;if(w){const D=a(h,w,v,p),O=Nn[D];O&&typeof O=="function"&&await O(),h.meta.layout=D,w.layout=D}o.value[b]=w,await e.callHook("content:document-driven:finish",{route:h,dedup:m,page:w,navigation:v,globals:p,surround:P})})};{const h=st();e.hook("link:prefetch",m=>{if(!(m in o.value)&&!_t(m)){const y=h.resolve(m);y.matched.length>0&&c(y)}}),e.hooks.hook("content:document-driven:finish",({page:m})=>{var y;(y=m==null?void 0:m.body)!=null&&y.children&&Du(m.body.children)})}ag(async(h,m)=>{if(!n&&h.path===m.path){if(!h.meta.layout){const b=jt(h.path);o.value[b]&&(h.meta.layout=o.value[b].layout)}return}const y=await c(h,!1);if(y)return _t(y)?eu(e,du,[y,{external:!0}]):y}),e.hook("app:data:refresh",async()=>await c(Dt(),!0))});function Du(e){for(const t of e)if(t.children&&Du(t.children),t.type==="element"&&t.tag){const n=$v(t.tag);for(const r of["Prose"+n,n])Av.includes(r)&&kv(r)}}let bi=(e=21)=>crypto.getRandomValues(new Uint8Array(e)).reduce((t,n)=>(n&=63,n<36?t+=n.toString(36):n<62?t+=(n-26).toString(36).toUpperCase():n>62?t+="-":t+="_",t),"");const Bu=new RegExp("\\{([^}]+)\\}","g"),c0="@dark",l0="@light",u0="@initial";function rc(e,t,n,r="."){typeof t=="string"&&(t=t.split(r));const o=t.length-1;for(let i=0;it.includes(i))){r[o]={value:e[o]};continue}r[o]=Vu(e[o],t,n)}}return r}function f0(e={},t={}){const n={key:"attributes.variable",onNotFound:!1,...t};function r(o=void 0,s){if(!o)return H(e);const i={...n,...s},{key:a,onNotFound:c}=i,u=to(H(e),o);if(!u&&typeof c=="function"){c(o,i);return}return a?u&&(u[a]?u[a]:to(u,a)):u}return r.bind(this)}function zu(e){return Array.isArray(e)&&(e=e.join("-")),e.charAt(0)==="{"&&e.charAt(e.length-1)==="}"&&(e=e.substr(1,e.length-2)),`--${e.split(".").join("-")}`}function d0(e,t,n,r,o=[],s,i){var c;const a=p0(e,t,r,s,i);return a||((c=s==null?void 0:s.utils)!=null&&c[e]?typeof s.utils[e]=="function"?s.utils[e](t):t?s.utils[e]:{}:(t=h0(e,t,o,s,i),{[e]:t}))}function h0(e,t,n,r,o){return(Array.isArray(t)||typeof t=="string"||typeof t=="number")&&(Array.isArray(t)?t=t.map(s=>oc(e,s,n,r,o)).join(","):t=oc(e,t,n,r,o)),t}function oc(e,t,n,r,o){return typeof t=="number"?t:(t.match(Bu)&&(t=Uu(e,t,n,r,o)),t==="{}"?"":t)}function Uu(e,t,n,r,o){return typeof t!="string"||(t=t.replace(Bu,(s,i)=>{const a=zu(i),c=`var(${a})`;if(n.includes(a))return c;const u=r.$tokens(i,{key:void 0,loc:o}),l=typeof u=="string"?u:(u==null?void 0:u.variable)||(u==null?void 0:u.value);return l||c})),t}function p0(e,t,n,r,o){if(e.startsWith("@")){const s=a=>{a=r.options.colorSchemeMode==="class"?`:root.${a}`:`@media (prefers-color-scheme: ${a})`;const c=a.startsWith("@media");return r!=null&&r.runtime?{"@media":{[a]:t}}:{[c?a:`${a} &`]:t}};if(e===c0)return s("dark");if(e===l0)return s("light");if(e===u0){const a=r.$tokens("media.initial",{key:"value",onNotFound:!1,loc:o});return{[`@media${a?` ${a}`:""}`]:t}}const i=r.$tokens("media",{key:void 0,loc:o});if(i){const a=e.replace("@","");if(i[a])return{[`@media ${i[a].value}`]:t}}return{[e]:t}}}function m0(e,t,n,r){var i;let o="";if(e==="dark"||e==="light")r==="class"?o=`:root.${e}`:o=`(prefers-color-scheme: ${e})`;else if(e!=="initial"&&n){const a=(i=n==null?void 0:n.media)==null?void 0:i[e];a&&(o=a.value)}let s;return o?o.startsWith(".")?s=`@media { :root${o} {`:o.startsWith(":root")?s=`@media { ${o} {`:s=`@media ${o} { :root {`:s="@media { :root {",`${`${`${s}--pinceau-mq: ${String(e)}; ${t}`} } }`} +`}const sc=/\s*,\s*(?![^()]*\))/,g0=(e,t)=>e.reduce((n,r)=>(n.push(...t.map(o=>o.includes("&")?o.replace(/&/g,/[ +>|~]/.test(r)&&/&.*&/.test(o)?`:is(${r})`:r):`${r} ${o}`)),n),[]),{prototype:{toString:y0}}=Object,_0=(e,t=void 0)=>{const n=new WeakSet,r=(s,i,a,c,u,l,f)=>{for(let d=0;d{let l="";for(const f in s){const d=f.charCodeAt(0)===64,h=f.charCodeAt(0)===45&&f.charCodeAt(1)===45;for(const m of d&&Array.isArray(s[f])?s[f]:[s[f]]){if(t&&(f!==c||m!==u)){const b=t(f,m,s,i);if(b!==null){l+=typeof b=="object"&&b?o(b,i,a,f,m):b??"";continue}}if(typeof m=="object"&&m&&m.toString===y0){n.has(i)&&(n.delete(i),l+="}");const b=Object(f);let E;d?(E=i,l+=o(m,E,a.concat(b))):(E=i.length?g0(i,f.split(sc)):f.split(sc),l+=o(m,E,a)),n.has(b)&&(n.delete(b),l+="}"),n.has(E)&&(n.delete(E),l+="}")}else l=r(l,i,a,f,m,d,h)}}return l};return o(e,[],[])},Ku=".phy[--]";function v0(e,t={},n,r){const o=ve(),s=ve(t),i={},a=(m,y)=>_0(m,(b,E,v,p)=>d0(b,E,v,p,[],{$tokens:e,utils:s.value,options:{colorSchemeMode:n,runtime:!0}},y));function c(){const m=globalThis||window;let y,b;if(m&&m.document){const E=`pinceau-runtime${r?`-${r}`:""}`,v=m.document;if(y=v.querySelector(`style#${E}`),!y){const p=v.createElement("style");p.id=E,p.type="text/css",y=v.head.appendChild(p)}b=v.querySelector(`style#pinceau-runtime-hydratable${r?`-${r}`:""}`)}return o.value=(y==null?void 0:y.sheet)||b0(),b?u(b):void 0}function u(m){var b,E;const y={};for(const v of Object.entries(((b=m==null?void 0:m.sheet)==null?void 0:b.cssRules)||((E=o.value)==null?void 0:E.cssRules)||{})){const[p,w]=v,P=w0(w);if(!P||!P.uid)continue;y[P.uid]||(y[P.uid]={});const C=o.value.insertRule(w.cssText,Number(p));y[P.uid][P.type]=o.value.cssRules.item(C)}return m&&m.remove(),y}function l(){return o.value?Object.entries(o.value.cssRules).reduce((m,[,y])=>(m+=`${y==null?void 0:y.cssText} `||"",m),""):""}function f(m,y,b,E,v){if(!Object.keys(b).length)return;const p=a({"@media":{[Ku]:{"--puid":`${m}-${y}`},...b}},v);if(!p)return;E&&d(E);const w=o.value.insertRule(p);return o.value.cssRules[w]}function d(m){const y=Object.values(o.value.cssRules).indexOf(m);if(!(typeof y>"u"||isNaN(y)))try{o.value.deleteRule(y)}catch{}}const h=c();return{stringify:a,cache:i,pushDeclaration:f,deleteRule:d,sheet:o,toString:l,hydratableRules:h}}function b0(){return{cssRules:[],insertRule(e,t=this.cssRules.length){return this.cssRules.splice(t,1,{cssText:e}),t},deleteRule(e){delete this.cssRules[e]}}}function w0(e){const t=e.cssRules&&e.cssRules.length?Object.entries(e==null?void 0:e.cssRules).find(([s,i])=>i.selectorText===Ku):void 0;if(!t)return;const n=/--puid:(.*)?-(c|v|p)?/m,[,r,o]=t[1].cssText.match(n);if(r)return{uid:r,type:o}}function E0(e,t,n){var a,c,u;let r;const o=(a=e==null?void 0:e.vnode)==null?void 0:a.el;o&&o.classList?o.classList.forEach(l=>{r||l.startsWith("pc-")&&(r=l.split("pc-")[1])}):r=bi(6);const s=(u=(c=e==null?void 0:e.vnode)==null?void 0:c.type)==null?void 0:u.__scopeId,i={uid:r,componentId:s?`[${s}]`:"",uniqueClassName:`pc-${r}`};return t.value.c=i.uniqueClassName,oe(()=>i)}function C0(e,t={},n){const r=ve(),o=ve(e||{});t=Object.assign({key:"variable"},t||{});const s=f0(o,t);let i={};c();function a(y){var b;for(const E of y.styleSheets)if((b=E==null?void 0:E.ownerNode)!=null&&b.textContent.includes("--pinceau-mq"))return E.ownerNode}function c(){var b;const y=globalThis||window;if(y&&y.document){let E=document.querySelector("#pinceau-theme");E||(E=a(document)),r.value=E==null?void 0:E.sheet,r.value&&u((b=r.value)==null?void 0:b.cssRules)}}function u(y){i={},Object.entries(y||{}).forEach(([b,E])=>{var p,w;if((E==null?void 0:E.type)!==4&&!((p=E==null?void 0:E.cssText)!=null&&p.includes("--pinceau-mq")))return!1;let v="initial";(w=E.cssText.match(/--([\w-]+)\s*:\s*(.+?);/gm))==null||w.forEach(P=>{var D;const[C,A]=P.replace(";","").split(/:\s(.*)/s);if(C==="--pinceau-mq"){if(v=A,!i[A]){const O=(D=Object.entries((E==null?void 0:E.cssRules)||{}).find(([Y,M])=>M==null?void 0:M.cssText.includes(`--pinceau-mq: ${A}`)))==null?void 0:D[1];O&&(i[A]=O)}return}const x=[...C.substring(2).split("-")];rc(o.value,x,h(x,A,C,v))})})}function l(y){var v;const b=Array.from(new Set(["dark","light",...Object.keys((y==null?void 0:y.media)||{}),...Object.keys(((v=o.value)==null?void 0:v.media)||{})])),E=Vu(y||{},b,!0);Fu(E,(p,w,P)=>f(P,p.value))}function f(y,b,E="initial"){var w;if(typeof b=="object"){Object.entries(b).forEach(([P,C])=>f(y,C,P));return}const v=zu(y);i!=null&&i[E]||m(E);const p=Uu(void 0,b,[],{$tokens:s});rc(o.value,y,h(y,p,v,E)),(w=i==null?void 0:i[E])==null||w.style.setProperty(v,p)}function d(y){return oe({get(){return to(o.value,`${y}.value`)},set(b){f(y,b)}})}function h(y,b,E,v="initial"){const p={value:b,variable:`var(${E})`},w=to(o.value,y);return w&&!E.startsWith("--media")&&(typeof(w==null?void 0:w.value)=="object"?p.value={...w.value,[v]:b}:p.value={initial:w.value,[v]:b}),p}function m(y){if(i!=null&&i[y])return i==null?void 0:i[y];const b=m0(y,"",o.value,n),E=r.value.insertRule(b,r.value.cssRules.length);return i[y]=r.value.cssRules.item(E).cssRules[0],i[y]}return{$tokens:s,updateToken:f,updateTheme:l,reactiveToken:d,resolveStylesheet:c,theme:o}}function P0(e,t,n,r){var s,i;let o=(i=(s=n.hydratableRules)==null?void 0:s[e.value.uid])==null?void 0:i.c;Ne(()=>t,a=>{a=T0(e.value,a),o=n.pushDeclaration(e.value.uid,"c",a,o,{...r,type:"c"})},{immediate:!o,deep:!0}),ur(()=>o&&n.deleteRule(o))}function T0(e,t){const n={},r=`.${e.uniqueClassName}${e.componentId}`;if(t&&Object.keys(t).length){n[r]=n[r]||{};for(const[o,s]of Object.entries(t)){const i=H(s);if(o==="css"){n[r]=Object.assign(n[r],i);continue}if(typeof i=="object")for(const[a,c]of Object.entries(i)){const u=H(c);if(!u)continue;a==="initial"&&(n[r]||(n[r]={}),n[r]||(n[r]={}),n[r][`--${o}`]=u);const l=`@${a}`;n[l]||(n[l]={}),n[l][r]||(n[l][r]={}),n[l][r][`--${Es(o)}`]=u}else{const a=H(i);a&&(n[r][`--${Es(o)}`]=a)}}}return n}const S0=(e,t,n,r,o,s)=>{var u,l;let i=(l=(u=r.hydratableRules)==null?void 0:u[e.value.uid])==null?void 0:l.v;const a=oe(()=>t?R0(e.value,n,t):{}),c=ve([]);return Ne(a,({cacheId:f,variantsProps:d})=>{let h;if(r.cache[f]){const m=r.cache[f];i=m.rule,h=m.variantClass,m!=null&&m.classes&&(c.value=m.classes),m.count++}else{h=`pv-${bi(6)}`;const{declaration:m,classes:y}=k0(h,e.value,t,d);c.value=y,i=r.pushDeclaration(e.value.uid,"v",m,void 0,{...s,type:"v"}),r.cache[f]={rule:i,variantClass:h,classes:y,count:1}}o.value.v=h},{immediate:!0}),ur(()=>{var h;const f=a==null?void 0:a.value,d=(h=r.cache)==null?void 0:h[f.cacheId];d&&(d.count--,d.count<=0&&(r.deleteRule(d.rule),delete r.cache[f.cacheId]))}),{variantsClasses:c}};function k0(e,t,n,r){var i,a;let o=[];const s={};if(r&&Object.keys(r).length){const c=`.${e}`;for(const[u,l]of Object.entries(r))if(typeof l=="object")for(const[f,d]of Object.entries(l)){const h=(d==null?void 0:d.toString())||d,m=n[u][h];if(!m)continue;if(s[c]||(s[c]={}),typeof m=="string"||Array.isArray(m)||m!=null&&m.$class){const b=typeof m=="string"||Array.isArray(m)?m:m.$class;o=[...o,...typeof b=="string"?b.split(" "):b],delete m.$class}f==="initial"&&(s[c]||(s[c]={}),s[c]=Un(s[c],m));const y=`@${f}`;s[y]||(s[y]={}),s[y][c]||(s[y][c]={}),s[y][c]=Un(s[y][c],m)}else{const f=((i=l==null?void 0:l.toString)==null?void 0:i.call(l))||l,d=(a=n==null?void 0:n[u])==null?void 0:a[f];if(!d)continue;s[c]||(s[c]={}),s[c]=Un(s[c],d)}}return{declaration:s,classes:o}}function R0(e,t,n){if(!t||!n)return{};let r=e.componentId;const o=Object.entries(t).reduce((s,[i,a])=>(n[i]&&(typeof a=="object"?Object.entries(a).forEach(([c,u])=>r+=`${i}:${c}:${u}|`):r+=`${i}:${a}|`,s[i]=a),s),{});return{cacheId:r,variantsProps:o}}function A0(e,t,n,r){var i,a;let o=(a=(i=n.hydratableRules)==null?void 0:i[e.value.uid])==null?void 0:a.p;const s=oe(()=>t==null?void 0:t.css);Ne(s,c=>{c=x0(e.value,c),o&&n.deleteRule(o),o=n.pushDeclaration(e.value.uid,"p",c,o,{...r,type:"c"})},{immediate:!o}),ur(()=>o&&n.deleteRule(o))}function x0(e,t){const n={};if(t){const r=`.${e.uniqueClassName}${e.componentId}`;n[r]=Object.assign(n[r]||{},t)}return n}const L0={theme:{},utils:{},tokensHelperConfig:{},multiApp:!1,colorSchemeMode:"media",dev:!1},I0={install(e,t){t=Object.assign(L0,t);const{theme:n,tokensHelperConfig:r,dev:o,multiApp:s,colorSchemeMode:i,utils:a}=t,c=C0(n,r,i),u=s?bi(6):void 0,l=v0(c.$tokens,a,i,u);function f(d={},h,m){const y=Ft();let b;const E=ve({v:"",c:""}),v=E0(y,E);m&&Object.keys(m).length>0&&P0(v,m,l,b);let p;if(h&&Object.keys(h).length>0){const{variantsClasses:w}=S0(v,h,d,l,E,b);p=w}return d!=null&&d.css&&Object.keys(d==null?void 0:d.css).length>0&&A0(v,d,l,b),{$pinceau:oe(()=>{var w;return[E.value.v,E.value.c,(w=p==null?void 0:p.value)==null?void 0:w.join(" ")].join(" ")})}}e.config.globalProperties.$pinceauRuntime=f,e.config.globalProperties.$pinceauTheme=c,e.config.globalProperties.$pinceauSsr={get:()=>l.toString()},e.provide("pinceauRuntime",f),e.provide("pinceauTheme",c)}};function O0(e,t,n){return Oe("pinceauRuntime")(e,t,n)}function SE(){return Oe("pinceauTheme")}function kE(e,t=!1){return{type:[String,Object],default:e,required:t}}const $0=e=>({marginTop:e,marginBottom:e}),M0=e=>({marginLeft:e,marginRight:e}),N0=e=>({paddingTop:e,paddingBottom:e}),H0=e=>({paddingLeft:e,paddingRight:e}),j0={overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},D0=e=>({overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical","-webkit-line-clamp":e}),B0=e=>({fontSize:`{text.${e}.fontSize}`,lineHeight:`{text.${e}.lineHeight}`}),F0=e=>({color:`{elements.state.${e}.color.primary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.primary} !important`,borderColor:`{elements.state.${e}.borderColor.primary} !important`,":deep(p code)":{color:`{elements.state.${e}.color.secondary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`},":deep(code)":{color:`{elements.state.${e}.color.primary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`},":deep(a code)":{borderColor:`{elements.state.${e}.borderColor.primary} !important`},":deep(a)":{borderColor:"currentColor",code:{backgroundColor:`{elements.state.${e}.backgroundColor.primary} !important`},"&:hover":{color:`{elements.state.${e}.color.secondary} !important`,borderColor:"currentColor !important",code:{backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`,color:`{elements.state.${e}.color.secondary} !important`,borderColor:`{elements.state.${e}.borderColor.secondary} !important`}}}}),V0={my:$0,mx:M0,py:N0,px:H0,truncate:j0,lineClamp:D0,text:B0,stateColors:F0},z0=We(async e=>e.vueApp.use(I0,{colorSchemeMode:"class",utils:V0}));function U0(e){return typeof e=="function"?e():H(e)}function Ps(e,t=""){if(e instanceof Promise)return e;const n=U0(e);return!e||!n?n:Array.isArray(n)?n.map(r=>Ps(r,t)):typeof n=="object"?Object.fromEntries(Object.entries(n).map(([r,o])=>r==="titleTemplate"||r.startsWith("on")?[r,H(o)]:[r,Ps(o,r)])):n}const K0="usehead",ic=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},ac="__unhead_injection_handler__";function W0(){if(ac in ic)return ic[ac]();const e=Oe(K0);return e||Mm()}function Wu(e,t={}){const n=t.head||W0();if(n)return n.ssr?n.push(e,t):q0(n,e,t)}function q0(e,t,n={}){const r=ve(!1),o=ve({});Td(()=>{o.value=r.value?{}:Ps(t)});const s=e.push(o.value,n);return Ne(o,a=>{s.patch(a)}),Ft()&&(Rn(()=>{s.dispose()}),ml(()=>{r.value=!0}),pl(()=>{r.value=!1})),s}const G0="__NUXT_COLOR_MODE__",Q0="ColorScheme",J0="nuxt-color-mode",mt=window[G0],X0=We(e=>{const t=Lt("color-mode",()=>rt({preference:mt.preference,value:mt.value,unknown:!1,forced:!1})).value;st().afterEach(o=>{const s=o.meta.colorMode;s&&s!=="system"?(t.value=s,t.forced=!0):(s==="system"&&console.warn("You cannot force the colorMode to system at the page level."),t.forced=!1,t.value=t.preference==="system"?mt.getColorScheme():t.preference)});let n;function r(){n||!window.matchMedia||(n=window.matchMedia("(prefers-color-scheme: dark)"),n.addEventListener("change",()=>{!t.forced&&t.preference==="system"&&(t.value=mt.getColorScheme())}))}Ne(()=>t.preference,o=>{var s;t.forced||(o==="system"?(t.value=mt.getColorScheme(),r()):t.value=o,(s=window.localStorage)==null||s.setItem(J0,o))},{immediate:!0}),Ne(()=>t.value,(o,s)=>{mt.removeColorScheme(s),mt.addColorScheme(o)}),t.preference==="system"&&r(),e.hook("app:mounted",()=>{t.unknown&&(t.preference=mt.preference,t.value=mt.value,t.unknown=!1)}),e.provide("colorMode",t)}),Y0=We(e=>{const t=je().public.studio||{},n=Dt(),r=$r("previewToken",{sameSite:"none",secure:!0}),o=Lt("studio-client-db",()=>null);async function s(){const i=await L(()=>import("./useStudio.fjak5mNM.js"),__vite__mapDeps([134,14,135]),import.meta.url).then(u=>u.useStudio),{mountPreviewUI:a,initiateIframeCommunication:c}=i();a(),c()}if(t.apiURL){if(Object.prototype.hasOwnProperty.call(n.query,"preview")&&!n.query.preview||!n.query.preview&&!r.value)return;n.query.preview&&(r.value=String(n.query.preview)),window.sessionStorage.setItem("previewToken",String(r.value)),e.hook("content:storage",i=>{o.value=i}),e.hook("app:mounted",async()=>{await s()})}});function Z0(e,t,n){const r=/^localhost$|^127(?:\.[0-9]+){0,2}\.[0-9]+$|^(?:0*:)*?:?0*1$/.test(location.hostname)||location.protocol==="file:";if(!t.trackLocalhost&&r)return console.warn("[Plausible] Ignoring event because website is running locally");try{if(window.localStorage.plausible_ignore==="true")return console.warn('[Plausible] Ignoring event because "plausible_ignore" is set to "true" in localStorage')}catch{}const o={n:e,u:t.url,d:t.domain,r:t.referrer,w:t.deviceWidth,h:t.hashMode?1:0,p:n&&n.props?JSON.stringify(n.props):void 0},s=new XMLHttpRequest;s.open("POST",`${t.apiHost}/api/event`,!0),s.setRequestHeader("Content-Type","text/plain"),s.send(JSON.stringify(o)),s.onreadystatechange=()=>{s.readyState===4&&n&&n.callback&&n.callback()}}function eb(e){const t=()=>({hashMode:!1,trackLocalhost:!1,url:location.href,domain:location.hostname,referrer:document.referrer||null,deviceWidth:window.innerWidth,apiHost:"https://plausible.io",...e}),n=(i,a,c)=>{Z0(i,{...t(),...c},a)},r=(i,a)=>{n("pageview",a,i)};return{trackEvent:n,trackPageview:r,enableAutoPageviews:()=>{const i=()=>r(),a=history.pushState;return a&&(history.pushState=function(c,u,l){a.apply(this,[c,u,l]),i()},addEventListener("popstate",i)),e&&e.hashMode&&addEventListener("hashchange",i),r(),function(){a&&(history.pushState=a,removeEventListener("popstate",i)),e&&e.hashMode&&removeEventListener("hashchange",i)}},enableAutoOutboundTracking:(i=document,a={subtree:!0,childList:!0,attributes:!0,attributeFilter:["href"]})=>{function c(h){n("Outbound Link: Click",{props:{url:this.href}}),typeof process<"u"&&process,setTimeout(()=>{location.href=this.href},150),h.preventDefault()}const u=new Set;function l(h){h instanceof HTMLAnchorElement?h.host!==location.host&&(h.addEventListener("click",c),u.add(h)):"querySelectorAll"in h&&h.querySelectorAll("a").forEach(l)}function f(h){h instanceof HTMLAnchorElement?(h.removeEventListener("click",c),u.delete(h)):"querySelectorAll"in h&&h.querySelectorAll("a").forEach(f)}const d=new MutationObserver(h=>{h.forEach(m=>{m.type==="attributes"?(f(m.target),l(m.target)):m.type==="childList"&&(m.addedNodes.forEach(l),m.removedNodes.forEach(f))})});return i.querySelectorAll("a").forEach(l),d.observe(i,a),function(){u.forEach(m=>{m.removeEventListener("click",c)}),u.clear(),d.disconnect()}}}}const tb=We(()=>{const e=je().public.plausible,t=eb({...e,domain:e.domain||window.location.hostname});return e.autoPageviews&&t.enableAutoPageviews(),e.autoOutboundTracking&&t.enableAutoOutboundTracking(),{provide:{plausible:t}}});function nb(e={}){const t=e.path||window.location.pathname;let n={};try{n=nr(sessionStorage.getItem("nuxt:reload")||"{}")}catch{}if(e.force||(n==null?void 0:n.path)!==t||(n==null?void 0:n.expires){r.clear()}),e.hook("app:chunkError",({error:s})=>{r.add(s)});function o(s){const a="href"in s&&s.href[0]==="#"?n.app.baseURL+s.href:on(n.app.baseURL,s.fullPath);nb({path:a,persistState:!0})}e.hook("app:manifest:update",()=>{t.beforeResolve(o)}),t.onError((s,i)=>{r.has(s)&&o(i)})}}),ob=[Cg,Tg,jy,By,Fy,Cv,Pv,a0,z0,X0,Y0,tb,rb],sb=xe({props:{vnode:{type:Object,required:!0},route:{type:Object,required:!0},vnodeRef:Object,renderKey:String,trackRootNodes:Boolean},setup(e){const t=e.renderKey,n=e.route,r={};for(const o in e.route)Object.defineProperty(r,o,{get:()=>t===e.renderKey?e.route[o]:n[o]});return yn(po,Ot(r)),()=>$e(e.vnode,{ref:e.vnodeRef})}}),ib=xe({name:"NuxtPage",inheritAttrs:!1,props:{name:{type:String},transition:{type:[Boolean,Object],default:void 0},keepalive:{type:[Boolean,Object],default:void 0},route:{type:Object},pageKey:{type:[Function,String],default:null}},setup(e,{attrs:t,expose:n}){const r=fe(),o=ve(),s=Oe(po,null);let i;n({pageRef:o});const a=Oe(og,null);let c;const u=r.deferHydration();return e.pageKey&&Ne(()=>e.pageKey,(l,f)=>{l!==f&&r.callHook("page:loading:start")}),()=>$e(Ru,{name:e.name,route:e.route,...t},{default:l=>{const f=cb(s,l.route,l.Component),d=s&&s.matched.length===l.route.matched.length;if(!l.Component){if(c&&!d)return c;u();return}if(c&&a&&!a.isCurrent(l.route))return c;if(f&&s&&(!a||a!=null&&a.isCurrent(s)))return d?c:null;const h=bs(l,e.pageKey);!r.isHydrating&&!lb(s,l.route,l.Component)&&i===h&&r.callHook("page:loading:end"),i=h;const m=!!(e.transition??l.route.meta.pageTransition??gs),y=m&&ab([e.transition,l.route.meta.pageTransition,gs,{onAfterLeave:()=>{r.callHook("page:transition:finish",l.Component)}}].filter(Boolean)),b=e.keepalive??l.route.meta.keepalive??mg;return c=xy(oi,m&&y,Ay(b,$e(cl,{suspensible:!0,onPending:()=>r.callHook("page:start",l.Component),onResolve:()=>{Bt(()=>r.callHook("page:finish",l.Component).then(()=>r.callHook("page:loading:end")).finally(u))}},{default:()=>{const E=$e(sb,{key:h||void 0,vnode:l.Component,route:l.route,renderKey:h||void 0,trackRootNodes:m,vnodeRef:o});return b&&(E.type.name=l.Component.type.name||l.Component.type.__name||"RouteProvider"),E}}))).default(),c}})}});function ab(e){const t=e.map(n=>({...n,onAfterLeave:n.onAfterLeave?mi(n.onAfterLeave):void 0}));return Un(...t)}function cb(e,t,n){if(!e)return!1;const r=t.matched.findIndex(o=>{var s;return((s=o.components)==null?void 0:s.default)===(n==null?void 0:n.type)});return!r||r===-1?!1:t.matched.slice(0,r).some((o,s)=>{var i,a,c;return((i=o.components)==null?void 0:i.default)!==((c=(a=e.matched[s])==null?void 0:a.components)==null?void 0:c.default)})||n&&bs({route:t,Component:n})!==bs({route:e,Component:n})}function lb(e,t,n){return e?t.matched.findIndex(o=>{var s;return((s=o.components)==null?void 0:s.default)===(n==null?void 0:n.type)}){r.show=!1,setTimeout(()=>{r.percent=0},400)},500)}function d(){r.show=!0,i=1e4/Math.floor(t.duration),o=setInterval(()=>{u(i)},100)}return n.hook("content:middleware:start",c),n.hook("page:start",c),n.hook("page:finish",l),Rn(()=>a),(h,m)=>(ne(),Re("div",{class:Ke(["nuxt-progress",{"nuxt-progress-failed":!H(r).canSucceed}]),style:Tn({width:`${H(r).percent}%`,left:H(r).left,height:`${t.height}px`,opacity:H(r).show?1:0,backgroundSize:`${100/H(r).percent*100}% auto`})},null,6))}},ub=Object.freeze(Object.defineProperty({__proto__:null,default:qu},Symbol.toStringTag,{value:"Module"})),fb=(...e)=>e.find(t=>t!==void 0),db="noopener noreferrer";function hb(e){const t=e.componentName||"NuxtLink",n=(r,o)=>{if(!r||e.trailingSlash!=="append"&&e.trailingSlash!=="remove")return r;if(typeof r=="string")return cc(r,e.trailingSlash);const s="path"in r?r.path:o(r).path;return{...r,name:void 0,path:cc(s,e.trailingSlash)}};return xe({name:t,props:{to:{type:[String,Object],default:void 0,required:!1},href:{type:[String,Object],default:void 0,required:!1},target:{type:String,default:void 0,required:!1},rel:{type:String,default:void 0,required:!1},noRel:{type:Boolean,default:void 0,required:!1},prefetch:{type:Boolean,default:void 0,required:!1},noPrefetch:{type:Boolean,default:void 0,required:!1},activeClass:{type:String,default:void 0,required:!1},exactActiveClass:{type:String,default:void 0,required:!1},prefetchedClass:{type:String,default:void 0,required:!1},replace:{type:Boolean,default:void 0,required:!1},ariaCurrentValue:{type:String,default:void 0,required:!1},external:{type:Boolean,default:void 0,required:!1},custom:{type:Boolean,default:void 0,required:!1}},setup(r,{slots:o}){const s=st(),i=je(),a=oe(()=>{const h=r.to||r.href||"";return n(h,s.resolve)}),c=oe(()=>typeof a.value=="string"&&_t(a.value,{acceptRelative:!0})),u=oe(()=>r.external||r.target&&r.target!=="_self"?!0:typeof a.value=="object"?!1:a.value===""||c.value),l=ve(!1),f=ve(null),d=h=>{var m;f.value=r.custom?(m=h==null?void 0:h.$el)==null?void 0:m.nextElementSibling:h==null?void 0:h.$el};if(r.prefetch!==!1&&r.noPrefetch!==!0&&r.target!=="_blank"&&!mb()){const m=fe();let y,b=null;kn(()=>{const E=pb();gi(()=>{y=ws(()=>{var v;(v=f==null?void 0:f.value)!=null&&v.tagName&&(b=E.observe(f.value,async()=>{b==null||b(),b=null;const p=typeof a.value=="string"?a.value:s.resolve(a.value).fullPath;await Promise.all([m.hooks.callHook("link:prefetch",p).catch(()=>{}),!u.value&&Au(a.value,s).catch(()=>{})]),l.value=!0}))})})}),Rn(()=>{y&&Dy(y),b==null||b(),b=null})}return()=>{var E,v;if(!u.value){const p={ref:d,to:a.value,activeClass:r.activeClass||e.activeClass,exactActiveClass:r.exactActiveClass||e.exactActiveClass,replace:r.replace,ariaCurrentValue:r.ariaCurrentValue,custom:r.custom};return r.custom||(l.value&&(p.class=r.prefetchedClass||e.prefetchedClass),p.rel=r.rel),$e(gd("RouterLink"),p,o.default)}const h=typeof a.value=="object"?((E=s.resolve(a.value))==null?void 0:E.href)??null:a.value&&!r.external&&!c.value?n(on(i.app.baseURL,a.value),s.resolve):a.value||null,m=r.target||null,y=r.noRel?null:fb(r.rel,e.externalRelAttribute,h?db:"")||null,b=()=>du(h,{replace:r.replace});return r.custom?o.default?o.default({href:h,navigate:b,get route(){if(!h)return;const p=pr(h);return{path:p.pathname,fullPath:p.pathname,get query(){return Wl(p.search)},hash:p.hash,params:{},name:void 0,matched:[],redirectedFrom:void 0,meta:{},href:h}},rel:y,target:m,isExternal:u.value,isActive:!1,isExactActive:!1}):null:$e("a",{ref:f,href:h,rel:y,target:m},(v=o.default)==null?void 0:v.call(o))}}})}const _o=hb(gg);function cc(e,t){const n=t==="append"?Qr:jt;return _t(e)&&!e.startsWith("http")?e:n(e,!0)}function pb(){const e=fe();if(e._observer)return e._observer;let t=null;const n=new Map,r=(s,i)=>(t||(t=new IntersectionObserver(a=>{for(const c of a){const u=n.get(c.target);(c.isIntersecting||c.intersectionRatio>0)&&u&&u()}})),n.set(s,i),t.observe(s),()=>{n.delete(s),t.unobserve(s),n.size===0&&(t.disconnect(),t=null)});return e._observer={observe:r}}function mb(){const e=navigator.connection;return!!(e&&(e.saveData||/2g/.test(e.effectiveType)))}const gb=e=>(qs("data-v-43ad9a69"),e=e(),Gs(),e),yb=gb(()=>Se("span",{class:"underline-fx"},null,-1)),_b=xe({__name:"MainNav",emits:["linkClick"],setup(e,{emit:t}){const{navigation:n}=Nv(),r=t;function o(){r("linkClick")}return(s,i)=>{const a=_o;return ne(),Re("nav",null,[Se("ul",null,[(ne(!0),Re(we,null,vl(H(n),c=>(ne(),Re("li",{key:c._path},[se(a,{to:c._path,onClick:o},{default:Ye(()=>[yb,dr(" "+Qn(c.title),1)]),_:2},1032,["to"])]))),128))])])}}}),dt=(e,t)=>{const n=e.__vccOpts||e;for(const[r,o]of t)n[r]=o;return n},wi=dt(_b,[["__scopeId","data-v-43ad9a69"]]),vb=Object.freeze(Object.defineProperty({__proto__:null,default:wi},Symbol.toStringTag,{value:"Module"})),bb=xe({props:{src:{type:[String,Object],default:null}},setup(e){const t=r=>r&&r.startsWith("/")&&!r.startsWith("//")?ai(r,je().app.baseURL):r;return{imgSrc:oe(()=>{let r=e.src;try{r=JSON.parse(r)}catch{r=e.src}return typeof r=="string"?t(e.src):{light:t(r.light),dark:t(r.dark)}})}},render({imgSrc:e}){if(typeof e=="string")return $e("img",{src:e,...this.$attrs});const t=[];return e.light&&t.push($e("img",{src:e.light,class:["dark-img"],...this.$attrs})),e.dark&&t.push($e("img",{src:e.dark,class:["light-img"],...this.$attrs})),t}}),wb=e=>(qs("data-v-88146f45"),e=e(),Gs(),e),Eb={class:"menu"},Cb=wb(()=>Se("svg",{width:"24",height:"24",viewBox:"0 0 68 68",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},[Se("path",{d:"M8 34C8 32.1362 8 31.2044 8.30448 30.4693C8.71046 29.4892 9.48915 28.7105 10.4693 28.3045C11.2044 28 12.1362 28 14 28C15.8638 28 16.7956 28 17.5307 28.3045C18.5108 28.7105 19.2895 29.4892 19.6955 30.4693C20 31.2044 20 32.1362 20 34C20 35.8638 20 36.7956 19.6955 37.5307C19.2895 38.5108 18.5108 39.2895 17.5307 39.6955C16.7956 40 15.8638 40 14 40C12.1362 40 11.2044 40 10.4693 39.6955C9.48915 39.2895 8.71046 38.5108 8.30448 37.5307C8 36.7956 8 35.8638 8 34Z"}),Se("path",{d:"M28 34C28 32.1362 28 31.2044 28.3045 30.4693C28.7105 29.4892 29.4892 28.7105 30.4693 28.3045C31.2044 28 32.1362 28 34 28C35.8638 28 36.7956 28 37.5307 28.3045C38.5108 28.7105 39.2895 29.4892 39.6955 30.4693C40 31.2044 40 32.1362 40 34C40 35.8638 40 36.7956 39.6955 37.5307C39.2895 38.5108 38.5108 39.2895 37.5307 39.6955C36.7956 40 35.8638 40 34 40C32.1362 40 31.2044 40 30.4693 39.6955C29.4892 39.2895 28.7105 38.5108 28.3045 37.5307C28 36.7956 28 35.8638 28 34Z"}),Se("path",{d:"M48 34C48 32.1362 48 31.2044 48.3045 30.4693C48.7105 29.4892 49.4892 28.7105 50.4693 28.3045C51.2044 28 52.1362 28 54 28C55.8638 28 56.7956 28 57.5307 28.3045C58.5108 28.7105 59.2895 29.4892 59.6955 30.4693C60 31.2044 60 32.1362 60 34C60 35.8638 60 36.7956 59.6955 37.5307C59.2895 38.5108 58.5108 39.2895 57.5307 39.6955C56.7956 40 55.8638 40 54 40C52.1362 40 51.2044 40 50.4693 39.6955C49.4892 39.2895 48.7105 38.5108 48.3045 37.5307C48 36.7956 48 35.8638 48 34Z"})],-1)),Pb=[Cb],Tb={class:"logo"},Sb={class:"main-nav"},kb=xe({__name:"AppHeader",setup(e){const t=mr().alpine,n=ve(!1);return(r,o)=>{const s=wi,i=bb,a=_o;return ne(),Re("header",{class:Ke(H(t).header.position||"left")},[Se("div",Eb,[Se("button",{onClick:o[0]||(o[0]=c=>n.value=!H(n)),"aria-label":"Navigation Menu"},Pb)]),Se("div",{class:Ke(["overlay",[H(n)&&"show"]])},[se(s,{onLinkClick:o[1]||(o[1]=c=>n.value=!H(n))})],2),Se("div",Tb,[H(t).header.logo?(ne(),be(a,{key:0,to:"/"},{default:Ye(()=>[se(i,{class:"dark-img",src:H(t).header.logo.pathDark,alt:H(t).header.logo.alt,width:"89",height:"31"},null,8,["src","alt"]),se(i,{class:"light-img",src:H(t).header.logo.path,alt:H(t).header.logo.alt,width:"89",height:"31"},null,8,["src","alt"])]),_:1})):(ne(),be(a,{key:1,to:"/",class:"fallback"},{default:Ye(()=>[dr(Qn(H(t).title),1)]),_:1}))]),Se("div",Sb,[se(s)])],2)}}}),Gu=dt(kb,[["__scopeId","data-v-88146f45"]]),Rb=Object.freeze(Object.defineProperty({__proto__:null,default:Gu},Symbol.toStringTag,{value:"Module"})),Qu=Object.freeze({left:0,top:0,width:16,height:16}),Ju=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),Ei=Object.freeze({...Qu,...Ju});Object.freeze({...Ei,body:"",hidden:!1});({...Qu});const Xu=Object.freeze({width:null,height:null}),Yu=Object.freeze({...Xu,...Ju});function Ab(e,t){const n={...e};for(const r in t){const o=t[r],s=typeof o;r in Xu?(o===null||o&&(s==="string"||s==="number"))&&(n[r]=o):s===typeof n[r]&&(n[r]=r==="rotate"?o%4:o)}return n}const xb=/[\s,]+/;function Lb(e,t){t.split(xb).forEach(n=>{switch(n.trim()){case"horizontal":e.hFlip=!0;break;case"vertical":e.vFlip=!0;break}})}function Ib(e,t=0){const n=e.replace(/^-?[0-9.]*/,"");function r(o){for(;o<0;)o+=4;return o%4}if(n===""){const o=parseInt(e);return isNaN(o)?0:r(o)}else if(n!==e){let o=0;switch(n){case"%":o=25;break;case"deg":o=90}if(o){let s=parseFloat(e.slice(0,e.length-n.length));return isNaN(s)?0:(s=s/o,s%1===0?r(s):0)}}return t}const Ob=/(-?[0-9.]*[0-9]+[0-9.]*)/g,$b=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function lc(e,t,n){if(t===1)return e;if(n=n||100,typeof e=="number")return Math.ceil(e*t*n)/n;if(typeof e!="string")return e;const r=e.split(Ob);if(r===null||!r.length)return e;const o=[];let s=r.shift(),i=$b.test(s);for(;;){if(i){const a=parseFloat(s);isNaN(a)?o.push(s):o.push(Math.ceil(a*t*n)/n)}else o.push(s);if(s=r.shift(),s===void 0)return o.join("");i=!i}}const Mb=e=>e==="unset"||e==="undefined"||e==="none";function Nb(e,t){const n={...Ei,...e},r={...Yu,...t},o={left:n.left,top:n.top,width:n.width,height:n.height};let s=n.body;[n,r].forEach(m=>{const y=[],b=m.hFlip,E=m.vFlip;let v=m.rotate;b?E?v+=2:(y.push("translate("+(o.width+o.left).toString()+" "+(0-o.top).toString()+")"),y.push("scale(-1 1)"),o.top=o.left=0):E&&(y.push("translate("+(0-o.left).toString()+" "+(o.height+o.top).toString()+")"),y.push("scale(1 -1)"),o.top=o.left=0);let p;switch(v<0&&(v-=Math.floor(v/4)*4),v=v%4,v){case 1:p=o.height/2+o.top,y.unshift("rotate(90 "+p.toString()+" "+p.toString()+")");break;case 2:y.unshift("rotate(180 "+(o.width/2+o.left).toString()+" "+(o.height/2+o.top).toString()+")");break;case 3:p=o.width/2+o.left,y.unshift("rotate(-90 "+p.toString()+" "+p.toString()+")");break}v%2===1&&(o.left!==o.top&&(p=o.left,o.left=o.top,o.top=p),o.width!==o.height&&(p=o.width,o.width=o.height,o.height=p)),y.length&&(s=''+s+"")});const i=r.width,a=r.height,c=o.width,u=o.height;let l,f;i===null?(f=a===null?"1em":a==="auto"?u:a,l=lc(f,c/u)):(l=i==="auto"?c:i,f=a===null?lc(l,u/c):a==="auto"?u:a);const d={},h=(m,y)=>{Mb(y)||(d[m]=y.toString())};return h("width",l),h("height",f),d.viewBox=o.left.toString()+" "+o.top.toString()+" "+c.toString()+" "+u.toString(),{attributes:d,body:s}}const Hb=/\sid="(\S+)"/g,jb="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let Db=0;function Bb(e,t=jb){const n=[];let r;for(;r=Hb.exec(e);)n.push(r[1]);if(!n.length)return e;const o="suffix"+(Math.random()*16777216|Date.now()).toString(16);return n.forEach(s=>{const i=typeof t=="function"?t(s):t+(Db++).toString(),a=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");e=e.replace(new RegExp('([#;"])('+a+')([")]|\\.[a-z])',"g"),"$1"+i+o+"$3")}),e=e.replace(new RegExp(o,"g"),""),e}function Fb(e,t){let n=e.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in t)n+=" "+r+'="'+t[r]+'"';return'"+e+""}function Vb(e){return e.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(//g,"%3E").replace(/\s+/g," ")}function zb(e){return"data:image/svg+xml,"+Vb(e)}function Ub(e){return'url("'+zb(e)+'")'}const uc={...Yu,inline:!1},Kb={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},Wb={display:"inline-block"},Ts={backgroundColor:"currentColor"},Zu={backgroundColor:"transparent"},fc={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},dc={webkitMask:Ts,mask:Ts,background:Zu};for(const e in dc){const t=dc[e];for(const n in fc)t[e+n]=fc[n]}const Nr={};["horizontal","vertical"].forEach(e=>{const t=e.slice(0,1)+"Flip";Nr[e+"-flip"]=t,Nr[e.slice(0,1)+"-flip"]=t,Nr[e+"Flip"]=t});function hc(e){return e+(e.match(/^[-0-9.]+$/)?"px":"")}const qb=(e,t)=>{const n=Ab(uc,t),r={...Kb},o=t.mode||"svg",s={},i=t.style,a=typeof i=="object"&&!(i instanceof Array)?i:{};for(let y in t){const b=t[y];if(b!==void 0)switch(y){case"icon":case"style":case"onLoad":case"mode":break;case"inline":case"hFlip":case"vFlip":n[y]=b===!0||b==="true"||b===1;break;case"flip":typeof b=="string"&&Lb(n,b);break;case"color":s.color=b;break;case"rotate":typeof b=="string"?n[y]=Ib(b):typeof b=="number"&&(n[y]=b);break;case"ariaHidden":case"aria-hidden":b!==!0&&b!=="true"&&delete r["aria-hidden"];break;default:{const E=Nr[y];E?(b===!0||b==="true"||b===1)&&(n[E]=!0):uc[y]===void 0&&(r[y]=b)}}}const c=Nb(e,n),u=c.attributes;if(n.inline&&(s.verticalAlign="-0.125em"),o==="svg"){r.style={...s,...a},Object.assign(r,u);let y=0,b=t.id;return typeof b=="string"&&(b=b.replace(/-/g,"_")),r.innerHTML=Bb(c.body,b?()=>b+"ID"+y++:"iconifyVue"),$e("svg",r)}const{body:l,width:f,height:d}=e,h=o==="mask"||(o==="bg"?!1:l.indexOf("currentColor")!==-1),m=Fb(l,{...u,width:f+"",height:d+""});return r.style={...s,"--svg":Ub(m),width:hc(u.width),height:hc(u.height),...Wb,...h?Ts:Zu,...a},$e("span",r)},Gb=Object.create(null),Qb=xe({inheritAttrs:!1,render(){const e=this.$attrs,t=e.icon,n=typeof t=="string"?Gb[t]:typeof t=="object"?t:null;return n===null||typeof n!="object"||typeof n.body!="string"?this.$slots.default?this.$slots.default():null:qb({...Ei,...n},e)}}),Gn=/^[a-z0-9]+(-[a-z0-9]+)*$/,vo=(e,t,n,r="")=>{const o=e.split(":");if(e.slice(0,1)==="@"){if(o.length<2||o.length>3)return null;r=o.shift().slice(1)}if(o.length>3||!o.length)return null;if(o.length>1){const a=o.pop(),c=o.pop(),u={provider:o.length>0?o[0]:r,prefix:c,name:a};return t&&!Hr(u)?null:u}const s=o[0],i=s.split("-");if(i.length>1){const a={provider:r,prefix:i.shift(),name:i.join("-")};return t&&!Hr(a)?null:a}if(n&&r===""){const a={provider:r,prefix:"",name:s};return t&&!Hr(a,n)?null:a}return null},Hr=(e,t)=>e?!!((e.provider===""||e.provider.match(Gn))&&(t&&e.prefix===""||e.prefix.match(Gn))&&e.name.match(Gn)):!1,ef=Object.freeze({left:0,top:0,width:16,height:16}),no=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),Ci=Object.freeze({...ef,...no}),Ss=Object.freeze({...Ci,body:"",hidden:!1});function Jb(e,t){const n={};!e.hFlip!=!t.hFlip&&(n.hFlip=!0),!e.vFlip!=!t.vFlip&&(n.vFlip=!0);const r=((e.rotate||0)+(t.rotate||0))%4;return r&&(n.rotate=r),n}function pc(e,t){const n=Jb(e,t);for(const r in Ss)r in no?r in e&&!(r in n)&&(n[r]=no[r]):r in t?n[r]=t[r]:r in e&&(n[r]=e[r]);return n}function Xb(e,t){const n=e.icons,r=e.aliases||Object.create(null),o=Object.create(null);function s(i){if(n[i])return o[i]=[];if(!(i in o)){o[i]=null;const a=r[i]&&r[i].parent,c=a&&s(a);c&&(o[i]=[a].concat(c))}return o[i]}return(t||Object.keys(n).concat(Object.keys(r))).forEach(s),o}function Yb(e,t,n){const r=e.icons,o=e.aliases||Object.create(null);let s={};function i(a){s=pc(r[a]||o[a],s)}return i(t),n.forEach(i),pc(e,s)}function tf(e,t){const n=[];if(typeof e!="object"||typeof e.icons!="object")return n;e.not_found instanceof Array&&e.not_found.forEach(o=>{t(o,null),n.push(o)});const r=Xb(e);for(const o in r){const s=r[o];s&&(t(o,Yb(e,o,s)),n.push(o))}return n}const Zb={provider:"",aliases:{},not_found:{},...ef};function Do(e,t){for(const n in t)if(n in e&&typeof e[n]!=typeof t[n])return!1;return!0}function nf(e){if(typeof e!="object"||e===null)return null;const t=e;if(typeof t.prefix!="string"||!e.icons||typeof e.icons!="object"||!Do(e,Zb))return null;const n=t.icons;for(const o in n){const s=n[o];if(!o.match(Gn)||typeof s.body!="string"||!Do(s,Ss))return null}const r=t.aliases||Object.create(null);for(const o in r){const s=r[o],i=s.parent;if(!o.match(Gn)||typeof i!="string"||!n[i]&&!r[i]||!Do(s,Ss))return null}return t}const mc=Object.create(null);function ew(e,t){return{provider:e,prefix:t,icons:Object.create(null),missing:new Set}}function tn(e,t){const n=mc[e]||(mc[e]=Object.create(null));return n[t]||(n[t]=ew(e,t))}function Pi(e,t){return nf(t)?tf(t,(n,r)=>{r?e.icons[n]=r:e.missing.add(n)}):[]}function tw(e,t,n){try{if(typeof n.body=="string")return e.icons[t]={...n},!0}catch{}return!1}let ir=!1;function rf(e){return typeof e=="boolean"&&(ir=e),ir}function nw(e){const t=typeof e=="string"?vo(e,!0,ir):e;if(t){const n=tn(t.provider,t.prefix),r=t.name;return n.icons[r]||(n.missing.has(r)?null:void 0)}}function rw(e,t){const n=vo(e,!0,ir);if(!n)return!1;const r=tn(n.provider,n.prefix);return tw(r,n.name,t)}function ow(e,t){if(typeof e!="object")return!1;if(typeof t!="string"&&(t=e.provider||""),ir&&!t&&!e.prefix){let o=!1;return nf(e)&&(e.prefix="",tf(e,(s,i)=>{i&&rw(s,i)&&(o=!0)})),o}const n=e.prefix;if(!Hr({provider:t,prefix:n,name:"a"}))return!1;const r=tn(t,n);return!!Pi(r,e)}const sw=Object.freeze({width:null,height:null}),iw=Object.freeze({...sw,...no});""+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);const ks=Object.create(null);function aw(e,t){ks[e]=t}function Rs(e){return ks[e]||ks[""]}function Ti(e){let t;if(typeof e.resources=="string")t=[e.resources];else if(t=e.resources,!(t instanceof Array)||!t.length)return null;return{resources:t,path:e.path||"/",maxURL:e.maxURL||500,rotate:e.rotate||750,timeout:e.timeout||5e3,random:e.random===!0,index:e.index||0,dataAfterTimeout:e.dataAfterTimeout!==!1}}const Si=Object.create(null),On=["https://api.simplesvg.com","https://api.unisvg.com"],jr=[];for(;On.length>0;)On.length===1||Math.random()>.5?jr.push(On.shift()):jr.push(On.pop());Si[""]=Ti({resources:["https://api.iconify.design"].concat(jr)});function cw(e,t){const n=Ti(t);return n===null?!1:(Si[e]=n,!0)}function ki(e){return Si[e]}const lw=()=>{let e;try{if(e=fetch,typeof e=="function")return e}catch{}};let gc=lw();function uw(e,t){const n=ki(e);if(!n)return 0;let r;if(!n.maxURL)r=0;else{let o=0;n.resources.forEach(i=>{o=Math.max(o,i.length)});const s=t+".json?icons=";r=n.maxURL-o-n.path.length-s.length}return r}function fw(e){return e===404}const dw=(e,t,n)=>{const r=[],o=uw(e,t),s="icons";let i={type:s,provider:e,prefix:t,icons:[]},a=0;return n.forEach((c,u)=>{a+=c.length+1,a>=o&&u>0&&(r.push(i),i={type:s,provider:e,prefix:t,icons:[]},a=c.length),i.icons.push(c)}),r.push(i),r};function hw(e){if(typeof e=="string"){const t=ki(e);if(t)return t.path}return"/"}const pw=(e,t,n)=>{if(!gc){n("abort",424);return}let r=hw(t.provider);switch(t.type){case"icons":{const s=t.prefix,a=t.icons.join(","),c=new URLSearchParams({icons:a});r+=s+".json?"+c.toString();break}case"custom":{const s=t.uri;r+=s.slice(0,1)==="/"?s.slice(1):s;break}default:n("abort",400);return}let o=503;gc(e+r).then(s=>{const i=s.status;if(i!==200){setTimeout(()=>{n(fw(i)?"abort":"next",i)});return}return o=501,s.json()}).then(s=>{if(typeof s!="object"||s===null){setTimeout(()=>{s===404?n("abort",s):n("next",o)});return}setTimeout(()=>{n("success",s)})}).catch(()=>{n("next",o)})},mw={prepare:dw,send:pw};function gw(e){const t={loaded:[],missing:[],pending:[]},n=Object.create(null);e.sort((o,s)=>o.provider!==s.provider?o.provider.localeCompare(s.provider):o.prefix!==s.prefix?o.prefix.localeCompare(s.prefix):o.name.localeCompare(s.name));let r={provider:"",prefix:"",name:""};return e.forEach(o=>{if(r.name===o.name&&r.prefix===o.prefix&&r.provider===o.provider)return;r=o;const s=o.provider,i=o.prefix,a=o.name,c=n[s]||(n[s]=Object.create(null)),u=c[i]||(c[i]=tn(s,i));let l;a in u.icons?l=t.loaded:i===""||u.missing.has(a)?l=t.missing:l=t.pending;const f={provider:s,prefix:i,name:a};l.push(f)}),t}function of(e,t){e.forEach(n=>{const r=n.loaderCallbacks;r&&(n.loaderCallbacks=r.filter(o=>o.id!==t))})}function yw(e){e.pendingCallbacksFlag||(e.pendingCallbacksFlag=!0,setTimeout(()=>{e.pendingCallbacksFlag=!1;const t=e.loaderCallbacks?e.loaderCallbacks.slice(0):[];if(!t.length)return;let n=!1;const r=e.provider,o=e.prefix;t.forEach(s=>{const i=s.icons,a=i.pending.length;i.pending=i.pending.filter(c=>{if(c.prefix!==o)return!0;const u=c.name;if(e.icons[u])i.loaded.push({provider:r,prefix:o,name:u});else if(e.missing.has(u))i.missing.push({provider:r,prefix:o,name:u});else return n=!0,!0;return!1}),i.pending.length!==a&&(n||of([e],s.id),s.callback(i.loaded.slice(0),i.missing.slice(0),i.pending.slice(0),s.abort))})}))}let _w=0;function vw(e,t,n){const r=_w++,o=of.bind(null,n,r);if(!t.pending.length)return o;const s={id:r,icons:t,callback:e,abort:o};return n.forEach(i=>{(i.loaderCallbacks||(i.loaderCallbacks=[])).push(s)}),o}function bw(e,t=!0,n=!1){const r=[];return e.forEach(o=>{const s=typeof o=="string"?vo(o,t,n):o;s&&r.push(s)}),r}var ww={resources:[],index:0,timeout:2e3,rotate:750,random:!1,dataAfterTimeout:!1};function Ew(e,t,n,r){const o=e.resources.length,s=e.random?Math.floor(Math.random()*o):e.index;let i;if(e.random){let C=e.resources.slice(0);for(i=[];C.length>1;){const A=Math.floor(Math.random()*C.length);i.push(C[A]),C=C.slice(0,A).concat(C.slice(A+1))}i=i.concat(C)}else i=e.resources.slice(s).concat(e.resources.slice(0,s));const a=Date.now();let c="pending",u=0,l,f=null,d=[],h=[];typeof r=="function"&&h.push(r);function m(){f&&(clearTimeout(f),f=null)}function y(){c==="pending"&&(c="aborted"),m(),d.forEach(C=>{C.status==="pending"&&(C.status="aborted")}),d=[]}function b(C,A){A&&(h=[]),typeof C=="function"&&h.push(C)}function E(){return{startTime:a,payload:t,status:c,queriesSent:u,queriesPending:d.length,subscribe:b,abort:y}}function v(){c="failed",h.forEach(C=>{C(void 0,l)})}function p(){d.forEach(C=>{C.status==="pending"&&(C.status="aborted")}),d=[]}function w(C,A,x){const D=A!=="success";switch(d=d.filter(O=>O!==C),c){case"pending":break;case"failed":if(D||!e.dataAfterTimeout)return;break;default:return}if(A==="abort"){l=x,v();return}if(D){l=x,d.length||(i.length?P():v());return}if(m(),p(),!e.random){const O=e.resources.indexOf(C.resource);O!==-1&&O!==e.index&&(e.index=O)}c="completed",h.forEach(O=>{O(x)})}function P(){if(c!=="pending")return;m();const C=i.shift();if(C===void 0){if(d.length){f=setTimeout(()=>{m(),c==="pending"&&(p(),v())},e.timeout);return}v();return}const A={status:"pending",resource:C,callback:(x,D)=>{w(A,x,D)}};d.push(A),u++,f=setTimeout(P,e.rotate),n(C,t,A.callback)}return setTimeout(P),E}function sf(e){const t={...ww,...e};let n=[];function r(){n=n.filter(a=>a().status==="pending")}function o(a,c,u){const l=Ew(t,a,c,(f,d)=>{r(),u&&u(f,d)});return n.push(l),l}function s(a){return n.find(c=>a(c))||null}return{query:o,find:s,setIndex:a=>{t.index=a},getIndex:()=>t.index,cleanup:r}}function yc(){}const Bo=Object.create(null);function Cw(e){if(!Bo[e]){const t=ki(e);if(!t)return;const n=sf(t),r={config:t,redundancy:n};Bo[e]=r}return Bo[e]}function Pw(e,t,n){let r,o;if(typeof e=="string"){const s=Rs(e);if(!s)return n(void 0,424),yc;o=s.send;const i=Cw(e);i&&(r=i.redundancy)}else{const s=Ti(e);if(s){r=sf(s);const i=e.resources?e.resources[0]:"",a=Rs(i);a&&(o=a.send)}}return!r||!o?(n(void 0,424),yc):r.query(t,o,n)().abort}const _c="iconify2",ar="iconify",af=ar+"-count",vc=ar+"-version",cf=36e5,Tw=168;function As(e,t){try{return e.getItem(t)}catch{}}function Ri(e,t,n){try{return e.setItem(t,n),!0}catch{}}function bc(e,t){try{e.removeItem(t)}catch{}}function xs(e,t){return Ri(e,af,t.toString())}function Ls(e){return parseInt(As(e,af))||0}const bo={local:!0,session:!0},lf={local:new Set,session:new Set};let Ai=!1;function Sw(e){Ai=e}let Ar=typeof window>"u"?{}:window;function uf(e){const t=e+"Storage";try{if(Ar&&Ar[t]&&typeof Ar[t].length=="number")return Ar[t]}catch{}bo[e]=!1}function ff(e,t){const n=uf(e);if(!n)return;const r=As(n,vc);if(r!==_c){if(r){const a=Ls(n);for(let c=0;c{const c=ar+a.toString(),u=As(n,c);if(typeof u=="string"){try{const l=JSON.parse(u);if(typeof l=="object"&&typeof l.cached=="number"&&l.cached>o&&typeof l.provider=="string"&&typeof l.data=="object"&&typeof l.data.prefix=="string"&&t(l,a))return!0}catch{}bc(n,c)}};let i=Ls(n);for(let a=i-1;a>=0;a--)s(a)||(a===i-1?(i--,xs(n,i)):lf[e].add(a))}function df(){if(!Ai){Sw(!0);for(const e in bo)ff(e,t=>{const n=t.data,r=t.provider,o=n.prefix,s=tn(r,o);if(!Pi(s,n).length)return!1;const i=n.lastModified||-1;return s.lastModifiedCached=s.lastModifiedCached?Math.min(s.lastModifiedCached,i):i,!0})}}function kw(e,t){const n=e.lastModifiedCached;if(n&&n>=t)return n===t;if(e.lastModifiedCached=t,n)for(const r in bo)ff(r,o=>{const s=o.data;return o.provider!==e.provider||s.prefix!==e.prefix||s.lastModified===t});return!0}function Rw(e,t){Ai||df();function n(r){let o;if(!bo[r]||!(o=uf(r)))return;const s=lf[r];let i;if(s.size)s.delete(i=Array.from(s).shift());else if(i=Ls(o),!xs(o,i+1))return;const a={cached:Math.floor(Date.now()/cf),provider:e.provider,data:t};return Ri(o,ar+i.toString(),JSON.stringify(a))}t.lastModified&&!kw(e,t.lastModified)||Object.keys(t.icons).length&&(t.not_found&&(t=Object.assign({},t),delete t.not_found),n("local")||n("session"))}function wc(){}function Aw(e){e.iconsLoaderFlag||(e.iconsLoaderFlag=!0,setTimeout(()=>{e.iconsLoaderFlag=!1,yw(e)}))}function xw(e,t){e.iconsToLoad?e.iconsToLoad=e.iconsToLoad.concat(t).sort():e.iconsToLoad=t,e.iconsQueueFlag||(e.iconsQueueFlag=!0,setTimeout(()=>{e.iconsQueueFlag=!1;const{provider:n,prefix:r}=e,o=e.iconsToLoad;delete e.iconsToLoad;let s;if(!o||!(s=Rs(n)))return;s.prepare(n,r,o).forEach(a=>{Pw(n,a,c=>{if(typeof c!="object")a.icons.forEach(u=>{e.missing.add(u)});else try{const u=Pi(e,c);if(!u.length)return;const l=e.pendingIcons;l&&u.forEach(f=>{l.delete(f)}),Rw(e,c)}catch(u){console.error(u)}Aw(e)})})}))}const Lw=(e,t)=>{const n=bw(e,!0,rf()),r=gw(n);if(!r.pending.length){let c=!0;return t&&setTimeout(()=>{c&&t(r.loaded,r.missing,r.pending,wc)}),()=>{c=!1}}const o=Object.create(null),s=[];let i,a;return r.pending.forEach(c=>{const{provider:u,prefix:l}=c;if(l===a&&u===i)return;i=u,a=l,s.push(tn(u,l));const f=o[u]||(o[u]=Object.create(null));f[l]||(f[l]=[])}),r.pending.forEach(c=>{const{provider:u,prefix:l,name:f}=c,d=tn(u,l),h=d.pendingIcons||(d.pendingIcons=new Set);h.has(f)||(h.add(f),o[u][l].push(f))}),s.forEach(c=>{const{provider:u,prefix:l}=c;o[u][l].length&&xw(c,o[u][l])}),t?vw(t,r,s):wc},Iw=e=>new Promise((t,n)=>{const r=typeof e=="string"?vo(e,!0):e;if(!r){n(e);return}Lw([r||e],o=>{if(o.length&&r){const s=nw(r);if(s){t({...Ci,...s});return}}n(e)})});({...iw});const Ec={backgroundColor:"currentColor"},Ow={backgroundColor:"transparent"},Cc={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},Pc={webkitMask:Ec,mask:Ec,background:Ow};for(const e in Pc){const t=Pc[e];for(const n in Cc)t[e+n]=Cc[n]}const Fo={};["horizontal","vertical"].forEach(e=>{const t=e.slice(0,1)+"Flip";Fo[e+"-flip"]=t,Fo[e.slice(0,1)+"-flip"]=t,Fo[e+"Flip"]=t});rf(!0);aw("",mw);if(typeof document<"u"&&typeof window<"u"){df();const e=window;if(e.IconifyPreload!==void 0){const t=e.IconifyPreload,n="Invalid IconifyPreload syntax.";typeof t=="object"&&t!==null&&(t instanceof Array?t:[t]).forEach(r=>{try{(typeof r!="object"||r===null||r instanceof Array||typeof r.icons!="object"||typeof r.prefix!="string"||!ow(r))&&console.error(n)}catch{console.error(n)}})}if(e.IconifyProviders!==void 0){const t=e.IconifyProviders;if(typeof t=="object"&&t!==null)for(let n in t){const r="IconifyProviders["+n+"] is invalid.";try{const o=t[n];if(typeof o!="object"||!o||o.resources===void 0)continue;cw(n,o)||console.error(r)}catch{console.error(r)}}}}({...Ci});const $w=["width","height"],Mw=xe({__name:"Icon",props:{name:{type:String,required:!0},size:{type:String,default:""}},async setup(e){var m;let t,n;const r=fe(),o=mr();(m=o==null?void 0:o.nuxtIcon)!=null&&m.aliases;const s=e,i=Lt("icons",()=>({})),a=ve(!1),c=oe(()=>{var y;return(((y=o.nuxtIcon)==null?void 0:y.aliases)||{})[s.name]||s.name}),u=oe(()=>{var y;return(y=i.value)==null?void 0:y[c.value]}),l=oe(()=>r.vueApp.component(c.value)),f=oe(()=>{var b,E,v;if(!s.size&&typeof((b=o.nuxtIcon)==null?void 0:b.size)=="boolean"&&!((E=o.nuxtIcon)!=null&&E.size))return;const y=s.size||((v=o.nuxtIcon)==null?void 0:v.size)||"1em";return String(Number(y))===y?`${y}px`:y}),d=oe(()=>{var y;return((y=o==null?void 0:o.nuxtIcon)==null?void 0:y.class)??"icon"});async function h(){var y;l.value||(y=i.value)!=null&&y[c.value]||(a.value=!0,i.value[c.value]=await Iw(c.value).catch(()=>{}),a.value=!1)}return Ne(()=>c.value,h),!l.value&&([t,n]=Fd(()=>h()),t=await t,n()),(y,b)=>H(a)?(ne(),Re("span",{key:0,class:Ke(H(d)),width:H(f),height:H(f)},null,10,$w)):H(u)?(ne(),be(H(Qb),{key:1,icon:H(u),class:Ke(H(d)),width:H(f),height:H(f)},null,8,["icon","class","width","height"])):H(l)?(ne(),be(Xs(H(l)),{key:2,class:Ke(H(d)),width:H(f),height:H(f)},null,8,["class","width","height"])):(ne(),Re("span",{key:3,class:Ke(H(d)),style:Tn({fontSize:H(f),lineHeight:H(f),width:H(f),height:H(f)})},Qn(e.name),7))}}),xi=dt(Mw,[["__scopeId","data-v-734900d8"]]),Nw=Object.freeze(Object.defineProperty({__proto__:null,default:xi},Symbol.toStringTag,{value:"Module"})),Hw=xe({__name:"SocialIcons",props:{socials:{type:Object,default:()=>{}}},setup(e){const t=e,n=["twitter","facebook","instagram","youtube","github","medium"],r=oe(()=>Object.entries(t.socials).map(([s,i])=>typeof i=="object"?i:typeof i=="string"&&i&&n.includes(s)?{href:`https://${s}.com/${i}`,icon:`uil:${s}`,label:i}:null).filter(Boolean)),o=s=>{const i=["noopener","noreferrer"];return s.rel&&i.push(s.rel),i.join(" ")};return(s,i)=>{const a=xi,c=_o;return ne(!0),Re(we,null,vl(H(r),u=>(ne(),be(c,{key:u.label,rel:o(u),title:u.label,"aria-label":u.label,href:u.href,target:"_blank"},{default:Ye(()=>[u.icon?(ne(),be(a,{key:0,name:u.icon},null,8,["name"])):Qt("",!0)]),_:2},1032,["rel","title","aria-label","href"]))),128)}}}),hf=dt(Hw,[["__scopeId","data-v-3967aaca"]]),jw=Object.freeze(Object.defineProperty({__proto__:null,default:hf},Symbol.toStringTag,{value:"Module"})),Dw=xe({name:"ClientOnly",inheritAttrs:!1,props:["fallback","placeholder","placeholderTag","fallbackTag"],setup(e,{slots:t,attrs:n}){const r=ve(!1);return kn(()=>{r.value=!0}),o=>{var c;if(r.value)return(c=t.default)==null?void 0:c.call(t);const s=t.fallback||t.placeholder;if(s)return s();const i=o.fallback||o.placeholder||"",a=o.fallbackTag||o.placeholderTag||"span";return Re(a,n,i)}}}),Bw={name:Q0,props:{placeholder:String,tag:{type:String,default:"span"}}};function Fw(e,t,n,r,o,s){const i=Dw;return ne(),be(i,{placeholder:n.placeholder,"placeholder-tag":n.tag},{default:Ye(()=>[ei(e.$slots,"default")]),_:3},8,["placeholder","placeholder-tag"])}const Vw=dt(Bw,[["render",Fw]]),zw=()=>Lt("color-mode").value,Li=e=>(qs("data-v-7ddac757"),e=e(),Gs(),e),Uw=Li(()=>Se("span",{class:"sr-only"},"Dark mode",-1)),Kw=Li(()=>Se("span",{class:"sr-only"},"Light mode",-1)),Ww=Li(()=>Se("span",{class:"sr-only"},"System mode",-1)),qw=xe({__name:"ColorModeSwitch",setup(e){const t=zw(),n=()=>{const r=["system","light","dark"],s=(r.indexOf(t.preference)+1)%r.length;t.preference=r[s]};return(r,o)=>{const s=xi,i=Vw;return ne(),Re("button",{"aria-label":"Color Mode",onClick:n},[se(i,null,{default:Ye(()=>[H(t).preference==="dark"?(ne(),Re(we,{key:0},[se(s,{name:"uil:moon"}),Uw],64)):H(t).preference==="light"?(ne(),Re(we,{key:1},[se(s,{name:"uil:sun"}),Kw],64)):(ne(),Re(we,{key:2},[se(s,{name:"uil:desktop"}),Ww],64))]),_:1})])}}}),pf=dt(qw,[["__scopeId","data-v-7ddac757"]]),Gw=Object.freeze(Object.defineProperty({__proto__:null,default:pf},Symbol.toStringTag,{value:"Module"})),Qw={key:1,class:"navigation"},Jw={key:2,class:"message"},Xw={class:"icons"},Yw={key:0,class:"social"},Zw={class:"color-mode-switch"},eE=xe({__name:"AppFooter",setup(e){const t=mr().alpine;return(n,r)=>{var c,u,l;const o=_o,s=wi,i=hf,a=pf;return ne(),Re("footer",{class:Ke([H(t).footer.alignment])},[(u=(c=H(t).footer)==null?void 0:c.credits)!=null&&u.enabled?(ne(),be(o,{key:0,class:"credits",to:H(t).footer.credits.repository},{default:Ye(()=>{var f,d;return[dr(Qn((d=(f=H(t).footer)==null?void 0:f.credits)==null?void 0:d.text),1)]}),_:1},8,["to"])):Qt("",!0),H(t).footer.navigation?(ne(),Re("div",Qw,[se(s)])):Qt("",!0),(l=H(t).footer)!=null&&l.message?(ne(),Re("p",Jw,Qn(H(t).footer.message),1)):Qt("",!0),Se("div",Xw,[H(t).socials&&Object.entries(H(t).socials)?(ne(),Re("div",Yw,[se(i,{socials:H(t).socials},null,8,["socials"])])):Qt("",!0),Se("div",Zw,[se(a)])])],2)}}}),mf=dt(eE,[["__scopeId","data-v-ae2d2e60"]]),tE=Object.freeze(Object.defineProperty({__proto__:null,default:mf},Symbol.toStringTag,{value:"Module"})),nE=xe({__name:"Container",props:{as:{type:String,required:!1,default:"div"},padded:{required:!1,type:[Boolean,Object],default:!0},fluid:{required:!1,type:[Boolean,Object],default:!1}},setup(e){const t=e,n={padded:{true:{px:"{elements.container.padding.mobile}","@xs":{px:"{elements.container.padding.xs}"},"@sm":{px:"{elements.container.padding.sm}"},"@md":{px:"{elements.container.padding.md}"}}},fluid:{true:{},false:{maxWidth:"{elements.container.maxWidth}"}}},{$pinceau:r}=O0(t,n,void 0);return(o,s)=>(ne(),be(Xs(e.as),{class:Ke(["container",[H(r)]])},{default:Ye(()=>[ei(o.$slots,"default",{},void 0,!0)]),_:3},8,["class"]))}}),gf=dt(nE,[["__scopeId","data-v-ff27660e"]]),rE=Object.freeze(Object.defineProperty({__proto__:null,default:gf},Symbol.toStringTag,{value:"Module"})),oE=(e,t=Dt())=>{const n=H(e),r=je();Ne(()=>H(e),(s=n)=>{if(!t.path||!s)return;const i=Object.assign({},(s==null?void 0:s.head)||{});i.meta=[...i.meta||[]],i.link=[...i.link||[]];const a=i.title||(s==null?void 0:s.title);a&&(i.title=a),r.public.content.host;const c=(i==null?void 0:i.description)||(s==null?void 0:s.description);c&&i.meta.filter(u=>u.name==="description").length===0&&i.meta.push({name:"description",content:c}),i!=null&&i.image||(s==null||s.image),Bt(()=>Wu(i))},{immediate:!0})},sE=xe({__name:"AppLayout",props:{padded:{type:Boolean,default:!0}},setup(e){const t=mr().alpine;return Wu({meta:[{name:"twitter:card",content:"summary_large_image"}]}),oE(t),(n,r)=>{const o=qu,s=Gu,i=mf,a=gf;return ne(),be(a,{class:"app-layout"},{default:Ye(()=>[se(o),H(t).header?(ne(),be(s,{key:0})):Qt("",!0),ei(n.$slots,"default",{},void 0,!0),H(t).footer?(ne(),be(i,{key:1})):Qt("",!0)]),_:3})}}}),yf=dt(sE,[["__scopeId","data-v-0359c710"]]),iE=Object.freeze(Object.defineProperty({__proto__:null,default:yf},Symbol.toStringTag,{value:"Module"})),aE={};function cE(e,t){const n=ib,r=yf;return ne(),be(r,null,{default:Ye(()=>[se(n)]),_:1})}const lE=dt(aE,[["render",cE]]),uE={__name:"nuxt-error-page",props:{error:Object},setup(e){const n=e.error;(n.stack||"").split(` +`).splice(1).map(f=>({text:f.replace("webpack:/","").replace(".vue",".js").trim(),internal:f.includes("node_modules")&&!f.includes(".cache")||f.includes("internal")||f.includes("new Promise")})).map(f=>`${f.text}`).join(` +`);const r=Number(n.statusCode||500),o=r===404,s=n.statusMessage??(o?"Page Not Found":"Internal Server Error"),i=n.message||n.toString(),a=void 0,l=o?$(()=>L(()=>import("./error-404.OnErpc_e.js"),__vite__mapDeps([136,137]),import.meta.url).then(f=>f.default||f)):$(()=>L(()=>import("./error-500.bnmY8Isf.js"),__vite__mapDeps([138,139]),import.meta.url).then(f=>f.default||f));return(f,d)=>(ne(),be(H(l),Af(Nl({statusCode:H(r),statusMessage:H(s),description:H(i),stack:H(a)})),null,16))}},Tc={__name:"nuxt-root",setup(e){const t=()=>null,n=fe(),r=n.deferHydration(),o=!1;yn(po,Dt()),n.hooks.callHookWith(a=>a.map(c=>c()),"vue:setup");const s=mo();_l((a,c,u)=>{if(n.hooks.callHook("vue:error",a,c,u).catch(l=>console.error("[nuxt] Error in `vue:error` hook",l)),ig(a)&&(a.fatal||a.unhandled))return n.runWithContext(()=>fn(a)),!1});const i=!1;return(a,c)=>(ne(),be(cl,{onResolve:H(r)},{default:Ye(()=>[H(s)?(ne(),be(H(uE),{key:0,error:H(s)},null,8,["error"])):H(i)?(ne(),be(H(t),{key:1,context:H(i)},null,8,["context"])):H(o)?(ne(),be(Xs(H(o)),{key:2})):(ne(),be(H(lE),{key:3}))]),_:1},8,["onResolve"]))}};let Sc;{let e;Sc=async function(){var i,a;if(e)return e;const r=!!((i=window.__NUXT__)!=null&&i.serverRendered||((a=document.getElementById("__NUXT_DATA__"))==null?void 0:a.dataset.ssr)==="true")?Uh(Tc):zh(Tc),o=qp({vueApp:r});async function s(c){await o.callHook("app:error",c),o.payload.error=o.payload.error||c}r.config.errorHandler=s;try{await Qp(o,ob)}catch(c){s(c)}try{await o.hooks.callHook("app:created",r),await o.hooks.callHook("app:beforeMount",r),r.mount(yg),await o.hooks.callHook("app:mounted",r),await Bt()}catch(c){s(c)}return r.config.errorHandler===s&&(r.config.errorHandler=void 0),r},e=Sc().catch(t=>{throw console.error("Error while mounting app:",t),t})}export{Qr as $,un as A,ae as B,Wu as C,dr as D,_o as E,we as F,Oe as G,vE as H,oe as I,Nn as J,yE as K,xy as L,H as M,$e as N,ch as O,po as P,Bt as Q,yn as R,cl as S,oi as T,og as U,Nv as V,oE as W,be as X,Fd as Y,vl as Z,L as _,Zs as a,_i as a0,bb as a1,Tn as a2,rt as a3,O0 as a4,ei as a5,xi as a6,gi as a7,_E as a8,$t as a9,gE as aA,nc as aB,TE as aC,pt as aD,bE as aE,PE as aF,wE as aG,EE as aH,CE as aI,on as aJ,o0 as aK,Zc as aa,$d as ab,Ne as ac,Tv as ad,fi as ae,Ft as af,hE as ag,gd as ah,$v as ai,_n as aj,Es as ak,nr as al,qc as am,Hs as an,ur as ao,ai as ap,kE as aq,dE as ar,pE as as,zw as at,Ae as au,SE as av,fE as aw,Zr as ax,i0 as ay,mE as az,ne as b,Re as c,xe as d,Se as e,Qt as f,se as g,$r as h,Gs as i,fe as j,dt as k,je as l,Lt as m,Ke as n,kn as o,qs as p,Mr as q,ve as r,Dt as s,Qn as t,st as u,eu as v,Ye as w,mr as x,Un as y,zh as z}; diff --git a/_nuxt/error-404.OnErpc_e.js b/_nuxt/error-404.OnErpc_e.js new file mode 100644 index 000000000..c557fa1b2 --- /dev/null +++ b/_nuxt/error-404.OnErpc_e.js @@ -0,0 +1 @@ +import{k as a,C as n,b as r,c as l,e,t as s,g as d,w as c,D as p,E as f,p as h,i as m}from"./entry.uIHGwm26.js";const x=t=>(h("data-v-daf67797"),t=t(),m(),t),g={class:"font-sans antialiased bg-white dark:bg-black text-black dark:text-white grid min-h-screen place-content-center overflow-hidden"},u=x(()=>e("div",{class:"fixed left-0 right-0 spotlight z-10"},null,-1)),b={class:"max-w-520px text-center z-20"},w=["textContent"],_=["textContent"],y={class:"w-full flex items-center justify-center"},S={__name:"error-404",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},statusCode:{type:Number,default:404},statusMessage:{type:String,default:"Not Found"},description:{type:String,default:"Sorry, the page you are looking for could not be found."},backHome:{type:String,default:"Go back home"}},setup(t){const o=t;return n({title:`${o.statusCode} - ${o.statusMessage} | ${o.appName}`,script:[],style:[{children:'*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}'}]}),(k,N)=>{const i=f;return r(),l("div",g,[u,e("div",b,[e("h1",{class:"text-8xl sm:text-10xl font-medium mb-8",textContent:s(t.statusCode)},null,8,w),e("p",{class:"text-xl px-8 sm:px-0 sm:text-4xl font-light mb-16 leading-tight",textContent:s(t.description)},null,8,_),e("div",y,[d(i,{to:"/",class:"gradient-border text-md sm:text-xl py-2 px-4 sm:py-3 sm:px-6 cursor-pointer"},{default:c(()=>[p(s(t.backHome),1)]),_:1})])])])}}},v=a(S,[["__scopeId","data-v-daf67797"]]);export{v as default}; diff --git a/_nuxt/error-404.vdUK6ycY.css b/_nuxt/error-404.vdUK6ycY.css new file mode 100644 index 000000000..9688343f6 --- /dev/null +++ b/_nuxt/error-404.vdUK6ycY.css @@ -0,0 +1 @@ +.spotlight[data-v-daf67797]{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);bottom:-30vh;filter:blur(20vh);height:40vh}.gradient-border[data-v-daf67797]{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-radius:.5rem;position:relative}@media (prefers-color-scheme:light){.gradient-border[data-v-daf67797]{background-color:#ffffff4d}.gradient-border[data-v-daf67797]:before{background:linear-gradient(90deg,#e2e2e2,#e2e2e2 25%,#00dc82,#36e4da 75%,#0047e1)}}@media (prefers-color-scheme:dark){html:not(.light) .gradient-border[data-v-daf67797]{background-color:#1414144d}html:not(.light) .gradient-border[data-v-daf67797]:before{background:linear-gradient(90deg,#303030,#303030 25%,#00dc82,#36e4da 75%,#0047e1)}}html.dark .gradient-border[data-v-daf67797]{background-color:#1414144d}html.dark .gradient-border[data-v-daf67797]:before{background:linear-gradient(90deg,#303030,#303030 25%,#00dc82,#36e4da 75%,#0047e1)}.gradient-border[data-v-daf67797]:before{background-size:400% auto;border-radius:.5rem;bottom:0;content:"";left:0;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:.5;padding:2px;position:absolute;right:0;top:0;transition:background-position .3s ease-in-out,opacity .2s ease-in-out;width:100%}.gradient-border[data-v-daf67797]:hover:before{background-position:-50% 0;opacity:1}.bg-white[data-v-daf67797]{--tw-bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.cursor-pointer[data-v-daf67797]{cursor:pointer}.flex[data-v-daf67797]{display:flex}.grid[data-v-daf67797]{display:grid}.place-content-center[data-v-daf67797]{place-content:center}.items-center[data-v-daf67797]{align-items:center}.justify-center[data-v-daf67797]{justify-content:center}.font-sans[data-v-daf67797]{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-medium[data-v-daf67797]{font-weight:500}.font-light[data-v-daf67797]{font-weight:300}.text-8xl[data-v-daf67797]{font-size:6rem;line-height:1}.text-xl[data-v-daf67797]{font-size:1.25rem;line-height:1.75rem}.leading-tight[data-v-daf67797]{line-height:1.25}.mb-8[data-v-daf67797]{margin-bottom:2rem}.mb-16[data-v-daf67797]{margin-bottom:4rem}.max-w-520px[data-v-daf67797]{max-width:520px}.min-h-screen[data-v-daf67797]{min-height:100vh}.overflow-hidden[data-v-daf67797]{overflow:hidden}.px-8[data-v-daf67797]{padding-left:2rem;padding-right:2rem}.py-2[data-v-daf67797]{padding-bottom:.5rem;padding-top:.5rem}.px-4[data-v-daf67797]{padding-left:1rem;padding-right:1rem}.fixed[data-v-daf67797]{position:fixed}.left-0[data-v-daf67797]{left:0}.right-0[data-v-daf67797]{right:0}.text-center[data-v-daf67797]{text-align:center}.text-black[data-v-daf67797]{--tw-text-opacity:1;color:#000;color:rgba(0,0,0,var(--tw-text-opacity))}.antialiased[data-v-daf67797]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.w-full[data-v-daf67797]{width:100%}.z-10[data-v-daf67797]{z-index:10}.z-20[data-v-daf67797]{z-index:20}@media (min-width:640px){.sm\:text-4xl[data-v-daf67797]{font-size:2.25rem;line-height:2.5rem}.sm\:text-xl[data-v-daf67797]{font-size:1.25rem;line-height:1.75rem}.sm\:text-10xl[data-v-daf67797]{font-size:10rem;line-height:1}.sm\:px-0[data-v-daf67797]{padding-left:0;padding-right:0}.sm\:py-3[data-v-daf67797]{padding-bottom:.75rem;padding-top:.75rem}.sm\:px-6[data-v-daf67797]{padding-left:1.5rem;padding-right:1.5rem}}@media (prefers-color-scheme:dark){html:not(.light) .dark\:bg-black[data-v-daf67797]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html:not(.light) .dark\:text-white[data-v-daf67797]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}}html.dark .dark\:bg-black[data-v-daf67797]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html.dark .dark\:text-white[data-v-daf67797]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))} diff --git a/_nuxt/error-500.NeFAvDTs.css b/_nuxt/error-500.NeFAvDTs.css new file mode 100644 index 000000000..a0b268513 --- /dev/null +++ b/_nuxt/error-500.NeFAvDTs.css @@ -0,0 +1 @@ +.spotlight[data-v-5b0dd4e0]{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);filter:blur(20vh)}.bg-white[data-v-5b0dd4e0]{--tw-bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.grid[data-v-5b0dd4e0]{display:grid}.place-content-center[data-v-5b0dd4e0]{place-content:center}.font-sans[data-v-5b0dd4e0]{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-medium[data-v-5b0dd4e0]{font-weight:500}.font-light[data-v-5b0dd4e0]{font-weight:300}.h-1\/2[data-v-5b0dd4e0]{height:50%}.text-8xl[data-v-5b0dd4e0]{font-size:6rem;line-height:1}.text-xl[data-v-5b0dd4e0]{font-size:1.25rem;line-height:1.75rem}.leading-tight[data-v-5b0dd4e0]{line-height:1.25}.mb-8[data-v-5b0dd4e0]{margin-bottom:2rem}.mb-16[data-v-5b0dd4e0]{margin-bottom:4rem}.max-w-520px[data-v-5b0dd4e0]{max-width:520px}.min-h-screen[data-v-5b0dd4e0]{min-height:100vh}.overflow-hidden[data-v-5b0dd4e0]{overflow:hidden}.px-8[data-v-5b0dd4e0]{padding-left:2rem;padding-right:2rem}.fixed[data-v-5b0dd4e0]{position:fixed}.left-0[data-v-5b0dd4e0]{left:0}.right-0[data-v-5b0dd4e0]{right:0}.-bottom-1\/2[data-v-5b0dd4e0]{bottom:-50%}.text-center[data-v-5b0dd4e0]{text-align:center}.text-black[data-v-5b0dd4e0]{--tw-text-opacity:1;color:#000;color:rgba(0,0,0,var(--tw-text-opacity))}.antialiased[data-v-5b0dd4e0]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:640px){.sm\:text-4xl[data-v-5b0dd4e0]{font-size:2.25rem;line-height:2.5rem}.sm\:text-10xl[data-v-5b0dd4e0]{font-size:10rem;line-height:1}.sm\:px-0[data-v-5b0dd4e0]{padding-left:0;padding-right:0}}@media (prefers-color-scheme:dark){html:not(.light) .dark\:bg-black[data-v-5b0dd4e0]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html:not(.light) .dark\:text-white[data-v-5b0dd4e0]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}}html.dark .dark\:bg-black[data-v-5b0dd4e0]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html.dark .dark\:text-white[data-v-5b0dd4e0]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))} diff --git a/_nuxt/error-500.bnmY8Isf.js b/_nuxt/error-500.bnmY8Isf.js new file mode 100644 index 000000000..03f47d548 --- /dev/null +++ b/_nuxt/error-500.bnmY8Isf.js @@ -0,0 +1 @@ +import{k as i,C as a,b as r,c as n,e,t as s,p as l,i as d}from"./entry.uIHGwm26.js";const c=t=>(l("data-v-5b0dd4e0"),t=t(),d(),t),p={class:"font-sans antialiased bg-white dark:bg-black text-black dark:text-white grid min-h-screen place-content-center overflow-hidden"},h=c(()=>e("div",{class:"fixed -bottom-1/2 left-0 right-0 h-1/2 spotlight"},null,-1)),f={class:"max-w-520px text-center"},g=["textContent"],m=["textContent"],b={__name:"error-500",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},statusCode:{type:Number,default:500},statusMessage:{type:String,default:"Server error"},description:{type:String,default:"This page is temporarily unavailable."}},setup(t){const o=t;return a({title:`${o.statusCode} - ${o.statusMessage} | ${o.appName}`,script:[],style:[{children:'*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}'}]}),(x,u)=>(r(),n("div",p,[h,e("div",f,[e("h1",{class:"text-8xl sm:text-10xl font-medium mb-8",textContent:s(t.statusCode)},null,8,g),e("p",{class:"text-xl px-8 sm:px-0 sm:text-4xl font-light mb-16 leading-tight",textContent:s(t.description)},null,8,m)])]))}},y=i(b,[["__scopeId","data-v-5b0dd4e0"]]);export{y as default}; diff --git a/_nuxt/index.ktinZ6MN.js b/_nuxt/index.ktinZ6MN.js new file mode 100644 index 000000000..b2a5b81f5 --- /dev/null +++ b/_nuxt/index.ktinZ6MN.js @@ -0,0 +1 @@ +const d=Object.create(null);d.open="0";d.close="1";d.ping="2";d.pong="3";d.message="4";d.upgrade="5";d.noop="6";const O=Object.create(null);Object.keys(d).forEach(s=>{O[d[s]]=s});const L={type:"error",data:"parser error"},te=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",se=typeof ArrayBuffer=="function",ne=s=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(s):s&&s.buffer instanceof ArrayBuffer,V=({type:s,data:e},t,n)=>te&&e instanceof Blob?t?n(e):$(e,n):se&&(e instanceof ArrayBuffer||ne(e))?t?n(e):$(new Blob([e]),n):n(d[s]+(e||"")),$=(s,e)=>{const t=new FileReader;return t.onload=function(){const n=t.result.split(",")[1];e("b"+(n||""))},t.readAsDataURL(s)};function Y(s){return s instanceof Uint8Array?s:s instanceof ArrayBuffer?new Uint8Array(s):new Uint8Array(s.buffer,s.byteOffset,s.byteLength)}let S;function ye(s,e){if(te&&s.data instanceof Blob)return s.data.arrayBuffer().then(Y).then(e);if(se&&(s.data instanceof ArrayBuffer||ne(s.data)))return e(Y(s.data));V(s,!1,t=>{S||(S=new TextEncoder),e(S.encode(t))})}const z="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",E=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let s=0;s{let e=s.length*.75,t=s.length,n,i=0,r,o,h,a;s[s.length-1]==="="&&(e--,s[s.length-2]==="="&&e--);const g=new ArrayBuffer(e),y=new Uint8Array(g);for(n=0;n>4,y[i++]=(o&15)<<4|h>>2,y[i++]=(h&3)<<6|a&63;return g},me=typeof ArrayBuffer=="function",F=(s,e)=>{if(typeof s!="string")return{type:"message",data:ie(s,e)};const t=s.charAt(0);return t==="b"?{type:"message",data:be(s.substring(1),e)}:O[t]?s.length>1?{type:O[t],data:s.substring(1)}:{type:O[t]}:L},be=(s,e)=>{if(me){const t=ge(s);return ie(t,e)}else return{base64:!0,data:s}},ie=(s,e)=>{switch(e){case"blob":return s instanceof Blob?s:new Blob([s]);case"arraybuffer":default:return s instanceof ArrayBuffer?s:s.buffer}},re="",we=(s,e)=>{const t=s.length,n=new Array(t);let i=0;s.forEach((r,o)=>{V(r,!1,h=>{n[o]=h,++i===t&&e(n.join(re))})})},ve=(s,e)=>{const t=s.split(re),n=[];for(let i=0;i{const n=t.length;let i;if(n<126)i=new Uint8Array(1),new DataView(i.buffer).setUint8(0,n);else if(n<65536){i=new Uint8Array(3);const r=new DataView(i.buffer);r.setUint8(0,126),r.setUint16(1,n)}else{i=new Uint8Array(9);const r=new DataView(i.buffer);r.setUint8(0,127),r.setBigUint64(1,BigInt(n))}s.data&&typeof s.data!="string"&&(i[0]|=128),e.enqueue(i),e.enqueue(t)})}})}let x;function k(s){return s.reduce((e,t)=>e+t.length,0)}function A(s,e){if(s[0].length===e)return s.shift();const t=new Uint8Array(e);let n=0;for(let i=0;iMath.pow(2,21)-1){h.enqueue(L);break}i=y*Math.pow(2,32)+g.getUint32(4),n=3}else{if(k(t)s){h.enqueue(L);break}}}})}const oe=4;function u(s){if(s)return ke(s)}function ke(s){for(var e in u.prototype)s[e]=u.prototype[e];return s}u.prototype.on=u.prototype.addEventListener=function(s,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+s]=this._callbacks["$"+s]||[]).push(e),this};u.prototype.once=function(s,e){function t(){this.off(s,t),e.apply(this,arguments)}return t.fn=e,this.on(s,t),this};u.prototype.off=u.prototype.removeListener=u.prototype.removeAllListeners=u.prototype.removeEventListener=function(s,e){if(this._callbacks=this._callbacks||{},arguments.length==0)return this._callbacks={},this;var t=this._callbacks["$"+s];if(!t)return this;if(arguments.length==1)return delete this._callbacks["$"+s],this;for(var n,i=0;i(s.hasOwnProperty(n)&&(t[n]=s[n]),t),{})}const Ae=f.setTimeout,Te=f.clearTimeout;function B(s,e){e.useNativeTimers?(s.setTimeoutFn=Ae.bind(f),s.clearTimeoutFn=Te.bind(f)):(s.setTimeoutFn=f.setTimeout.bind(f),s.clearTimeoutFn=f.clearTimeout.bind(f))}const Re=1.33;function Oe(s){return typeof s=="string"?Ce(s):Math.ceil((s.byteLength||s.size)*Re)}function Ce(s){let e=0,t=0;for(let n=0,i=s.length;n=57344?t+=3:(n++,t+=4);return t}function Be(s){let e="";for(let t in s)s.hasOwnProperty(t)&&(e.length&&(e+="&"),e+=encodeURIComponent(t)+"="+encodeURIComponent(s[t]));return e}function Se(s){let e={},t=s.split("&");for(let n=0,i=t.length;n0);return e}function he(){const s=Q(+new Date);return s!==X?(J=0,X=s):s+"."+Q(J++)}for(;T{this.readyState="paused",e()};if(this.polling||!this.writable){let n=0;this.polling&&(n++,this.once("pollComplete",function(){--n||t()})),this.writable||(n++,this.once("drain",function(){--n||t()}))}else t()}poll(){this.polling=!0,this.doPoll(),this.emitReserved("poll")}onData(e){const t=n=>{if(this.readyState==="opening"&&n.type==="open"&&this.onOpen(),n.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(n)};ve(e,this.socket.binaryType).forEach(t),this.readyState!=="closed"&&(this.polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this.poll())}doClose(){const e=()=>{this.write([{type:"close"}])};this.readyState==="open"?e():this.once("open",e)}write(e){this.writable=!1,we(e,t=>{this.doWrite(t,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){const e=this.opts.secure?"https":"http",t=this.query||{};return this.opts.timestampRequests!==!1&&(t[this.opts.timestampParam]=he()),!this.supportsBinary&&!t.sid&&(t.b64=1),this.createUri(e,t)}request(e={}){return Object.assign(e,{xd:this.xd,cookieJar:this.cookieJar},this.opts),new p(this.uri(),e)}doWrite(e,t){const n=this.request({method:"POST",data:e});n.on("success",t),n.on("error",(i,r)=>{this.onError("xhr post error",i,r)})}doPoll(){const e=this.request();e.on("data",this.onData.bind(this)),e.on("error",(t,n)=>{this.onError("xhr poll error",t,n)}),this.pollXhr=e}}class p extends u{constructor(e,t){super(),B(this,t),this.opts=t,this.method=t.method||"GET",this.uri=e,this.data=t.data!==void 0?t.data:null,this.create()}create(){var e;const t=ce(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");t.xdomain=!!this.opts.xd;const n=this.xhr=new fe(t);try{n.open(this.method,this.uri,!0);try{if(this.opts.extraHeaders){n.setDisableHeaderCheck&&n.setDisableHeaderCheck(!0);for(let i in this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(i)&&n.setRequestHeader(i,this.opts.extraHeaders[i])}}catch{}if(this.method==="POST")try{n.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{n.setRequestHeader("Accept","*/*")}catch{}(e=this.opts.cookieJar)===null||e===void 0||e.addCookies(n),"withCredentials"in n&&(n.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(n.timeout=this.opts.requestTimeout),n.onreadystatechange=()=>{var i;n.readyState===3&&((i=this.opts.cookieJar)===null||i===void 0||i.parseCookies(n)),n.readyState===4&&(n.status===200||n.status===1223?this.onLoad():this.setTimeoutFn(()=>{this.onError(typeof n.status=="number"?n.status:0)},0))},n.send(this.data)}catch(i){this.setTimeoutFn(()=>{this.onError(i)},0);return}typeof document<"u"&&(this.index=p.requestsCount++,p.requests[this.index]=this)}onError(e){this.emitReserved("error",e,this.xhr),this.cleanup(!0)}cleanup(e){if(!(typeof this.xhr>"u"||this.xhr===null)){if(this.xhr.onreadystatechange=Pe,e)try{this.xhr.abort()}catch{}typeof document<"u"&&delete p.requests[this.index],this.xhr=null}}onLoad(){const e=this.xhr.responseText;e!==null&&(this.emitReserved("data",e),this.emitReserved("success"),this.cleanup())}abort(){this.cleanup()}}p.requestsCount=0;p.requests={};if(typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",G);else if(typeof addEventListener=="function"){const s="onpagehide"in f?"pagehide":"unload";addEventListener(s,G,!1)}}function G(){for(let s in p.requests)p.requests.hasOwnProperty(s)&&p.requests[s].abort()}const H=typeof Promise=="function"&&typeof Promise.resolve=="function"?e=>Promise.resolve().then(e):(e,t)=>t(e,0),R=f.WebSocket||f.MozWebSocket,j=!0,Ue="arraybuffer",Z=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative";class Ie extends M{constructor(e){super(e),this.supportsBinary=!e.forceBase64}get name(){return"websocket"}doOpen(){if(!this.check())return;const e=this.uri(),t=this.opts.protocols,n=Z?{}:ce(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(n.headers=this.opts.extraHeaders);try{this.ws=j&&!Z?t?new R(e,t):new R(e):new R(e,t,n)}catch(i){return this.emitReserved("error",i)}this.ws.binaryType=this.socket.binaryType,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=e=>this.onClose({description:"websocket connection closed",context:e}),this.ws.onmessage=e=>this.onData(e.data),this.ws.onerror=e=>this.onError("websocket error",e)}write(e){this.writable=!1;for(let t=0;t{const o={};try{j&&this.ws.send(r)}catch{}i&&H(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.close(),this.ws=null)}uri(){const e=this.opts.secure?"wss":"ws",t=this.query||{};return this.opts.timestampRequests&&(t[this.opts.timestampParam]=he()),this.supportsBinary||(t.b64=1),this.createUri(e,t)}check(){return!!R}}class Ve extends M{get name(){return"webtransport"}doOpen(){typeof WebTransport=="function"&&(this.transport=new WebTransport(this.createUri("https"),this.opts.transportOptions[this.name]),this.transport.closed.then(()=>{this.onClose()}).catch(e=>{this.onError("webtransport error",e)}),this.transport.ready.then(()=>{this.transport.createBidirectionalStream().then(e=>{const t=Ee(Number.MAX_SAFE_INTEGER,this.socket.binaryType),n=e.readable.pipeThrough(t).getReader(),i=_e();i.readable.pipeTo(e.writable),this.writer=i.writable.getWriter();const r=()=>{n.read().then(({done:h,value:a})=>{h||(this.onPacket(a),r())}).catch(h=>{})};r();const o={type:"open"};this.query.sid&&(o.data=`{"sid":"${this.query.sid}"}`),this.writer.write(o).then(()=>this.onOpen())})}))}write(e){this.writable=!1;for(let t=0;t{i&&H(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){var e;(e=this.transport)===null||e===void 0||e.close()}}const Fe={websocket:Ie,webtransport:Ve,polling:De},Me=/^(?:(?![^:@\/?#]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@\/?#]*)(?::([^:@\/?#]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,He=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function q(s){const e=s,t=s.indexOf("["),n=s.indexOf("]");t!=-1&&n!=-1&&(s=s.substring(0,t)+s.substring(t,n).replace(/:/g,";")+s.substring(n,s.length));let i=Me.exec(s||""),r={},o=14;for(;o--;)r[He[o]]=i[o]||"";return t!=-1&&n!=-1&&(r.source=e,r.host=r.host.substring(1,r.host.length-1).replace(/;/g,":"),r.authority=r.authority.replace("[","").replace("]","").replace(/;/g,":"),r.ipv6uri=!0),r.pathNames=Ke(r,r.path),r.queryKey=We(r,r.query),r}function Ke(s,e){const t=/\/{2,9}/g,n=e.replace(t,"/").split("/");return(e.slice(0,1)=="/"||e.length===0)&&n.splice(0,1),e.slice(-1)=="/"&&n.splice(n.length-1,1),n}function We(s,e){const t={};return e.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(n,i,r){i&&(t[i]=r)}),t}let le=class b extends u{constructor(e,t={}){super(),this.binaryType=Ue,this.writeBuffer=[],e&&typeof e=="object"&&(t=e,e=null),e?(e=q(e),t.hostname=e.host,t.secure=e.protocol==="https"||e.protocol==="wss",t.port=e.port,e.query&&(t.query=e.query)):t.host&&(t.hostname=q(t.host).host),B(this,t),this.secure=t.secure!=null?t.secure:typeof location<"u"&&location.protocol==="https:",t.hostname&&!t.port&&(t.port=this.secure?"443":"80"),this.hostname=t.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=t.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=t.transports||["polling","websocket","webtransport"],this.writeBuffer=[],this.prevBufferLen=0,this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,addTrailingSlash:!0,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!1},t),this.opts.path=this.opts.path.replace(/\/$/,"")+(this.opts.addTrailingSlash?"/":""),typeof this.opts.query=="string"&&(this.opts.query=Se(this.opts.query)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingTimeoutTimer=null,typeof addEventListener=="function"&&(this.opts.closeOnBeforeunload&&(this.beforeunloadEventListener=()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},addEventListener("beforeunload",this.beforeunloadEventListener,!1)),this.hostname!=="localhost"&&(this.offlineEventListener=()=>{this.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",this.offlineEventListener,!1))),this.open()}createTransport(e){const t=Object.assign({},this.opts.query);t.EIO=oe,t.transport=e,this.id&&(t.sid=this.id);const n=Object.assign({},this.opts,{query:t,socket:this,hostname:this.hostname,secure:this.secure,port:this.port},this.opts.transportOptions[e]);return new Fe[e](n)}open(){let e;if(this.opts.rememberUpgrade&&b.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1)e="websocket";else if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}else e=this.transports[0];this.readyState="opening";try{e=this.createTransport(e)}catch{this.transports.shift(),this.open();return}e.open(),this.setTransport(e)}setTransport(e){this.transport&&this.transport.removeAllListeners(),this.transport=e,e.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",t=>this.onClose("transport close",t))}probe(e){let t=this.createTransport(e),n=!1;b.priorWebsocketSuccess=!1;const i=()=>{n||(t.send([{type:"ping",data:"probe"}]),t.once("packet",m=>{if(!n)if(m.type==="pong"&&m.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",t),!t)return;b.priorWebsocketSuccess=t.name==="websocket",this.transport.pause(()=>{n||this.readyState!=="closed"&&(y(),this.setTransport(t),t.send([{type:"upgrade"}]),this.emitReserved("upgrade",t),t=null,this.upgrading=!1,this.flush())})}else{const v=new Error("probe error");v.transport=t.name,this.emitReserved("upgradeError",v)}}))};function r(){n||(n=!0,y(),t.close(),t=null)}const o=m=>{const v=new Error("probe error: "+m);v.transport=t.name,r(),this.emitReserved("upgradeError",v)};function h(){o("transport closed")}function a(){o("socket closed")}function g(m){t&&m.name!==t.name&&r()}const y=()=>{t.removeListener("open",i),t.removeListener("error",o),t.removeListener("close",h),this.off("close",a),this.off("upgrading",g)};t.once("open",i),t.once("error",o),t.once("close",h),this.once("close",a),this.once("upgrading",g),this.upgrades.indexOf("webtransport")!==-1&&e!=="webtransport"?this.setTimeoutFn(()=>{n||t.open()},200):t.open()}onOpen(){if(this.readyState="open",b.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush(),this.readyState==="open"&&this.opts.upgrade){let e=0;const t=this.upgrades.length;for(;e{this.onClose("ping timeout")},this.pingInterval+this.pingTimeout),this.opts.autoUnref&&this.pingTimeoutTimer.unref()}onDrain(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const e=this.getWritablePackets();this.transport.send(e),this.prevBufferLen=e.length,this.emitReserved("flush")}}getWritablePackets(){if(!(this.maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let t=1;for(let n=0;n0&&t>this.maxPayload)return this.writeBuffer.slice(0,n);t+=2}return this.writeBuffer}write(e,t,n){return this.sendPacket("message",e,t,n),this}send(e,t,n){return this.sendPacket("message",e,t,n),this}sendPacket(e,t,n,i){if(typeof t=="function"&&(i=t,t=void 0),typeof n=="function"&&(i=n,n=null),this.readyState==="closing"||this.readyState==="closed")return;n=n||{},n.compress=n.compress!==!1;const r={type:e,data:t,options:n};this.emitReserved("packetCreate",r),this.writeBuffer.push(r),i&&this.once("flush",i),this.flush()}close(){const e=()=>{this.onClose("forced close"),this.transport.close()},t=()=>{this.off("upgrade",t),this.off("upgradeError",t),e()},n=()=>{this.once("upgrade",t),this.once("upgradeError",t)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?n():e()}):this.upgrading?n():e()),this}onError(e){b.priorWebsocketSuccess=!1,this.emitReserved("error",e),this.onClose("transport error",e)}onClose(e,t){(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")&&(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),typeof removeEventListener=="function"&&(removeEventListener("beforeunload",this.beforeunloadEventListener,!1),removeEventListener("offline",this.offlineEventListener,!1)),this.readyState="closed",this.id=null,this.emitReserved("close",e,t),this.writeBuffer=[],this.prevBufferLen=0)}filterUpgrades(e){const t=[];let n=0;const i=e.length;for(;ntypeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(s):s.buffer instanceof ArrayBuffer,pe=Object.prototype.toString,Je=typeof Blob=="function"||typeof Blob<"u"&&pe.call(Blob)==="[object BlobConstructor]",Xe=typeof File=="function"||typeof File<"u"&&pe.call(File)==="[object FileConstructor]";function K(s){return Ye&&(s instanceof ArrayBuffer||ze(s))||Je&&s instanceof Blob||Xe&&s instanceof File}function C(s,e){if(!s||typeof s!="object")return!1;if(Array.isArray(s)){for(let t=0,n=s.length;t=0&&s.num{delete this.acks[e];for(let o=0;o{this.io.clearTimeoutFn(r),t.apply(this,[null,...o])}}emitWithAck(e,...t){const n=this.flags.timeout!==void 0||this._opts.ackTimeout!==void 0;return new Promise((i,r)=>{t.push((o,h)=>n?o?r(o):i(h):i(o)),this.emit(e,...t)})}_addToQueue(e){let t;typeof e[e.length-1]=="function"&&(t=e.pop());const n={id:this._queueSeq++,tryCount:0,pending:!1,args:e,flags:Object.assign({fromQueue:!0},this.flags)};e.push((i,...r)=>n!==this._queue[0]?void 0:(i!==null?n.tryCount>this._opts.retries&&(this._queue.shift(),t&&t(i)):(this._queue.shift(),t&&t(null,...r)),n.pending=!1,this._drainQueue())),this._queue.push(n),this._drainQueue()}_drainQueue(e=!1){if(!this.connected||this._queue.length===0)return;const t=this._queue[0];t.pending&&!e||(t.pending=!0,t.tryCount++,this.flags=t.flags,this.emit.apply(this,t.args))}packet(e){e.nsp=this.nsp,this.io._packet(e)}onopen(){typeof this.auth=="function"?this.auth(e=>{this._sendConnectPacket(e)}):this._sendConnectPacket(this.auth)}_sendConnectPacket(e){this.packet({type:c.CONNECT,data:this._pid?Object.assign({pid:this._pid,offset:this._lastOffset},e):e})}onerror(e){this.connected||this.emitReserved("connect_error",e)}onclose(e,t){this.connected=!1,delete this.id,this.emitReserved("disconnect",e,t)}onpacket(e){if(e.nsp===this.nsp)switch(e.type){case c.CONNECT:e.data&&e.data.sid?this.onconnect(e.data.sid,e.data.pid):this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case c.EVENT:case c.BINARY_EVENT:this.onevent(e);break;case c.ACK:case c.BINARY_ACK:this.onack(e);break;case c.DISCONNECT:this.ondisconnect();break;case c.CONNECT_ERROR:this.destroy();const n=new Error(e.data.message);n.data=e.data.data,this.emitReserved("connect_error",n);break}}onevent(e){const t=e.data||[];e.id!=null&&t.push(this.ack(e.id)),this.connected?this.emitEvent(t):this.receiveBuffer.push(Object.freeze(t))}emitEvent(e){if(this._anyListeners&&this._anyListeners.length){const t=this._anyListeners.slice();for(const n of t)n.apply(this,e)}super.emit.apply(this,e),this._pid&&e.length&&typeof e[e.length-1]=="string"&&(this._lastOffset=e[e.length-1])}ack(e){const t=this;let n=!1;return function(...i){n||(n=!0,t.packet({type:c.ACK,id:e,data:i}))}}onack(e){const t=this.acks[e.id];typeof t=="function"&&(t.apply(this,e.data),delete this.acks[e.id])}onconnect(e,t){this.id=e,this.recovered=t&&this._pid===t,this._pid=t,this.connected=!0,this.emitBuffered(),this.emitReserved("connect"),this._drainQueue(!0)}emitBuffered(){this.receiveBuffer.forEach(e=>this.emitEvent(e)),this.receiveBuffer=[],this.sendBuffer.forEach(e=>{this.notifyOutgoingListeners(e),this.packet(e)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(e=>e()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:c.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(e){return this.flags.compress=e,this}get volatile(){return this.flags.volatile=!0,this}timeout(e){return this.flags.timeout=e,this}onAny(e){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(e),this}prependAny(e){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(e),this}offAny(e){if(!this._anyListeners)return this;if(e){const t=this._anyListeners;for(let n=0;n0&&s.jitter<=1?s.jitter:0,this.attempts=0}w.prototype.duration=function(){var s=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var e=Math.random(),t=Math.floor(e*this.jitter*s);s=Math.floor(e*10)&1?s+t:s-t}return Math.min(s,this.max)|0};w.prototype.reset=function(){this.attempts=0};w.prototype.setMin=function(s){this.ms=s};w.prototype.setMax=function(s){this.max=s};w.prototype.setJitter=function(s){this.jitter=s};class I extends u{constructor(e,t){var n;super(),this.nsps={},this.subs=[],e&&typeof e=="object"&&(t=e,e=void 0),t=t||{},t.path=t.path||"/socket.io",this.opts=t,B(this,t),this.reconnection(t.reconnection!==!1),this.reconnectionAttempts(t.reconnectionAttempts||1/0),this.reconnectionDelay(t.reconnectionDelay||1e3),this.reconnectionDelayMax(t.reconnectionDelayMax||5e3),this.randomizationFactor((n=t.randomizationFactor)!==null&&n!==void 0?n:.5),this.backoff=new w({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(t.timeout==null?2e4:t.timeout),this._readyState="closed",this.uri=e;const i=t.parser||st;this.encoder=new i.Encoder,this.decoder=new i.Decoder,this._autoConnect=t.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(e){return arguments.length?(this._reconnection=!!e,this):this._reconnection}reconnectionAttempts(e){return e===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=e,this)}reconnectionDelay(e){var t;return e===void 0?this._reconnectionDelay:(this._reconnectionDelay=e,(t=this.backoff)===null||t===void 0||t.setMin(e),this)}randomizationFactor(e){var t;return e===void 0?this._randomizationFactor:(this._randomizationFactor=e,(t=this.backoff)===null||t===void 0||t.setJitter(e),this)}reconnectionDelayMax(e){var t;return e===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=e,(t=this.backoff)===null||t===void 0||t.setMax(e),this)}timeout(e){return arguments.length?(this._timeout=e,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(e){if(~this._readyState.indexOf("open"))return this;this.engine=new le(this.uri,this.opts);const t=this.engine,n=this;this._readyState="opening",this.skipReconnect=!1;const i=l(t,"open",function(){n.onopen(),e&&e()}),r=h=>{this.cleanup(),this._readyState="closed",this.emitReserved("error",h),e?e(h):this.maybeReconnectOnOpen()},o=l(t,"error",r);if(this._timeout!==!1){const h=this._timeout,a=this.setTimeoutFn(()=>{i(),r(new Error("timeout")),t.close()},h);this.opts.autoUnref&&a.unref(),this.subs.push(()=>{this.clearTimeoutFn(a)})}return this.subs.push(i),this.subs.push(o),this}connect(e){return this.open(e)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const e=this.engine;this.subs.push(l(e,"ping",this.onping.bind(this)),l(e,"data",this.ondata.bind(this)),l(e,"error",this.onerror.bind(this)),l(e,"close",this.onclose.bind(this)),l(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(e){try{this.decoder.add(e)}catch(t){this.onclose("parse error",t)}}ondecoded(e){H(()=>{this.emitReserved("packet",e)},this.setTimeoutFn)}onerror(e){this.emitReserved("error",e)}socket(e,t){let n=this.nsps[e];return n?this._autoConnect&&!n.active&&n.connect():(n=new de(this,e,t),this.nsps[e]=n),n}_destroy(e){const t=Object.keys(this.nsps);for(const n of t)if(this.nsps[n].active)return;this._close()}_packet(e){const t=this.encoder.encode(e);for(let n=0;ne()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close"),this.engine&&this.engine.close()}disconnect(){return this._close()}onclose(e,t){this.cleanup(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",e,t),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const e=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const t=this.backoff.duration();this._reconnecting=!0;const n=this.setTimeoutFn(()=>{e.skipReconnect||(this.emitReserved("reconnect_attempt",e.backoff.attempts),!e.skipReconnect&&e.open(i=>{i?(e._reconnecting=!1,e.reconnect(),this.emitReserved("reconnect_error",i)):e.onreconnect()}))},t);this.opts.autoUnref&&n.unref(),this.subs.push(()=>{this.clearTimeoutFn(n)})}}onreconnect(){const e=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",e)}}const _={};function N(s,e){typeof s=="object"&&(e=s,s=void 0),e=e||{};const t=$e(s,e.path||"/socket.io"),n=t.source,i=t.id,r=t.path,o=_[i]&&r in _[i].nsps,h=e.forceNew||e["force new connection"]||e.multiplex===!1||o;let a;return h?a=new I(n,e):(_[i]||(_[i]=new I(n,e)),a=_[i]),t.query&&!e.query&&(e.query=t.queryKey),a.socket(t.path,e)}Object.assign(N,{Manager:I,Socket:de,io:N,connect:N});export{I as Manager,de as Socket,N as connect,N as default,N as io,Ze as protocol}; diff --git a/_nuxt/index.ocM43EYf.js b/_nuxt/index.ocM43EYf.js new file mode 100644 index 000000000..d46e96601 --- /dev/null +++ b/_nuxt/index.ocM43EYf.js @@ -0,0 +1 @@ +import{r as g,am as F,M as V,an as L,ao as M,af as N,o as B,Q as W,I as Q,ac as S}from"./entry.uIHGwm26.js";var E;const w=typeof window<"u",$=e=>typeof e<"u",D=e=>typeof e=="function",J=e=>typeof e=="string",R=()=>{};w&&((E=window==null?void 0:window.navigator)!=null&&E.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function I(e){return typeof e=="function"?e():V(e)}function U(e){return e}function A(e){return L()?(M(e),!0):!1}function j(e,t=!0){N()?B(e):t?e():W(e)}function G(e,t,n={}){const{immediate:i=!0}=n,s=g(!1);let r=null;function f(){r&&(clearTimeout(r),r=null)}function c(){s.value=!1,f()}function p(...d){f(),s.value=!0,r=setTimeout(()=>{s.value=!1,r=null,e(...d)},I(t))}return i&&(s.value=!0,w&&p()),A(c),{isPending:F(s),start:p,stop:c}}function H(e){var t;const n=I(e);return(t=n==null?void 0:n.$el)!=null?t:n}const K=w?window:void 0,q=w?window.navigator:void 0;function z(...e){let t,n,i,s;if(J(e[0])||Array.isArray(e[0])?([n,i,s]=e,t=K):[t,n,i,s]=e,!t)return R;Array.isArray(n)||(n=[n]),Array.isArray(i)||(i=[i]);const r=[],f=()=>{r.forEach(l=>l()),r.length=0},c=(l,m,u,v)=>(l.addEventListener(m,u,v),()=>l.removeEventListener(m,u,v)),p=S(()=>[H(t),I(s)],([l,m])=>{f(),l&&r.push(...n.flatMap(u=>i.map(v=>c(l,u,v,m))))},{immediate:!0,flush:"post"}),d=()=>{p(),f()};return A(d),d}function X(e,t=!1){const n=g(),i=()=>n.value=!!e();return i(),j(i,t),n}function ae(e={}){const{navigator:t=q,read:n=!1,source:i,copiedDuring:s=1500,legacy:r=!1}=e,f=["copy","cut"],c=X(()=>t&&"clipboard"in t),p=Q(()=>c.value||r),d=g(""),l=g(!1),m=G(()=>l.value=!1,s);function u(){c.value?t.clipboard.readText().then(o=>{d.value=o}):d.value=_()}if(p.value&&n)for(const o of f)z(o,u);async function v(o=I(i)){p.value&&o!=null&&(c.value?await t.clipboard.writeText(o):y(o),d.value=o,l.value=!0,m.start())}function y(o){const a=document.createElement("textarea");a.value=o??"",a.style.position="absolute",a.style.opacity="0",document.body.appendChild(a),a.select(),document.execCommand("copy"),a.remove()}function _(){var o,a,O;return(O=(a=(o=document==null?void 0:document.getSelection)==null?void 0:o.call(document))==null?void 0:a.toString())!=null?O:""}return{isSupported:p,text:d,copied:l,copy:v}}function Y(e){return JSON.parse(JSON.stringify(e))}const h=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},x="__vueuse_ssr_handlers__";h[x]=h[x]||{};var C;(function(e){e.UP="UP",e.RIGHT="RIGHT",e.DOWN="DOWN",e.LEFT="LEFT",e.NONE="NONE"})(C||(C={}));var Z=Object.defineProperty,T=Object.getOwnPropertySymbols,k=Object.prototype.hasOwnProperty,ee=Object.prototype.propertyIsEnumerable,P=(e,t,n)=>t in e?Z(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,te=(e,t)=>{for(var n in t||(t={}))k.call(t,n)&&P(e,n,t[n]);if(T)for(var n of T(t))ee.call(t,n)&&P(e,n,t[n]);return e};const ne={easeInSine:[.12,0,.39,0],easeOutSine:[.61,1,.88,1],easeInOutSine:[.37,0,.63,1],easeInQuad:[.11,0,.5,0],easeOutQuad:[.5,1,.89,1],easeInOutQuad:[.45,0,.55,1],easeInCubic:[.32,0,.67,0],easeOutCubic:[.33,1,.68,1],easeInOutCubic:[.65,0,.35,1],easeInQuart:[.5,0,.75,0],easeOutQuart:[.25,1,.5,1],easeInOutQuart:[.76,0,.24,1],easeInQuint:[.64,0,.78,0],easeOutQuint:[.22,1,.36,1],easeInOutQuint:[.83,0,.17,1],easeInExpo:[.7,0,.84,0],easeOutExpo:[.16,1,.3,1],easeInOutExpo:[.87,0,.13,1],easeInCirc:[.55,0,1,.45],easeOutCirc:[0,.55,.45,1],easeInOutCirc:[.85,0,.15,1],easeInBack:[.36,0,.66,-.56],easeOutBack:[.34,1.56,.64,1],easeInOutBack:[.68,-.6,.32,1.6]};te({linear:U},ne);function ue(e,t,n,i={}){var s,r,f;const{clone:c=!1,passive:p=!1,eventName:d,deep:l=!1,defaultValue:m}=i,u=N(),v=n||(u==null?void 0:u.emit)||((s=u==null?void 0:u.$emit)==null?void 0:s.bind(u))||((f=(r=u==null?void 0:u.proxy)==null?void 0:r.$emit)==null?void 0:f.bind(u==null?void 0:u.proxy));let y=d;t||(t="modelValue"),y=d||y||`update:${t.toString()}`;const _=a=>c?D(c)?c(a):Y(a):a,o=()=>$(e[t])?_(e[t]):m;if(p){const a=o(),O=g(a);return S(()=>e[t],b=>O.value=_(b)),S(O,b=>{(b!==e[t]||l)&&v(y,b)},{deep:l}),O}else return Q({get(){return o()},set(a){v(y,a)}})}export{ue as a,ae as u}; diff --git a/_nuxt/page.cW29poUU.js b/_nuxt/page.cW29poUU.js new file mode 100644 index 000000000..24cb81ecb --- /dev/null +++ b/_nuxt/page.cW29poUU.js @@ -0,0 +1 @@ +import{k as a,c as n,a5 as r,b as t}from"./entry.uIHGwm26.js";const c={};function o(e,s){return t(),n("main",null,[r(e.$slots,"default")])}const f=a(c,[["render",o]]);export{f as default}; diff --git a/_nuxt/slot.-hZqRm-7.js b/_nuxt/slot.-hZqRm-7.js new file mode 100644 index 000000000..fd9adb486 --- /dev/null +++ b/_nuxt/slot.-hZqRm-7.js @@ -0,0 +1 @@ +import{f as n}from"./MDCSlot.3Uw_wiOf.js";import{a5 as i}from"./entry.uIHGwm26.js";const e=(t,r,f,...a)=>t[r]?i({...t,[r]:()=>n(t[r](),f==null?void 0:f.unwrap)},r,f,...a):i(t,r,f,...a);export{e as r}; diff --git a/_nuxt/useStudio.MGuw41gw.css b/_nuxt/useStudio.MGuw41gw.css new file mode 100644 index 000000000..0f2ab0ad1 --- /dev/null +++ b/_nuxt/useStudio.MGuw41gw.css @@ -0,0 +1 @@ +body.__preview_enabled{padding-bottom:50px}#__nuxt_preview[data-v-3636941a]{align-items:center;-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);background:#ffffff4d;border-top:1px solid #eee;bottom:-60px;color:#000;display:flex;font-family:Helvetica,sans-serif;font-size:16px;font-weight:500;gap:10px;height:50px;justify-content:center;left:0;position:fixed;right:0;transition:bottom .3s ease-in-out;z-index:10000}#__nuxt_preview.__preview_ready[data-v-3636941a]{bottom:0}#__preview_background[data-v-3636941a]{-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);background:#ffffff4d;height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:9000}#__preview_loader[data-v-3636941a]{align-items:center;color:#000;display:flex;flex-direction:column;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;font-size:1.4rem;gap:8px;left:50%;position:fixed;top:50%;transform:translate(-50%,-50%);z-index:9500}#__preview_loader p[data-v-3636941a]{margin:10px 0}.dark #__preview_background[data-v-3636941a],.dark-mode #__preview_background[data-v-3636941a]{background:#0000004d}.dark #__preview_loader[data-v-3636941a],.dark-mode #__preview_loader[data-v-3636941a]{color:#fff}.preview-loading-enter-active[data-v-3636941a],.preview-loading-leave-active[data-v-3636941a]{transition:opacity .4s}.preview-loading-enter[data-v-3636941a],.preview-loading-leave-to[data-v-3636941a]{opacity:0}#__preview_loading_icon[data-v-3636941a]{animation:spin-3636941a 1s linear infinite}.dark #__nuxt_preview[data-v-3636941a],.dark-mode #__nuxt_preview[data-v-3636941a]{background:#0000004d;border-top:1px solid #111;color:#fff}#__nuxt_preview svg[data-v-3636941a]{color:#000;display:inline-block;height:30px;width:30px}.dark #__nuxt_preview svg[data-v-3636941a],.dark-mode #__nuxt_preview svg[data-v-3636941a]{color:#fff}button[data-v-3636941a]{background:transparent;border:1px solid rgba(0,0,0,.2);border-radius:3px;box-shadow:none;color:#000c;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;line-height:1rem;margin:0;padding:4px 10px;text-align:center;transition:none;width:auto}button[data-v-3636941a]:hover{border-color:#0006;color:#000000e6}.dark button[data-v-3636941a],.dark-mode button[data-v-3636941a]{border-color:#fff3;color:#d3d3d3}.dark button[data-v-3636941a]:hover,.dark-mode button[data-v-3636941a]:hover{border-color:#fff6;color:#fff}#__nuxt_preview button[data-v-3636941a]:focus,#__nuxt_preview button[data-v-3636941a]:hover{background:#0000001a}#__nuxt_preview button[data-v-3636941a]:active{background:#0003}.dark #__nuxt_preview button[data-v-3636941a],.dark-mode #__nuxt_preview button[data-v-3636941a]{border:1px solid hsla(0,0%,100%,.2);color:#fffc}.dark #__nuxt_preview button[data-v-3636941a]:hover,.dark-mode #__nuxt_preview button[data-v-3636941a]:focus{background:#ffffff1a}.dark #__nuxt_preview button[data-v-3636941a]:active,.dark-mode #__nuxt_preview button[data-v-3636941a]:active{background:#fff3}#__nuxt_preview.__preview_refreshing button[data-v-3636941a],#__nuxt_preview.__preview_refreshing span[data-v-3636941a],#__nuxt_preview.__preview_refreshing svg[data-v-3636941a]{animation:nuxt_pulsate-3636941a 1s ease-out;animation-iteration-count:infinite;opacity:.5}@keyframes nuxt_pulsate-3636941a{0%{opacity:1}50%{opacity:.5}to{opacity:1}}@keyframes spin-3636941a{0%{transform:rotate(1turn)}to{transform:rotate(0)}} diff --git a/_nuxt/useStudio.fjak5mNM.js b/_nuxt/useStudio.fjak5mNM.js new file mode 100644 index 000000000..abf7c1aeb --- /dev/null +++ b/_nuxt/useStudio.fjak5mNM.js @@ -0,0 +1,7 @@ +function __vite__mapDeps(indexes) { + if (!__vite__mapDeps.viteFileDeps) { + __vite__mapDeps.viteFileDeps = [] + } + return indexes.map((i) => __vite__mapDeps.viteFileDeps[i]) +} +import{r as Y}from"./asyncData.uJQpiaTt.js";import{d as j,u as V,r as $,o as ee,_ as te,a as ne,b as q,c as L,n as oe,F as ie,e as w,f as E,g as O,w as J,T as B,t as se,h as D,p as ae,i as re,j as W,k as de,l as ce,m as z,q as le,s as U,v as M,x as Z,y as H,z as pe,A as ue,B as F}from"./entry.uIHGwm26.js";const A=i=>(ae("data-v-3636941a"),i=i(),re(),i),fe=A(()=>w("svg",{viewBox:"0 0 90 90",fill:"none",xmlns:"http://www.w3.org/2000/svg"},[w("path",{d:"M50.0016 71.0999h29.2561c.9293.0001 1.8422-.241 2.6469-.6992.8047-.4582 1.4729-1.1173 1.9373-1.9109.4645-.7936.7088-1.6939.7083-2.6102-.0004-.9162-.2455-1.8163-.7106-2.6095L64.192 29.713c-.4644-.7934-1.1325-1.4523-1.937-1.9105-.8046-.4581-1.7173-.6993-2.6463-.6993-.9291 0-1.8418.2412-2.6463.6993-.8046.4582-1.4726 1.1171-1.937 1.9105l-5.0238 8.5861-9.8224-16.7898c-.4648-.7934-1.1332-1.4522-1.938-1.9102-.8047-.4581-1.7176-.6992-2.6468-.6992-.9292 0-1.842.2411-2.6468.6992-.8048.458-1.4731 1.1168-1.9379 1.9102L6.56062 63.2701c-.46512.7932-.71021 1.6933-.71061 2.6095-.00041.9163.24389 1.8166.70831 2.6102.46443.7936 1.1326 1.4527 1.93732 1.9109.80473.4582 1.71766.6993 2.64686.6992h18.3646c7.2763 0 12.6422-3.1516 16.3345-9.3002l8.9642-15.3081 4.8015-8.1925 14.4099 24.6083H54.8058l-4.8042 8.1925ZM29.2077 62.899l-12.8161-.0028L35.603 30.0869l9.5857 16.4047-6.418 10.9645c-2.4521 3.9894-5.2377 5.4429-9.563 5.4429Z",fill:"currentColor"})],-1)),ve=A(()=>w("span",null,"Preview mode enabled",-1)),we={key:0},he=A(()=>w("div",{id:"__preview_background"},null,-1)),me=A(()=>w("svg",{id:"__preview_loading_icon",width:"32",height:"32",viewBox:"0 0 24 24"},[w("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 4v5h.582m15.356 2A8.001 8.001 0 0 0 4.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 0 1-15.357-2m15.357 2H15"})],-1)),ye=A(()=>w("p",null,"Initializing the preview...",-1)),_e={key:0},ge=A(()=>w("div",{id:"__preview_background"},null,-1)),ke={id:"__preview_loader"},Ce=j({__name:"ContentPreviewMode",props:{previewToken:{type:String,required:!0},apiURL:{type:String,required:!0},syncPreview:{type:Function,required:!0},requestPreviewSyncAPI:{type:Function,required:!0}},setup(i){const s=i,c=["__nuxt_preview","__preview_enabled"],f=W(),y=V(),r=$(!0),g=$(!1),o=$(!1),l=$("");let a;const m=async()=>{D("previewToken").value="",window.sessionStorage.removeItem("previewToken"),await y.replace({query:{preview:void 0}}),window.location.reload()},b=async T=>{const h=await s.syncPreview(T);if(o.value!==!0){if(!h){setTimeout(()=>b(T),1e3);return}D("previewToken").value&&(o.value=!0,await y.replace({query:{}}),f.callHook("nuxt-studio:preview:ready"),window.parent&&window.self!==window.parent&&a.disconnect())}};return ee(async()=>{a=(await te(()=>import("./index.ktinZ6MN.js"),__vite__mapDeps([]),import.meta.url)).connect(`${s.apiURL}/preview`,{transports:["websocket","polling"],auth:{token:s.previewToken}});let h;a.on("connect",()=>{h=setTimeout(()=>{o.value||(h=setTimeout(()=>{l.value="Preview sync timed out",o.value=!1},3e4),a.emit("draft:requestSync"))},3e4)});const I=()=>{h&&(clearTimeout(h),h=null)};a.on("draft:sync",async P=>{if(I(),!P){try{a.once("draft:ready",()=>{a.emit("draft:requestSync")}),await s.requestPreviewSyncAPI()}catch(R){switch(I(),R.response.status){case 404:l.value="Preview draft not found",o.value=!1;break;default:l.value="An error occurred while syncing preview",o.value=!1}}return}b(P)}),a.on("draft:unauthorized",()=>{I(),l.value="Unauthorized preview token",o.value=!1}),a.on("disconnect",()=>{I()}),document.body.classList.add(...c),a.on("draft:update",P=>{g.value=!0,s.syncPreview(P),g.value=!1})}),ne(()=>{document.body.classList.remove(...c)}),(T,h)=>(q(),L("div",null,[r.value?(q(),L("div",{key:0,id:"__nuxt_preview",class:oe({__preview_ready:o.value,__preview_refreshing:g.value})},[o.value?(q(),L(ie,{key:0},[fe,ve,w("button",{onClick:m}," Close ")],64)):E("",!0)],2)):E("",!0),O(B,{name:"preview-loading"},{default:J(()=>[r.value&&!o.value&&!l.value?(q(),L("div",we,[he,w("div",{id:"__preview_loader"},[me,ye,w("button",{onClick:m}," Cancel ")])])):E("",!0)]),_:1}),O(B,{name:"preview-loading"},{default:J(()=>[l.value?(q(),L("div",_e,[ge,w("div",ke,[w("p",null,se(l.value),1),w("button",{onClick:m}," Exit preview ")])])):E("",!0)]),_:1})]))}}),Ie=de(Ce,[["__scopeId","data-v-3636941a"]]),Pe=(i=[],s,c)=>{const f=[...s||[]],y=[...c||[]],r=JSON.parse(JSON.stringify(i));for(const o of f)if(o.oldPath)if(y.splice(y.findIndex(a=>a.path===o.oldPath),1),f.find(a=>a.path===o.oldPath))r.push({path:o.path,parsed:o.parsed});else{const a=r.find(m=>m.path===o.oldPath);a&&(a.path=o.path,o.parsed?a.parsed=o.parsed:o.pathMeta&&["_file","_path","_id","_locale"].forEach(m=>{a.parsed[m]=o.pathMeta[m]}))}else if(o.new)r.push({path:o.path,parsed:o.parsed});else{const l=r.find(a=>a.path===o.path);l&&Object.assign(l,{path:o.path,parsed:o.parsed})}for(const o of y)r.splice(r.findIndex(l=>l.path===o.path),1);const g=new Intl.Collator(void 0,{numeric:!0});return r.sort((o,l)=>g.compare(o.path,l.path)),r},C={appConfig:"app.config.ts",tokensConfig:"tokens.config.ts"},Se=i=>{let s;return(...c)=>(s||(s=i()),s)};function G(i,s){for(const c in i){const f=s[c];c in s||delete i[c],f!==null&&typeof f=="object"&&G(i[c],s[c])}}function Q(i,s){for(const c in s){const f=s[c];f!==null&&typeof f=="object"?(i[c]=i[c]||{},Q(i[c],f)):i[c]=f}}const Te=Se(()=>JSON.parse(JSON.stringify(Z()))),qe=()=>{const i=W(),{studio:s,content:c}=ce().public,f=Te();let y;const r=z("studio-client-db",()=>null),g=z("studio-preview-db-files",()=>[]);r.value||(i.hook("content:storage",e=>{r.value=e}),le("/non-existing-path").findOne());const o=async(e,n,d=!0)=>{const u=window.sessionStorage.getItem("previewToken"),v=await e.getKeys(`${u}:`);await Promise.all(v.map(p=>e.removeItem(p)));const t=new Set(n.map(p=>p.parsed._id.split(":").shift()));await e.setItem(`${u}$`,JSON.stringify({ignoreSources:Array.from(t)})),await Promise.all(n.map(p=>e.setItem(`${u}:${p.parsed._id}`,JSON.stringify(p.parsed))))},l=e=>{const n=M(i,Z);Q(n,H(e,f)),e||G(n,f)},a=e=>{var d,u,v,t;const n=(t=(v=(u=(d=i==null?void 0:i.vueApp)==null?void 0:d._context)==null?void 0:u.config)==null?void 0:v.globalProperties)==null?void 0:t.$pinceauTheme;!n||!(n!=null&&n.updateTheme)||(y||(y=JSON.parse(JSON.stringify((n==null?void 0:n.theme.value)||{}))),M(i,n.updateTheme,[H(e,y)]))},m=async e=>{if(g.value=e.files=e.files||g.value||[],!r.value)return!1;const n=Pe(e.files,e.additions,e.deletions),d=n.filter(t=>![C.appConfig,C.tokensConfig].includes(t.path));await o(r.value,d,(e.files||[]).length!==0);const u=n.find(t=>t.path===C.appConfig);l(u==null?void 0:u.parsed);const v=n.find(t=>t.path===C.tokensConfig);return a(v==null?void 0:v.parsed),R(),!0},b=async()=>{const e=window.sessionStorage.getItem("previewToken");await $fetch("api/projects/preview/sync",{baseURL:s==null?void 0:s.apiURL,method:"POST",params:{token:e}})},T=()=>{const e=window.sessionStorage.getItem("previewToken"),n=document.createElement("div");n.id="__nuxt_preview_wrapper",document.body.appendChild(n),pe(Ie,{previewToken:e,apiURL:s==null?void 0:s.apiURL,syncPreview:m,requestPreviewSyncAPI:b}).mount(n)},h=async e=>{var u,v,t;const n=window.sessionStorage.getItem("previewToken");if(!e)return null;e=e.replace(/\/$/,"");let d=await((u=r.value)==null?void 0:u.getItem(`${n}:${e}`));return d||(d=await((v=r.value)==null?void 0:v.getItem(`cached:${e}`))),d||(d=d=await((t=r.value)==null?void 0:t.getItem(e))),d},I=e=>{var d;const n=window.sessionStorage.getItem("previewToken");r.value&&r.value.setItem(`${n}:${(d=e.parsed)==null?void 0:d._id}`,JSON.stringify(e.parsed))},P=async e=>{var d;const n=window.sessionStorage.getItem("previewToken");await((d=r.value)==null?void 0:d.removeItem(`${n}:${e}`))},R=async()=>{if(c!=null&&c.documentDriven){const{pages:e}=M(i,ue);for(const n in e.value)e.value[n]&&(e.value[n]=await h(e.value[n]._id))}M(i,Y)};return{apiURL:s==null?void 0:s.apiURL,contentStorage:r,syncPreviewFiles:o,syncPreviewAppConfig:l,syncPreviewTokensConfig:a,requestPreviewSynchronization:b,findContentWithId:h,updateContent:I,removeContentWithId:P,requestRerender:R,mountPreviewUI:T,initiateIframeCommunication:X};function X(){if(!window.parent||window.self===window.parent)return;const e=V(),n=U(),d=$(""),u=t=>({path:t.path,query:F(t.query),params:F(t.params),fullPath:t.fullPath,meta:F(t.meta)});window.addEventListener("keydown",t=>{(t.metaKey||t.ctrlKey||t.altKey||t.shiftKey)&&window.parent.postMessage({type:"nuxt-studio:preview:keydown",payload:{key:t.key,metaKey:t.metaKey,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey}},"*")}),window.addEventListener("message",async t=>{if(!["https://nuxt.studio","https://dev.nuxt.studio"].includes(t.origin))return;const{type:p,payload:x={}}=t.data||{};switch(p){case"nuxt-studio:editor:file-selected":{const _=await h(x.path);_&&(_._partial||_._path!==U().path&&(d.value=_._path,e.push(_._path)));break}case"nuxt-studio:editor:file-changed":{const{additions:_=[],deletions:N=[]}=x;for(const k of _)await I(k);for(const k of N)await P(k.path);R();break}case"nuxt-studio:preview:sync":{m(x);break}case"nuxt-studio:config:file-changed":{const{additions:_=[],deletions:N=[]}=x,k=_.find(S=>S.path===C.appConfig);k&&l(k==null?void 0:k.parsed),N.find(S=>S.path===C.appConfig)&&l(void 0);const K=_.find(S=>S.path===C.tokensConfig);K&&a(K==null?void 0:K.parsed),N.find(S=>S.path===C.tokensConfig)&&a(void 0);break}}}),i.hook("page:finish",()=>{v()}),i.hook("content:document-driven:finish",({route:t,page:p})=>{t.meta.studio_page_contentId=p==null?void 0:p._id}),i.hook("nuxt-studio:preview:ready",()=>{window.parent.postMessage({type:"nuxt-studio:preview:ready",payload:u(U())},"*"),setTimeout(()=>{v()},100)});function v(){const t=Array.from(window.document.querySelectorAll("[data-content-id]")).map(x=>x.getAttribute("data-content-id")),p=Array.from(new Set([n.meta.studio_page_contentId,...t])).filter(Boolean);if(d.value===p[0]){d.value="";return}window.openContentInStudioEditor(p,{navigate:!0,pageContentId:n.meta.studio_page_contentId})}window.openContentInStudioEditor=(t,p={})=>{window.parent.postMessage({type:"nuxt-studio:preview:navigate",payload:{...u(n),contentIds:t,...p}},"*")}}};export{qe as useStudio}; diff --git a/_payload.json b/_payload.json new file mode 100644 index 000000000..6e25a4861 --- /dev/null +++ b/_payload.json @@ -0,0 +1 @@ +[{"data":1,"prerenderedAt":3},["Reactive",2],{},1714687113540] \ No newline at end of file diff --git a/.starters/default/public/alpine-0.webp b/alpine-0.webp similarity index 100% rename from .starters/default/public/alpine-0.webp rename to alpine-0.webp diff --git a/.starters/default/public/alpine-1.webp b/alpine-1.webp similarity index 100% rename from .starters/default/public/alpine-1.webp rename to alpine-1.webp diff --git a/.starters/default/public/alpine-2.webp b/alpine-2.webp similarity index 100% rename from .starters/default/public/alpine-2.webp rename to alpine-2.webp diff --git a/api/_content/cache.1714687088691.json b/api/_content/cache.1714687088691.json new file mode 100644 index 000000000..4def17531 --- /dev/null +++ b/api/_content/cache.1714687088691.json @@ -0,0 +1 @@ +{"generatedAt":1714687113514,"generateTime":973,"contents":[{"_path":"/","_dir":"","_draft":false,"_partial":false,"_locale":"","title":"About","description":"An open source blog theme powered by Nuxt.","layout":"default","head":{"title":"Alpine"},"body":{"type":"root","children":[{"type":"element","tag":"hero","props":{"image":"/alpine-0.webp"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Hi, I am Alpine."}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"An "},{"type":"element","tag":"a","props":{"href":"https://github.com/nuxt-themes/alpine","rel":["nofollow"]},"children":[{"type":"text","value":"open source blog theme"}]},{"type":"text","value":" powered by "},{"type":"element","tag":"a","props":{"href":"https://content.nuxtjs.org","rel":["nofollow"]},"children":[{"type":"text","value":"Nuxt Content"}]},{"type":"text","value":", editable on "},{"type":"element","tag":"a","props":{"href":"https://nuxt.studio","rel":["nofollow"]},"children":[{"type":"text","value":"Nuxt Studio"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Write pages in Markdown and Vue components with the "},{"type":"element","tag":"a","props":{"href":"https://content.nuxtjs.org/guide/writing/mdc","rel":["nofollow"]},"children":[{"type":"text","value":"MDC syntax"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Use "},{"type":"element","tag":"a","props":{"href":"https://elements.nuxt.space","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"30+ built-in"}]}]},{"type":"text","value":" components in your Markdown pages."}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non risus. Suspendisse lectus tortor, dignissim sit amet, adipiscing nec, ultricies sed, dolor. Cras elementum ultrices diam. Maecenas ligula massa, varius a, semper congue, euismod non, mi. Proin porttitor, orci nec nonummy molestie, enim est eleifend mi, non fermentum diam nisl sit amet erat. Duis semper. Duis arcu massa, scelerisque vitae, consequat in, pretium a, enim."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Pellentesque congue. Ut in risus volutpat libero pharetra tempor. Cras vestibulum bibendum augue. Praesent egestas leo in pede. Praesent blandit odio eu enim. Pellentesque sed dui ut augue blandit sodales. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aliquam nibh. Mauris ac mauris sed pede pellentesque fermentum. Maecenas adipiscing ante non diam sodales hendrerit."}]},{"type":"element","tag":"gallery","props":{":images":"[\"/alpine-0.webp\",\"/alpine-1.webp\",\"/alpine-2.webp\"]"},"children":[]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:1.index.md","_source":"content","_file":"1.index.md","_extension":"md"},{"_path":"/articles","_dir":"","_draft":false,"_partial":false,"_locale":"","title":"Articles","description":"","layout":"page","body":{"type":"root","children":[{"type":"element","tag":"articles-list","props":{"path":"articles"},"children":[]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.articles.md","_source":"content","_file":"2.articles.md","_extension":"md"},{"_path":"/contact","_dir":"","_draft":false,"_partial":false,"_locale":"","title":"Contact","description":"","layout":"default","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"get-in-touch"},"children":[{"type":"text","value":"Get in touch"}]},{"type":"element","tag":"contact-form","props":{":fields":"[{\"type\":\"text\",\"name\":\"name\",\"label\":\"Your name\",\"required\":true},{\"type\":\"email\",\"name\":\"email\",\"label\":\"Your email\",\"required\":true},{\"type\":\"text\",\"name\":\"subject\",\"label\":\"Subject\",\"required\":false},{\"type\":\"textarea\",\"name\":\"message\",\"label\":\"Message\",\"required\":true}]"},"children":[]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:3.contact.md","_source":"content","_file":"3.contact.md","_extension":"md"},{"_path":"/articles/get-started","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Get started with Alpine","description":"Creating a blog with Alpine is a command away, as well as deploying to many platforms.","cover":"/articles/get-started.webp","author":{"name":"Sébastien Chopin","avatarUrl":"https://pbs.twimg.com/profile_images/1042510623962275840/1Iw_Mvud_400x400.jpg","link":"https://twitter.com/atinux"},"date":"2022-08-23T00:00:00.000Z","layout":"article","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"get-started-with-alpine"},"children":[{"type":"text","value":"Get started with Alpine"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Creating a blog with Alpine is a command away, as well as deploying to many platforms."}]},{"type":"element","tag":"h2","props":{"id":"create-a-blog"},"children":[{"type":"text","value":"Create a blog"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Open a terminal an run the following command:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npx nuxi@latest init -t themes/alpine\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" nuxi@latest"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" init"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":" -t"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" themes/alpine\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"dependencies"},"children":[{"type":"text","value":"Dependencies"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Next, go to to "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"my-blog/"}]},{"type":"text","value":" directory and install the dependencies:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npm install\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" install\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Start the development server on port 3000:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npm run dev\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" run"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" dev\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Next, you can start creating your content in Markdown in the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"content/"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"h2","props":{"id":"deploy"},"children":[{"type":"text","value":"Deploy"}]},{"type":"element","tag":"h3","props":{"id":"static-hosting"},"children":[{"type":"text","value":"Static hosting"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can deploy Alpine to any static hosting by running the following command:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npm run generate\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" run"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" generate\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This command will create a "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"dist/"}]},{"type":"text","value":" directory with the compiled files ready to be uploaded to any static hosting."}]},{"type":"element","tag":"h3","props":{"id":"edge-platforms"},"children":[{"type":"text","value":"Edge platforms"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Alpine supports deploying to the following platforms with "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"zero configuration"}]},{"type":"text","value":":"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://vercel.com","rel":["nofollow"]},"children":[{"type":"text","value":"Vercel"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://netlify.com","rel":["nofollow"]},"children":[{"type":"text","value":"Netlify"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://v3.nuxtjs.org/guide/deploy/presets#supported-hosting-providers","rel":["nofollow"]},"children":[{"type":"text","value":"and more..."}]}]}]},{"type":"element","tag":"h3","props":{"id":"node-server"},"children":[{"type":"text","value":"Node server"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can deploy Alpine to a Node server by running the following command:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npm run build\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" run"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" build\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This command will create a "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":".output/"}]},{"type":"text","value":" directory with the compiled files ready to be uploaded to any Node server."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To start the production server, run the following command:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"node .output/server/index.mjs\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"node"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" .output/server/index.mjs\n"}]}]}]}]},{"type":"element","tag":"style","props":{},"children":[{"type":"text","value":"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"create-a-blog","depth":2,"text":"Create a blog"},{"id":"dependencies","depth":2,"text":"Dependencies"},{"id":"development","depth":2,"text":"Development"},{"id":"deploy","depth":2,"text":"Deploy","children":[{"id":"static-hosting","depth":3,"text":"Static hosting"},{"id":"edge-platforms","depth":3,"text":"Edge platforms"},{"id":"node-server","depth":3,"text":"Node server"}]}]}},"_type":"markdown","_id":"content:articles:1.get-started.md","_source":"content","_file":"articles/1.get-started.md","_extension":"md"},{"_path":"/articles/configure","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Configure Alpine","description":"Learn how to configure Alpine with the app.config.ts file.","cover":"/articles/configure-alpine.webp","author":{"name":"Clément Ollivier","avatarUrl":"https://pbs.twimg.com/profile_images/1370286658432724996/ZMSDzzIi_400x400.jpg","link":"https://twitter.com/clemcodes"},"date":"2022-08-23T00:00:00.000Z","layout":"article","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"configure-alpine"},"children":[{"type":"text","value":"Configure Alpine"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To configure meta tags, social links or even the Alpine theme display, update the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"alpine"}]},{"type":"text","value":" key in the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"app.config.ts"}]},{"type":"text","value":" at the root of your project:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"export default defineAppConfig({\n alpine: {\n /* Alpine configuration goes here */\n }\n}\n","filename":"app.config.ts","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":" default"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":" defineAppConfig"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" /* Alpine configuration goes here */\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"}\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can look at the "},{"type":"element","tag":"a","props":{"href":"https://github.com/nuxt-themes/alpine/tree/main/app.config.ts","rel":["nofollow"]},"children":[{"type":"text","value":"default config"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"a","props":{"href":"https://github.com/nuxt-themes/alpine/tree/main/app.config.ts","rel":["nofollow"]},"children":[{"type":"text","value":"config schema"}]},{"type":"text","value":" also gives comments on all the configuration parameters."}]},{"type":"element","tag":"h2","props":{"id":"meta-tags"},"children":[{"type":"text","value":"Meta tags"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Configure the title, description and social image of your website:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"export default defineAppConfig({\n alpine: {\n title: 'Alpine',\n description: 'The minimalist blog theme',\n image: '/social-card-preview.png',\n // image can also be an object:\n image: {\n src: '/social-card-preview.png',\n alt: 'An image showcasing my project.',\n width: 400,\n height: 300\n }\n }\n})\n","filename":"app.config.ts","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":" default"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":" defineAppConfig"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" title: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Alpine'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" description: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'The minimalist blog theme'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" image: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'/social-card-preview.png'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // image can also be an object:\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" image: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" src: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'/social-card-preview.png'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alt: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'An image showcasing my project.'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":10},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" width: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"400"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":11},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" height: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"300\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":12},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":13},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":14},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"})\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"social-links"},"children":[{"type":"text","value":"Social links"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To configure the social links displayed in the footer, use the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"socials"}]},{"type":"text","value":" property:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"export default defineAppConfig({\n alpine: {\n socials: {\n twitter: 'nuxtlabs',\n instagram: 'wearenuxt',\n linkedin: {\n icon: 'uil:linkedin',\n label: 'LinkedIn',\n href: 'https://www.linkedin.com/company/nuxtlabs'\n },\n mastodon: {\n icon: 'simple-icons:mastodon',\n label: 'Mastodon',\n href: 'https://m.webtoo.ls/@nuxt',\n rel: 'me'\n }\n }\n }\n})\n","filename":"app.config.ts","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":" default"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":" defineAppConfig"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" socials: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" twitter: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'nuxtlabs'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" instagram: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'wearenuxt'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" linkedin: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" icon: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'uil:linkedin'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" label: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'LinkedIn'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" href: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'https://www.linkedin.com/company/nuxtlabs'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":10},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" },\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":11},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" mastodon: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":12},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" icon: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'simple-icons:mastodon'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":13},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" label: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Mastodon'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":14},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" href: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'https://m.webtoo.ls/@nuxt'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":15},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" rel: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'me'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":16},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":17},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":18},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":19},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"})\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"theme-display"},"children":[{"type":"text","value":"Theme display"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Alpine Header and Footer can also be customized via the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"app.config.ts"}]},{"type":"text","value":" file:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"defineAppConfig({\n alpine: {\n // Remove header with header: false\n header: {\n position: 'inline', // possible value are : 'none' | 'left' | 'center' | 'right' | 'inline'\n logo: false\n },\n // Remove header with footer: false\n footer: {\n credits: {\n enabled: true, // possible value are : true | false\n repository: 'https://www.github.com/nuxt-themes/alpine' // our github repository\n },\n navigation: false, // possible value are : true | false\n position: 'center', // possible value are : 'none' | 'left' | 'center' | 'right'\n message: 'Follow me on' // string that will be displayed on the footer (leave empty or delete to disable)\n }\n // Disable back to top button: false\n backToTop: {\n text: 'Back to top',\n icon: 'material-symbols:arrow-upward'\n }\n }\n})\n","filename":"app.config.ts","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"defineAppConfig"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // Remove header with header: false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" header: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" position: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'inline'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":", "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":"// possible value are : 'none' | 'left' | 'center' | 'right' | 'inline'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" logo: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" },\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // Remove header with footer: false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" footer: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":10},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" credits: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":11},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" enabled: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"true"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":", "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":"// possible value are : true | false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":12},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" repository: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'https://www.github.com/nuxt-themes/alpine'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // our github repository\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":13},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" },\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":14},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" navigation: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":", "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":"// possible value are : true | false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":15},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" position: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'center'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":", "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":"// possible value are : 'none' | 'left' | 'center' | 'right'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":16},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" message: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Follow me on'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // string that will be displayed on the footer (leave empty or delete to disable)\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":17},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":18},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // Disable back to top button: false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":19},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" backToTop: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":20},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" text: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Back to top'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":21},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" icon: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'material-symbols:arrow-upward'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":22},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":23},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":24},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"})\n"}]}]}]}]},{"type":"element","tag":"style","props":{},"children":[{"type":"text","value":"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"meta-tags","depth":2,"text":"Meta tags"},{"id":"social-links","depth":2,"text":"Social links"},{"id":"theme-display","depth":2,"text":"Theme display"}]}},"_type":"markdown","_id":"content:articles:2.configure.md","_source":"content","_file":"articles/2.configure.md","_extension":"md"},{"_path":"/articles/write-articles","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Write Articles","description":"Writing Markdown articles in Alpine is straightforward.","cover":"/articles/write-articles.webp","date":"2022-08-23T00:00:00.000Z","layout":"article","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"write-articles"},"children":[{"type":"text","value":"Write Articles"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Write Markdown articles in Alpine is straightforward."}]},{"type":"element","tag":"h2","props":{"id":"create-an-articles-list"},"children":[{"type":"text","value":"Create an articles list"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Create a new file in the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"content/"}]},{"type":"text","value":" directory:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"touch content/2.articles.md\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"touch"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" content/2.articles.md\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The numbered prefix determines the order of the menu items."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In this file, use the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"articles-list"}]},{"type":"text","value":" component to display the list of articles:"}]},{"type":"element","tag":"pre","props":{"className":"language-md shiki shiki-themes github-light github-dark","code":"---\ntitle: 'Articles'\nlayout: 'page'\n---\n::articles-list\n---\npath: articles\n---\n::\n","filename":"2.articles.md","language":"md","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"title"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Articles'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"layout"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'page'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"::articles-list\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-default-font-weight:bold;--shiki-dark-font-weight:bold"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"path: articles\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-default-font-weight:bold;--shiki-dark-font-weight:bold"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"::\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"path"}]},{"type":"text","value":" prop corresponds to the directory where the articles are stored."}]},{"type":"element","tag":"h2","props":{"id":"display-an-article-in-the-list"},"children":[{"type":"text","value":"Display an article in the list"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Create a new file in the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"/content/articles"}]},{"type":"text","value":" directory:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"mkdir content/articles\ntouch content/articles/1.my-new-article.md\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"mkdir"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" content/articles\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"touch"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" content/articles/1.my-new-article.md\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For your article to be correctly displayed in the "},{"type":"element","tag":"a","props":{"href":"/articles"},"children":[{"type":"text","value":"articles list"}]},{"type":"text","value":", define a "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"cover"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"date"}]},{"type":"text","value":" property in the frontmatter:"}]},{"type":"element","tag":"pre","props":{"className":"language-yaml shiki shiki-themes github-light github-dark","code":"---\ncover: path/to/cover\ndate: 2022-08-23\n---\n","filename":"content/articles/1.my-new-article.md","language":"yaml","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"cover"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"path/to/cover\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"date"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"2022-08-23\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"---\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"cover"}]},{"type":"text","value":" property can be a local path relative to the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"/public"}]},{"type":"text","value":" directory or an external URL."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Your article will now be displayed in the list with its filename as a default title."}]},{"type":"element","tag":"h2","props":{"id":"edit-your-article"},"children":[{"type":"text","value":"Edit your article"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Under the frontmatter block, enter a Markdown "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"h1"}]},{"type":"text","value":" tag and a line of text:"}]},{"type":"element","tag":"pre","props":{"className":"language-md shiki shiki-themes github-light github-dark","code":"---\ncover: path/to/cover\ndate: 2022-08-23\n---\n# An awesome article\nThis article is little by size but big by heart.\n","filename":"content/articles/1.my-new-article.md","language":"md","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"cover"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"path/to/cover\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"date"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"2022-08-23\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-default-font-weight:bold;--shiki-dark-font-weight:bold"},"children":[{"type":"text","value":"# An awesome article\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"This article is little by size but big by heart.\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Your article will now be displayed in the list with the title and description you wrote in Markdown."}]},{"type":"element","tag":"h2","props":{"id":"override-title-and-description"},"children":[{"type":"text","value":"Override title and description"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you want to change the title and description displayed on the list and in the meta tags of the article, add the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"title"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" property to your frontmatter:"}]},{"type":"element","tag":"pre","props":{"className":"language-md shiki shiki-themes github-light github-dark","code":"---\ncover: path/to/cover\ndate: 2022-08-23\ntitle: Another title\ndescription: Another description\n---\n","filename":"content/articles/1.my-new-article.md","language":"md","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"cover"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"path/to/cover\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"date"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"2022-08-23\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"title"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"Another title\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"description"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"Another description\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You are now ready to edit your article and create new ones!"}]},{"type":"element","tag":"h2","props":{"id":"optional-arguments"},"children":[{"type":"text","value":"Optional Arguments"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In the frontmatter block, you can pass additional options for displaying your article, such as displaying badges on the image:"}]},{"type":"element","tag":"pre","props":{"className":"language-md shiki shiki-themes github-light github-dark","code":"---\ncover: path/to/cover\ndate: 2022-08-23\nbadges: [{\n color: 'white',\n bg: 'rgba(0, 0, 0, 0.3)',\n content: 'Technology'\n}]\n---\n","language":"md","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"cover"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"path/to/cover\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"date"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"2022-08-23\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"badges"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": [{\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":" color"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'white'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":" bg"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'rgba(0, 0, 0, 0.3)'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":" content"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Technology'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"}]\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"read-more"},"children":[{"type":"text","value":"Read more"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Alpine is a Nuxt theme using the Content module in "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"documentDriven"}]},{"type":"text","value":" mode."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"👉 Learn more in the "},{"type":"element","tag":"a","props":{"href":"https://content.nuxtjs.org/","rel":["nofollow"]},"children":[{"type":"text","value":"Nuxt Content documentation"}]},{"type":"text","value":"."}]},{"type":"element","tag":"style","props":{},"children":[{"type":"text","value":"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"create-an-articles-list","depth":2,"text":"Create an articles list"},{"id":"display-an-article-in-the-list","depth":2,"text":"Display an article in the list"},{"id":"edit-your-article","depth":2,"text":"Edit your article"},{"id":"override-title-and-description","depth":2,"text":"Override title and description"},{"id":"optional-arguments","depth":2,"text":"Optional Arguments"},{"id":"read-more","depth":2,"text":"Read more"}]}},"_type":"markdown","_id":"content:articles:3.write-articles.md","_source":"content","_file":"articles/3.write-articles.md","_extension":"md"},{"_path":"/articles/design-tokens","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Customize Alpine","description":"Leverage the tokens.config.ts to give your identity to Alpine.","cover":"/articles/design-tokens.webp","date":"2022-08-23T00:00:00.000Z","layout":"article","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"customize-alpine"},"children":[{"type":"text","value":"Customize Alpine"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Leverage the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"tokens.config.ts"}]},{"type":"text","value":" to give your identity to Alpine."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Look at the "},{"type":"element","tag":"a","props":{"href":"https://github.com/nuxt-themes/alpine/blob/main/tokens.config.ts","rel":["nofollow"]},"children":[{"type":"text","value":"default tokens config"}]},{"type":"text","value":" to check all the Alpine related Design Tokens."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Alpine is also powered by "},{"type":"element","tag":"a","props":{"href":"https://www.npmjs.com/package/@nuxt-themes/tokens","rel":["nofollow"]},"children":[{"type":"text","value":"@nuxt-themes/tokens"}]},{"type":"text","value":", see the "},{"type":"element","tag":"a","props":{"href":"https://unpkg.com/@nuxt-themes/tokens@latest/dist/tokens.config.ts","rel":["nofollow"]},"children":[{"type":"text","value":"package tokens.config.ts"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can configure all the theme tokens to change the apperance of Alpine by creating a "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"tokens.config.ts"}]},{"type":"text","value":" in your project:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"import { defineTheme } from 'pinceau'\n\nexport default defineTheme({\n alpine: {\n body: {\n // Update the background color in light & dark mode\n backgroundColor: {\n initial: '#f8fafc',\n dark: '#0f172a'\n }\n }\n }\n})\n","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" { defineTheme } "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" 'pinceau'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"emptyLinePlaceholder":true},"children":[{"type":"text","value":"\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":" default"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":" defineTheme"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" body: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // Update the background color in light & dark mode\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" backgroundColor: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" initial: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'#f8fafc'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" dark: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'#0f172a'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":10},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":11},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":12},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":13},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"})\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you are using "},{"type":"element","tag":"a","props":{"href":"https://nuxt.studio","rel":["nofollow"]},"children":[{"type":"text","value":"Nuxt Studio"}]},{"type":"text","value":", you can use an UI to update the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"token.config.ts"}]},{"type":"text","value":" of your Alpine project:"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://nuxt.studio","rel":["nofollow"]},"children":[{"type":"element","tag":"img","props":{"alt":"design-tokens-studio.png","src":"/design-tokens-studio.png"},"children":[]}]}]},{"type":"element","tag":"style","props":{},"children":[{"type":"text","value":"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:articles:4.design-tokens.md","_source":"content","_file":"articles/4.design-tokens.md","_extension":"md"}],"navigation":[{"title":"About","_path":"/","layout":"default"},{"title":"Articles","_path":"/articles","children":[{"title":"Get started with Alpine","_path":"/articles/get-started","layout":"article"},{"title":"Configure Alpine","_path":"/articles/configure","layout":"article"},{"title":"Write Articles","_path":"/articles/write-articles","layout":"article"},{"title":"Customize Alpine","_path":"/articles/design-tokens","layout":"article"}],"layout":"page"},{"title":"Contact","_path":"/contact","layout":"default"}]} \ No newline at end of file diff --git a/api/_content/navigation/u7BbTyuhiE.1714687088691.json b/api/_content/navigation/u7BbTyuhiE.1714687088691.json new file mode 100644 index 000000000..abb053723 --- /dev/null +++ b/api/_content/navigation/u7BbTyuhiE.1714687088691.json @@ -0,0 +1 @@ +[{"title":"About","_path":"/","layout":"default"},{"title":"Articles","_path":"/articles","children":[{"title":"Get started with Alpine","_path":"/articles/get-started","layout":"article"},{"title":"Configure Alpine","_path":"/articles/configure","layout":"article"},{"title":"Write Articles","_path":"/articles/write-articles","layout":"article"},{"title":"Customize Alpine","_path":"/articles/design-tokens","layout":"article"}],"layout":"page"},{"title":"Contact","_path":"/contact","layout":"default"}] \ No newline at end of file diff --git a/api/_content/query/0MNSQkP8wq.1714687088691.json b/api/_content/query/0MNSQkP8wq.1714687088691.json new file mode 100644 index 000000000..b747346a5 --- /dev/null +++ b/api/_content/query/0MNSQkP8wq.1714687088691.json @@ -0,0 +1 @@ +[{"_path":"/articles/configure","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Configure Alpine","description":"Learn how to configure Alpine with the app.config.ts file.","cover":"/articles/configure-alpine.webp","author":{"name":"Clément Ollivier","avatarUrl":"https://pbs.twimg.com/profile_images/1370286658432724996/ZMSDzzIi_400x400.jpg","link":"https://twitter.com/clemcodes"},"date":"2022-08-23T00:00:00.000Z","layout":"article","_type":"markdown","_id":"content:articles:2.configure.md","_source":"content","_file":"articles/2.configure.md","_extension":"md"},{"_path":"/articles/design-tokens","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Customize Alpine","description":"Leverage the tokens.config.ts to give your identity to Alpine.","cover":"/articles/design-tokens.webp","date":"2022-08-23T00:00:00.000Z","layout":"article","_type":"markdown","_id":"content:articles:4.design-tokens.md","_source":"content","_file":"articles/4.design-tokens.md","_extension":"md"}] \ No newline at end of file diff --git a/api/_content/query/59xeOb2naK.1714687088691.json b/api/_content/query/59xeOb2naK.1714687088691.json new file mode 100644 index 000000000..7bad6e822 --- /dev/null +++ b/api/_content/query/59xeOb2naK.1714687088691.json @@ -0,0 +1 @@ +{"_path":"/articles","_dir":"","_draft":false,"_partial":false,"_locale":"","title":"Articles","description":"","layout":"page","body":{"type":"root","children":[{"type":"element","tag":"articles-list","props":{"path":"articles"},"children":[]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.articles.md","_source":"content","_file":"2.articles.md","_extension":"md"} \ No newline at end of file diff --git a/api/_content/query/BDYWBtY5Gl.1714687088691.json b/api/_content/query/BDYWBtY5Gl.1714687088691.json new file mode 100644 index 000000000..e26fe9dc5 --- /dev/null +++ b/api/_content/query/BDYWBtY5Gl.1714687088691.json @@ -0,0 +1 @@ +[{"_path":"/articles/get-started","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Get started with Alpine","description":"Creating a blog with Alpine is a command away, as well as deploying to many platforms.","cover":"/articles/get-started.webp","author":{"name":"Sébastien Chopin","avatarUrl":"https://pbs.twimg.com/profile_images/1042510623962275840/1Iw_Mvud_400x400.jpg","link":"https://twitter.com/atinux"},"date":"2022-08-23T00:00:00.000Z","layout":"article","_type":"markdown","_id":"content:articles:1.get-started.md","_source":"content","_file":"articles/1.get-started.md","_extension":"md"},{"_path":"/articles/write-articles","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Write Articles","description":"Writing Markdown articles in Alpine is straightforward.","cover":"/articles/write-articles.webp","date":"2022-08-23T00:00:00.000Z","layout":"article","_type":"markdown","_id":"content:articles:3.write-articles.md","_source":"content","_file":"articles/3.write-articles.md","_extension":"md"}] \ No newline at end of file diff --git a/api/_content/query/CZeSGv3sSE.1714687088691.json b/api/_content/query/CZeSGv3sSE.1714687088691.json new file mode 100644 index 000000000..929a883eb --- /dev/null +++ b/api/_content/query/CZeSGv3sSE.1714687088691.json @@ -0,0 +1 @@ +[{"_path":"/articles/write-articles","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Write Articles","description":"Writing Markdown articles in Alpine is straightforward.","cover":"/articles/write-articles.webp","date":"2022-08-23T00:00:00.000Z","layout":"article","_type":"markdown","_id":"content:articles:3.write-articles.md","_source":"content","_file":"articles/3.write-articles.md","_extension":"md"},null] \ No newline at end of file diff --git a/api/_content/query/KIzjyHZELc.1714687088691.json b/api/_content/query/KIzjyHZELc.1714687088691.json new file mode 100644 index 000000000..cbe45dd39 --- /dev/null +++ b/api/_content/query/KIzjyHZELc.1714687088691.json @@ -0,0 +1 @@ +{"_path":"/articles/write-articles","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Write Articles","description":"Writing Markdown articles in Alpine is straightforward.","cover":"/articles/write-articles.webp","date":"2022-08-23T00:00:00.000Z","layout":"article","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"write-articles"},"children":[{"type":"text","value":"Write Articles"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Write Markdown articles in Alpine is straightforward."}]},{"type":"element","tag":"h2","props":{"id":"create-an-articles-list"},"children":[{"type":"text","value":"Create an articles list"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Create a new file in the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"content/"}]},{"type":"text","value":" directory:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"touch content/2.articles.md\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"touch"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" content/2.articles.md\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The numbered prefix determines the order of the menu items."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In this file, use the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"articles-list"}]},{"type":"text","value":" component to display the list of articles:"}]},{"type":"element","tag":"pre","props":{"className":"language-md shiki shiki-themes github-light github-dark","code":"---\ntitle: 'Articles'\nlayout: 'page'\n---\n::articles-list\n---\npath: articles\n---\n::\n","filename":"2.articles.md","language":"md","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"title"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Articles'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"layout"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'page'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"::articles-list\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-default-font-weight:bold;--shiki-dark-font-weight:bold"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"path: articles\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-default-font-weight:bold;--shiki-dark-font-weight:bold"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"::\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"path"}]},{"type":"text","value":" prop corresponds to the directory where the articles are stored."}]},{"type":"element","tag":"h2","props":{"id":"display-an-article-in-the-list"},"children":[{"type":"text","value":"Display an article in the list"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Create a new file in the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"/content/articles"}]},{"type":"text","value":" directory:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"mkdir content/articles\ntouch content/articles/1.my-new-article.md\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"mkdir"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" content/articles\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"touch"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" content/articles/1.my-new-article.md\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For your article to be correctly displayed in the "},{"type":"element","tag":"a","props":{"href":"/articles"},"children":[{"type":"text","value":"articles list"}]},{"type":"text","value":", define a "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"cover"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"date"}]},{"type":"text","value":" property in the frontmatter:"}]},{"type":"element","tag":"pre","props":{"className":"language-yaml shiki shiki-themes github-light github-dark","code":"---\ncover: path/to/cover\ndate: 2022-08-23\n---\n","filename":"content/articles/1.my-new-article.md","language":"yaml","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"cover"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"path/to/cover\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"date"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"2022-08-23\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"---\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"cover"}]},{"type":"text","value":" property can be a local path relative to the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"/public"}]},{"type":"text","value":" directory or an external URL."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Your article will now be displayed in the list with its filename as a default title."}]},{"type":"element","tag":"h2","props":{"id":"edit-your-article"},"children":[{"type":"text","value":"Edit your article"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Under the frontmatter block, enter a Markdown "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"h1"}]},{"type":"text","value":" tag and a line of text:"}]},{"type":"element","tag":"pre","props":{"className":"language-md shiki shiki-themes github-light github-dark","code":"---\ncover: path/to/cover\ndate: 2022-08-23\n---\n# An awesome article\nThis article is little by size but big by heart.\n","filename":"content/articles/1.my-new-article.md","language":"md","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"cover"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"path/to/cover\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"date"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"2022-08-23\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-default-font-weight:bold;--shiki-dark-font-weight:bold"},"children":[{"type":"text","value":"# An awesome article\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"This article is little by size but big by heart.\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Your article will now be displayed in the list with the title and description you wrote in Markdown."}]},{"type":"element","tag":"h2","props":{"id":"override-title-and-description"},"children":[{"type":"text","value":"Override title and description"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you want to change the title and description displayed on the list and in the meta tags of the article, add the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"title"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" property to your frontmatter:"}]},{"type":"element","tag":"pre","props":{"className":"language-md shiki shiki-themes github-light github-dark","code":"---\ncover: path/to/cover\ndate: 2022-08-23\ntitle: Another title\ndescription: Another description\n---\n","filename":"content/articles/1.my-new-article.md","language":"md","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"cover"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"path/to/cover\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"date"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"2022-08-23\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"title"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"Another title\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"description"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"Another description\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You are now ready to edit your article and create new ones!"}]},{"type":"element","tag":"h2","props":{"id":"optional-arguments"},"children":[{"type":"text","value":"Optional Arguments"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In the frontmatter block, you can pass additional options for displaying your article, such as displaying badges on the image:"}]},{"type":"element","tag":"pre","props":{"className":"language-md shiki shiki-themes github-light github-dark","code":"---\ncover: path/to/cover\ndate: 2022-08-23\nbadges: [{\n color: 'white',\n bg: 'rgba(0, 0, 0, 0.3)',\n content: 'Technology'\n}]\n---\n","language":"md","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"cover"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"path/to/cover\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"date"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"2022-08-23\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"badges"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": [{\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":" color"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'white'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":" bg"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'rgba(0, 0, 0, 0.3)'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":" content"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Technology'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"}]\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"read-more"},"children":[{"type":"text","value":"Read more"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Alpine is a Nuxt theme using the Content module in "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"documentDriven"}]},{"type":"text","value":" mode."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"👉 Learn more in the "},{"type":"element","tag":"a","props":{"href":"https://content.nuxtjs.org/","rel":["nofollow"]},"children":[{"type":"text","value":"Nuxt Content documentation"}]},{"type":"text","value":"."}]},{"type":"element","tag":"style","props":{},"children":[{"type":"text","value":"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"create-an-articles-list","depth":2,"text":"Create an articles list"},{"id":"display-an-article-in-the-list","depth":2,"text":"Display an article in the list"},{"id":"edit-your-article","depth":2,"text":"Edit your article"},{"id":"override-title-and-description","depth":2,"text":"Override title and description"},{"id":"optional-arguments","depth":2,"text":"Optional Arguments"},{"id":"read-more","depth":2,"text":"Read more"}]}},"_type":"markdown","_id":"content:articles:3.write-articles.md","_source":"content","_file":"articles/3.write-articles.md","_extension":"md"} \ No newline at end of file diff --git a/api/_content/query/KrTGJqHxiU.1714687088691.json b/api/_content/query/KrTGJqHxiU.1714687088691.json new file mode 100644 index 000000000..ccc4ca625 --- /dev/null +++ b/api/_content/query/KrTGJqHxiU.1714687088691.json @@ -0,0 +1 @@ +[{"_path":"/articles","_dir":"","_draft":false,"_partial":false,"_locale":"","title":"Articles","description":"","layout":"page","_type":"markdown","_id":"content:2.articles.md","_source":"content","_file":"2.articles.md","_extension":"md"},{"_path":"/articles/get-started","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Get started with Alpine","description":"Creating a blog with Alpine is a command away, as well as deploying to many platforms.","cover":"/articles/get-started.webp","author":{"name":"Sébastien Chopin","avatarUrl":"https://pbs.twimg.com/profile_images/1042510623962275840/1Iw_Mvud_400x400.jpg","link":"https://twitter.com/atinux"},"date":"2022-08-23T00:00:00.000Z","layout":"article","_type":"markdown","_id":"content:articles:1.get-started.md","_source":"content","_file":"articles/1.get-started.md","_extension":"md"}] \ No newline at end of file diff --git a/api/_content/query/N48jd3booq.1714687088691.json b/api/_content/query/N48jd3booq.1714687088691.json new file mode 100644 index 000000000..ed89e5911 --- /dev/null +++ b/api/_content/query/N48jd3booq.1714687088691.json @@ -0,0 +1 @@ +[{"_path":"/articles/get-started","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Get started with Alpine","description":"Creating a blog with Alpine is a command away, as well as deploying to many platforms.","cover":"/articles/get-started.webp","author":{"name":"Sébastien Chopin","avatarUrl":"https://pbs.twimg.com/profile_images/1042510623962275840/1Iw_Mvud_400x400.jpg","link":"https://twitter.com/atinux"},"date":"2022-08-23T00:00:00.000Z","layout":"article","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"get-started-with-alpine"},"children":[{"type":"text","value":"Get started with Alpine"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Creating a blog with Alpine is a command away, as well as deploying to many platforms."}]},{"type":"element","tag":"h2","props":{"id":"create-a-blog"},"children":[{"type":"text","value":"Create a blog"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Open a terminal an run the following command:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npx nuxi@latest init -t themes/alpine\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" nuxi@latest"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" init"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":" -t"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" themes/alpine\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"dependencies"},"children":[{"type":"text","value":"Dependencies"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Next, go to to "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"my-blog/"}]},{"type":"text","value":" directory and install the dependencies:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npm install\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" install\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Start the development server on port 3000:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npm run dev\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" run"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" dev\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Next, you can start creating your content in Markdown in the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"content/"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"h2","props":{"id":"deploy"},"children":[{"type":"text","value":"Deploy"}]},{"type":"element","tag":"h3","props":{"id":"static-hosting"},"children":[{"type":"text","value":"Static hosting"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can deploy Alpine to any static hosting by running the following command:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npm run generate\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" run"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" generate\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This command will create a "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"dist/"}]},{"type":"text","value":" directory with the compiled files ready to be uploaded to any static hosting."}]},{"type":"element","tag":"h3","props":{"id":"edge-platforms"},"children":[{"type":"text","value":"Edge platforms"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Alpine supports deploying to the following platforms with "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"zero configuration"}]},{"type":"text","value":":"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://vercel.com","rel":["nofollow"]},"children":[{"type":"text","value":"Vercel"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://netlify.com","rel":["nofollow"]},"children":[{"type":"text","value":"Netlify"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://v3.nuxtjs.org/guide/deploy/presets#supported-hosting-providers","rel":["nofollow"]},"children":[{"type":"text","value":"and more..."}]}]}]},{"type":"element","tag":"h3","props":{"id":"node-server"},"children":[{"type":"text","value":"Node server"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can deploy Alpine to a Node server by running the following command:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npm run build\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" run"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" build\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This command will create a "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":".output/"}]},{"type":"text","value":" directory with the compiled files ready to be uploaded to any Node server."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To start the production server, run the following command:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"node .output/server/index.mjs\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"node"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" .output/server/index.mjs\n"}]}]}]}]},{"type":"element","tag":"style","props":{},"children":[{"type":"text","value":"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"create-a-blog","depth":2,"text":"Create a blog"},{"id":"dependencies","depth":2,"text":"Dependencies"},{"id":"development","depth":2,"text":"Development"},{"id":"deploy","depth":2,"text":"Deploy","children":[{"id":"static-hosting","depth":3,"text":"Static hosting"},{"id":"edge-platforms","depth":3,"text":"Edge platforms"},{"id":"node-server","depth":3,"text":"Node server"}]}]}},"_type":"markdown","_id":"content:articles:1.get-started.md","_source":"content","_file":"articles/1.get-started.md","_extension":"md"},{"_path":"/articles/configure","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Configure Alpine","description":"Learn how to configure Alpine with the app.config.ts file.","cover":"/articles/configure-alpine.webp","author":{"name":"Clément Ollivier","avatarUrl":"https://pbs.twimg.com/profile_images/1370286658432724996/ZMSDzzIi_400x400.jpg","link":"https://twitter.com/clemcodes"},"date":"2022-08-23T00:00:00.000Z","layout":"article","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"configure-alpine"},"children":[{"type":"text","value":"Configure Alpine"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To configure meta tags, social links or even the Alpine theme display, update the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"alpine"}]},{"type":"text","value":" key in the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"app.config.ts"}]},{"type":"text","value":" at the root of your project:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"export default defineAppConfig({\n alpine: {\n /* Alpine configuration goes here */\n }\n}\n","filename":"app.config.ts","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":" default"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":" defineAppConfig"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" /* Alpine configuration goes here */\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"}\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can look at the "},{"type":"element","tag":"a","props":{"href":"https://github.com/nuxt-themes/alpine/tree/main/app.config.ts","rel":["nofollow"]},"children":[{"type":"text","value":"default config"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"a","props":{"href":"https://github.com/nuxt-themes/alpine/tree/main/app.config.ts","rel":["nofollow"]},"children":[{"type":"text","value":"config schema"}]},{"type":"text","value":" also gives comments on all the configuration parameters."}]},{"type":"element","tag":"h2","props":{"id":"meta-tags"},"children":[{"type":"text","value":"Meta tags"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Configure the title, description and social image of your website:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"export default defineAppConfig({\n alpine: {\n title: 'Alpine',\n description: 'The minimalist blog theme',\n image: '/social-card-preview.png',\n // image can also be an object:\n image: {\n src: '/social-card-preview.png',\n alt: 'An image showcasing my project.',\n width: 400,\n height: 300\n }\n }\n})\n","filename":"app.config.ts","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":" default"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":" defineAppConfig"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" title: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Alpine'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" description: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'The minimalist blog theme'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" image: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'/social-card-preview.png'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // image can also be an object:\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" image: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" src: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'/social-card-preview.png'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alt: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'An image showcasing my project.'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":10},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" width: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"400"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":11},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" height: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"300\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":12},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":13},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":14},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"})\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"social-links"},"children":[{"type":"text","value":"Social links"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To configure the social links displayed in the footer, use the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"socials"}]},{"type":"text","value":" property:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"export default defineAppConfig({\n alpine: {\n socials: {\n twitter: 'nuxtlabs',\n instagram: 'wearenuxt',\n linkedin: {\n icon: 'uil:linkedin',\n label: 'LinkedIn',\n href: 'https://www.linkedin.com/company/nuxtlabs'\n },\n mastodon: {\n icon: 'simple-icons:mastodon',\n label: 'Mastodon',\n href: 'https://m.webtoo.ls/@nuxt',\n rel: 'me'\n }\n }\n }\n})\n","filename":"app.config.ts","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":" default"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":" defineAppConfig"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" socials: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" twitter: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'nuxtlabs'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" instagram: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'wearenuxt'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" linkedin: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" icon: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'uil:linkedin'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" label: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'LinkedIn'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" href: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'https://www.linkedin.com/company/nuxtlabs'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":10},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" },\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":11},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" mastodon: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":12},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" icon: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'simple-icons:mastodon'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":13},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" label: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Mastodon'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":14},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" href: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'https://m.webtoo.ls/@nuxt'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":15},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" rel: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'me'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":16},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":17},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":18},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":19},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"})\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"theme-display"},"children":[{"type":"text","value":"Theme display"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Alpine Header and Footer can also be customized via the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"app.config.ts"}]},{"type":"text","value":" file:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"defineAppConfig({\n alpine: {\n // Remove header with header: false\n header: {\n position: 'inline', // possible value are : 'none' | 'left' | 'center' | 'right' | 'inline'\n logo: false\n },\n // Remove header with footer: false\n footer: {\n credits: {\n enabled: true, // possible value are : true | false\n repository: 'https://www.github.com/nuxt-themes/alpine' // our github repository\n },\n navigation: false, // possible value are : true | false\n position: 'center', // possible value are : 'none' | 'left' | 'center' | 'right'\n message: 'Follow me on' // string that will be displayed on the footer (leave empty or delete to disable)\n }\n // Disable back to top button: false\n backToTop: {\n text: 'Back to top',\n icon: 'material-symbols:arrow-upward'\n }\n }\n})\n","filename":"app.config.ts","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"defineAppConfig"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // Remove header with header: false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" header: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" position: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'inline'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":", "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":"// possible value are : 'none' | 'left' | 'center' | 'right' | 'inline'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" logo: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" },\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // Remove header with footer: false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" footer: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":10},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" credits: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":11},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" enabled: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"true"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":", "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":"// possible value are : true | false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":12},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" repository: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'https://www.github.com/nuxt-themes/alpine'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // our github repository\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":13},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" },\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":14},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" navigation: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":", "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":"// possible value are : true | false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":15},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" position: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'center'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":", "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":"// possible value are : 'none' | 'left' | 'center' | 'right'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":16},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" message: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Follow me on'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // string that will be displayed on the footer (leave empty or delete to disable)\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":17},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":18},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // Disable back to top button: false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":19},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" backToTop: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":20},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" text: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Back to top'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":21},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" icon: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'material-symbols:arrow-upward'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":22},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":23},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":24},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"})\n"}]}]}]}]},{"type":"element","tag":"style","props":{},"children":[{"type":"text","value":"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"meta-tags","depth":2,"text":"Meta tags"},{"id":"social-links","depth":2,"text":"Social links"},{"id":"theme-display","depth":2,"text":"Theme display"}]}},"_type":"markdown","_id":"content:articles:2.configure.md","_source":"content","_file":"articles/2.configure.md","_extension":"md"},{"_path":"/articles/write-articles","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Write Articles","description":"Writing Markdown articles in Alpine is straightforward.","cover":"/articles/write-articles.webp","date":"2022-08-23T00:00:00.000Z","layout":"article","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"write-articles"},"children":[{"type":"text","value":"Write Articles"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Write Markdown articles in Alpine is straightforward."}]},{"type":"element","tag":"h2","props":{"id":"create-an-articles-list"},"children":[{"type":"text","value":"Create an articles list"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Create a new file in the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"content/"}]},{"type":"text","value":" directory:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"touch content/2.articles.md\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"touch"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" content/2.articles.md\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The numbered prefix determines the order of the menu items."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In this file, use the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"articles-list"}]},{"type":"text","value":" component to display the list of articles:"}]},{"type":"element","tag":"pre","props":{"className":"language-md shiki shiki-themes github-light github-dark","code":"---\ntitle: 'Articles'\nlayout: 'page'\n---\n::articles-list\n---\npath: articles\n---\n::\n","filename":"2.articles.md","language":"md","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"title"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Articles'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"layout"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'page'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"::articles-list\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-default-font-weight:bold;--shiki-dark-font-weight:bold"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"path: articles\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-default-font-weight:bold;--shiki-dark-font-weight:bold"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"::\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"path"}]},{"type":"text","value":" prop corresponds to the directory where the articles are stored."}]},{"type":"element","tag":"h2","props":{"id":"display-an-article-in-the-list"},"children":[{"type":"text","value":"Display an article in the list"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Create a new file in the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"/content/articles"}]},{"type":"text","value":" directory:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"mkdir content/articles\ntouch content/articles/1.my-new-article.md\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"mkdir"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" content/articles\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"touch"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" content/articles/1.my-new-article.md\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For your article to be correctly displayed in the "},{"type":"element","tag":"a","props":{"href":"/articles"},"children":[{"type":"text","value":"articles list"}]},{"type":"text","value":", define a "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"cover"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"date"}]},{"type":"text","value":" property in the frontmatter:"}]},{"type":"element","tag":"pre","props":{"className":"language-yaml shiki shiki-themes github-light github-dark","code":"---\ncover: path/to/cover\ndate: 2022-08-23\n---\n","filename":"content/articles/1.my-new-article.md","language":"yaml","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"cover"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"path/to/cover\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"date"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"2022-08-23\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"---\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"cover"}]},{"type":"text","value":" property can be a local path relative to the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"/public"}]},{"type":"text","value":" directory or an external URL."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Your article will now be displayed in the list with its filename as a default title."}]},{"type":"element","tag":"h2","props":{"id":"edit-your-article"},"children":[{"type":"text","value":"Edit your article"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Under the frontmatter block, enter a Markdown "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"h1"}]},{"type":"text","value":" tag and a line of text:"}]},{"type":"element","tag":"pre","props":{"className":"language-md shiki shiki-themes github-light github-dark","code":"---\ncover: path/to/cover\ndate: 2022-08-23\n---\n# An awesome article\nThis article is little by size but big by heart.\n","filename":"content/articles/1.my-new-article.md","language":"md","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"cover"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"path/to/cover\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"date"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"2022-08-23\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-default-font-weight:bold;--shiki-dark-font-weight:bold"},"children":[{"type":"text","value":"# An awesome article\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"This article is little by size but big by heart.\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Your article will now be displayed in the list with the title and description you wrote in Markdown."}]},{"type":"element","tag":"h2","props":{"id":"override-title-and-description"},"children":[{"type":"text","value":"Override title and description"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you want to change the title and description displayed on the list and in the meta tags of the article, add the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"title"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" property to your frontmatter:"}]},{"type":"element","tag":"pre","props":{"className":"language-md shiki shiki-themes github-light github-dark","code":"---\ncover: path/to/cover\ndate: 2022-08-23\ntitle: Another title\ndescription: Another description\n---\n","filename":"content/articles/1.my-new-article.md","language":"md","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"cover"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"path/to/cover\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"date"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"2022-08-23\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"title"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"Another title\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"description"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"Another description\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You are now ready to edit your article and create new ones!"}]},{"type":"element","tag":"h2","props":{"id":"optional-arguments"},"children":[{"type":"text","value":"Optional Arguments"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In the frontmatter block, you can pass additional options for displaying your article, such as displaying badges on the image:"}]},{"type":"element","tag":"pre","props":{"className":"language-md shiki shiki-themes github-light github-dark","code":"---\ncover: path/to/cover\ndate: 2022-08-23\nbadges: [{\n color: 'white',\n bg: 'rgba(0, 0, 0, 0.3)',\n content: 'Technology'\n}]\n---\n","language":"md","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"cover"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"path/to/cover\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"date"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"2022-08-23\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":"badges"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": [{\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":" color"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'white'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":" bg"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'rgba(0, 0, 0, 0.3)'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#22863A;--shiki-dark:#85E89D"},"children":[{"type":"text","value":" content"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Technology'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"}]\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"---\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"read-more"},"children":[{"type":"text","value":"Read more"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Alpine is a Nuxt theme using the Content module in "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"documentDriven"}]},{"type":"text","value":" mode."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"👉 Learn more in the "},{"type":"element","tag":"a","props":{"href":"https://content.nuxtjs.org/","rel":["nofollow"]},"children":[{"type":"text","value":"Nuxt Content documentation"}]},{"type":"text","value":"."}]},{"type":"element","tag":"style","props":{},"children":[{"type":"text","value":"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"create-an-articles-list","depth":2,"text":"Create an articles list"},{"id":"display-an-article-in-the-list","depth":2,"text":"Display an article in the list"},{"id":"edit-your-article","depth":2,"text":"Edit your article"},{"id":"override-title-and-description","depth":2,"text":"Override title and description"},{"id":"optional-arguments","depth":2,"text":"Optional Arguments"},{"id":"read-more","depth":2,"text":"Read more"}]}},"_type":"markdown","_id":"content:articles:3.write-articles.md","_source":"content","_file":"articles/3.write-articles.md","_extension":"md"},{"_path":"/articles/design-tokens","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Customize Alpine","description":"Leverage the tokens.config.ts to give your identity to Alpine.","cover":"/articles/design-tokens.webp","date":"2022-08-23T00:00:00.000Z","layout":"article","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"customize-alpine"},"children":[{"type":"text","value":"Customize Alpine"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Leverage the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"tokens.config.ts"}]},{"type":"text","value":" to give your identity to Alpine."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Look at the "},{"type":"element","tag":"a","props":{"href":"https://github.com/nuxt-themes/alpine/blob/main/tokens.config.ts","rel":["nofollow"]},"children":[{"type":"text","value":"default tokens config"}]},{"type":"text","value":" to check all the Alpine related Design Tokens."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Alpine is also powered by "},{"type":"element","tag":"a","props":{"href":"https://www.npmjs.com/package/@nuxt-themes/tokens","rel":["nofollow"]},"children":[{"type":"text","value":"@nuxt-themes/tokens"}]},{"type":"text","value":", see the "},{"type":"element","tag":"a","props":{"href":"https://unpkg.com/@nuxt-themes/tokens@latest/dist/tokens.config.ts","rel":["nofollow"]},"children":[{"type":"text","value":"package tokens.config.ts"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can configure all the theme tokens to change the apperance of Alpine by creating a "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"tokens.config.ts"}]},{"type":"text","value":" in your project:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"import { defineTheme } from 'pinceau'\n\nexport default defineTheme({\n alpine: {\n body: {\n // Update the background color in light & dark mode\n backgroundColor: {\n initial: '#f8fafc',\n dark: '#0f172a'\n }\n }\n }\n})\n","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" { defineTheme } "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" 'pinceau'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"emptyLinePlaceholder":true},"children":[{"type":"text","value":"\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":" default"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":" defineTheme"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" body: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // Update the background color in light & dark mode\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" backgroundColor: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" initial: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'#f8fafc'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" dark: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'#0f172a'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":10},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":11},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":12},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":13},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"})\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you are using "},{"type":"element","tag":"a","props":{"href":"https://nuxt.studio","rel":["nofollow"]},"children":[{"type":"text","value":"Nuxt Studio"}]},{"type":"text","value":", you can use an UI to update the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"token.config.ts"}]},{"type":"text","value":" of your Alpine project:"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://nuxt.studio","rel":["nofollow"]},"children":[{"type":"element","tag":"img","props":{"alt":"design-tokens-studio.png","src":"/design-tokens-studio.png"},"children":[]}]}]},{"type":"element","tag":"style","props":{},"children":[{"type":"text","value":"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:articles:4.design-tokens.md","_source":"content","_file":"articles/4.design-tokens.md","_extension":"md"}] \ No newline at end of file diff --git a/api/_content/query/QHUKJ8aQxX.1714687088691.json b/api/_content/query/QHUKJ8aQxX.1714687088691.json new file mode 100644 index 000000000..858b87bef --- /dev/null +++ b/api/_content/query/QHUKJ8aQxX.1714687088691.json @@ -0,0 +1 @@ +{"_path":"/articles/design-tokens","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Customize Alpine","description":"Leverage the tokens.config.ts to give your identity to Alpine.","cover":"/articles/design-tokens.webp","date":"2022-08-23T00:00:00.000Z","layout":"article","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"customize-alpine"},"children":[{"type":"text","value":"Customize Alpine"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Leverage the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"tokens.config.ts"}]},{"type":"text","value":" to give your identity to Alpine."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Look at the "},{"type":"element","tag":"a","props":{"href":"https://github.com/nuxt-themes/alpine/blob/main/tokens.config.ts","rel":["nofollow"]},"children":[{"type":"text","value":"default tokens config"}]},{"type":"text","value":" to check all the Alpine related Design Tokens."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Alpine is also powered by "},{"type":"element","tag":"a","props":{"href":"https://www.npmjs.com/package/@nuxt-themes/tokens","rel":["nofollow"]},"children":[{"type":"text","value":"@nuxt-themes/tokens"}]},{"type":"text","value":", see the "},{"type":"element","tag":"a","props":{"href":"https://unpkg.com/@nuxt-themes/tokens@latest/dist/tokens.config.ts","rel":["nofollow"]},"children":[{"type":"text","value":"package tokens.config.ts"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can configure all the theme tokens to change the apperance of Alpine by creating a "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"tokens.config.ts"}]},{"type":"text","value":" in your project:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"import { defineTheme } from 'pinceau'\n\nexport default defineTheme({\n alpine: {\n body: {\n // Update the background color in light & dark mode\n backgroundColor: {\n initial: '#f8fafc',\n dark: '#0f172a'\n }\n }\n }\n})\n","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" { defineTheme } "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" 'pinceau'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"emptyLinePlaceholder":true},"children":[{"type":"text","value":"\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":" default"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":" defineTheme"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" body: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // Update the background color in light & dark mode\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" backgroundColor: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" initial: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'#f8fafc'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" dark: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'#0f172a'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":10},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":11},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":12},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":13},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"})\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you are using "},{"type":"element","tag":"a","props":{"href":"https://nuxt.studio","rel":["nofollow"]},"children":[{"type":"text","value":"Nuxt Studio"}]},{"type":"text","value":", you can use an UI to update the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"token.config.ts"}]},{"type":"text","value":" of your Alpine project:"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://nuxt.studio","rel":["nofollow"]},"children":[{"type":"element","tag":"img","props":{"alt":"design-tokens-studio.png","src":"/design-tokens-studio.png"},"children":[]}]}]},{"type":"element","tag":"style","props":{},"children":[{"type":"text","value":"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:articles:4.design-tokens.md","_source":"content","_file":"articles/4.design-tokens.md","_extension":"md"} \ No newline at end of file diff --git a/api/_content/query/ZHfNdxC1GC.1714687088691.json b/api/_content/query/ZHfNdxC1GC.1714687088691.json new file mode 100644 index 000000000..8ec6a3000 --- /dev/null +++ b/api/_content/query/ZHfNdxC1GC.1714687088691.json @@ -0,0 +1 @@ +[{"_path":"/","_dir":"","_draft":false,"_partial":false,"_locale":"","title":"About","description":"An open source blog theme powered by Nuxt.","layout":"default","head":{"title":"Alpine"},"_type":"markdown","_id":"content:1.index.md","_source":"content","_file":"1.index.md","_extension":"md"},{"_path":"/contact","_dir":"","_draft":false,"_partial":false,"_locale":"","title":"Contact","description":"","layout":"default","_type":"markdown","_id":"content:3.contact.md","_source":"content","_file":"3.contact.md","_extension":"md"}] \ No newline at end of file diff --git a/api/_content/query/brX4CwCJoQ.1714687088691.json b/api/_content/query/brX4CwCJoQ.1714687088691.json new file mode 100644 index 000000000..22038b038 --- /dev/null +++ b/api/_content/query/brX4CwCJoQ.1714687088691.json @@ -0,0 +1 @@ +{"_path":"/","_dir":"","_draft":false,"_partial":false,"_locale":"","title":"About","description":"An open source blog theme powered by Nuxt.","layout":"default","head":{"title":"Alpine"},"body":{"type":"root","children":[{"type":"element","tag":"hero","props":{"image":"/alpine-0.webp"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Hi, I am Alpine."}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"An "},{"type":"element","tag":"a","props":{"href":"https://github.com/nuxt-themes/alpine","rel":["nofollow"]},"children":[{"type":"text","value":"open source blog theme"}]},{"type":"text","value":" powered by "},{"type":"element","tag":"a","props":{"href":"https://content.nuxtjs.org","rel":["nofollow"]},"children":[{"type":"text","value":"Nuxt Content"}]},{"type":"text","value":", editable on "},{"type":"element","tag":"a","props":{"href":"https://nuxt.studio","rel":["nofollow"]},"children":[{"type":"text","value":"Nuxt Studio"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Write pages in Markdown and Vue components with the "},{"type":"element","tag":"a","props":{"href":"https://content.nuxtjs.org/guide/writing/mdc","rel":["nofollow"]},"children":[{"type":"text","value":"MDC syntax"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Use "},{"type":"element","tag":"a","props":{"href":"https://elements.nuxt.space","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"30+ built-in"}]}]},{"type":"text","value":" components in your Markdown pages."}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non risus. Suspendisse lectus tortor, dignissim sit amet, adipiscing nec, ultricies sed, dolor. Cras elementum ultrices diam. Maecenas ligula massa, varius a, semper congue, euismod non, mi. Proin porttitor, orci nec nonummy molestie, enim est eleifend mi, non fermentum diam nisl sit amet erat. Duis semper. Duis arcu massa, scelerisque vitae, consequat in, pretium a, enim."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Pellentesque congue. Ut in risus volutpat libero pharetra tempor. Cras vestibulum bibendum augue. Praesent egestas leo in pede. Praesent blandit odio eu enim. Pellentesque sed dui ut augue blandit sodales. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aliquam nibh. Mauris ac mauris sed pede pellentesque fermentum. Maecenas adipiscing ante non diam sodales hendrerit."}]},{"type":"element","tag":"gallery","props":{":images":"[\"/alpine-0.webp\",\"/alpine-1.webp\",\"/alpine-2.webp\"]"},"children":[]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:1.index.md","_source":"content","_file":"1.index.md","_extension":"md"} \ No newline at end of file diff --git a/api/_content/query/gJgh1hc9nL.1714687088691.json b/api/_content/query/gJgh1hc9nL.1714687088691.json new file mode 100644 index 000000000..00ef08025 --- /dev/null +++ b/api/_content/query/gJgh1hc9nL.1714687088691.json @@ -0,0 +1 @@ +{"_path":"/contact","_dir":"","_draft":false,"_partial":false,"_locale":"","title":"Contact","description":"","layout":"default","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"get-in-touch"},"children":[{"type":"text","value":"Get in touch"}]},{"type":"element","tag":"contact-form","props":{":fields":"[{\"type\":\"text\",\"name\":\"name\",\"label\":\"Your name\",\"required\":true},{\"type\":\"email\",\"name\":\"email\",\"label\":\"Your email\",\"required\":true},{\"type\":\"text\",\"name\":\"subject\",\"label\":\"Subject\",\"required\":false},{\"type\":\"textarea\",\"name\":\"message\",\"label\":\"Message\",\"required\":true}]"},"children":[]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:3.contact.md","_source":"content","_file":"3.contact.md","_extension":"md"} \ No newline at end of file diff --git a/api/_content/query/kvkF8an8eA.1714687088691.json b/api/_content/query/kvkF8an8eA.1714687088691.json new file mode 100644 index 000000000..24eab9c4f --- /dev/null +++ b/api/_content/query/kvkF8an8eA.1714687088691.json @@ -0,0 +1 @@ +{"_path":"/articles/get-started","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Get started with Alpine","description":"Creating a blog with Alpine is a command away, as well as deploying to many platforms.","cover":"/articles/get-started.webp","author":{"name":"Sébastien Chopin","avatarUrl":"https://pbs.twimg.com/profile_images/1042510623962275840/1Iw_Mvud_400x400.jpg","link":"https://twitter.com/atinux"},"date":"2022-08-23T00:00:00.000Z","layout":"article","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"get-started-with-alpine"},"children":[{"type":"text","value":"Get started with Alpine"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Creating a blog with Alpine is a command away, as well as deploying to many platforms."}]},{"type":"element","tag":"h2","props":{"id":"create-a-blog"},"children":[{"type":"text","value":"Create a blog"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Open a terminal an run the following command:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npx nuxi@latest init -t themes/alpine\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" nuxi@latest"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" init"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":" -t"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" themes/alpine\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"dependencies"},"children":[{"type":"text","value":"Dependencies"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Next, go to to "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"my-blog/"}]},{"type":"text","value":" directory and install the dependencies:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npm install\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" install\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Start the development server on port 3000:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npm run dev\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" run"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" dev\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Next, you can start creating your content in Markdown in the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"content/"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"h2","props":{"id":"deploy"},"children":[{"type":"text","value":"Deploy"}]},{"type":"element","tag":"h3","props":{"id":"static-hosting"},"children":[{"type":"text","value":"Static hosting"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can deploy Alpine to any static hosting by running the following command:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npm run generate\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" run"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" generate\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This command will create a "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"dist/"}]},{"type":"text","value":" directory with the compiled files ready to be uploaded to any static hosting."}]},{"type":"element","tag":"h3","props":{"id":"edge-platforms"},"children":[{"type":"text","value":"Edge platforms"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Alpine supports deploying to the following platforms with "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"zero configuration"}]},{"type":"text","value":":"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://vercel.com","rel":["nofollow"]},"children":[{"type":"text","value":"Vercel"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://netlify.com","rel":["nofollow"]},"children":[{"type":"text","value":"Netlify"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://v3.nuxtjs.org/guide/deploy/presets#supported-hosting-providers","rel":["nofollow"]},"children":[{"type":"text","value":"and more..."}]}]}]},{"type":"element","tag":"h3","props":{"id":"node-server"},"children":[{"type":"text","value":"Node server"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can deploy Alpine to a Node server by running the following command:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"npm run build\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" run"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" build\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This command will create a "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":".output/"}]},{"type":"text","value":" directory with the compiled files ready to be uploaded to any Node server."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To start the production server, run the following command:"}]},{"type":"element","tag":"pre","props":{"className":"language-bash shiki shiki-themes github-light github-dark","code":"node .output/server/index.mjs\n","language":"bash","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"node"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":" .output/server/index.mjs\n"}]}]}]}]},{"type":"element","tag":"style","props":{},"children":[{"type":"text","value":"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"create-a-blog","depth":2,"text":"Create a blog"},{"id":"dependencies","depth":2,"text":"Dependencies"},{"id":"development","depth":2,"text":"Development"},{"id":"deploy","depth":2,"text":"Deploy","children":[{"id":"static-hosting","depth":3,"text":"Static hosting"},{"id":"edge-platforms","depth":3,"text":"Edge platforms"},{"id":"node-server","depth":3,"text":"Node server"}]}]}},"_type":"markdown","_id":"content:articles:1.get-started.md","_source":"content","_file":"articles/1.get-started.md","_extension":"md"} \ No newline at end of file diff --git a/api/_content/query/neu5j283gn.1714687088691.json b/api/_content/query/neu5j283gn.1714687088691.json new file mode 100644 index 000000000..48027765c --- /dev/null +++ b/api/_content/query/neu5j283gn.1714687088691.json @@ -0,0 +1 @@ +[{"_path":"/contact","_dir":"","_draft":false,"_partial":false,"_locale":"","title":"Contact","description":"","layout":"default","_type":"markdown","_id":"content:3.contact.md","_source":"content","_file":"3.contact.md","_extension":"md"},{"_path":"/articles/configure","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Configure Alpine","description":"Learn how to configure Alpine with the app.config.ts file.","cover":"/articles/configure-alpine.webp","author":{"name":"Clément Ollivier","avatarUrl":"https://pbs.twimg.com/profile_images/1370286658432724996/ZMSDzzIi_400x400.jpg","link":"https://twitter.com/clemcodes"},"date":"2022-08-23T00:00:00.000Z","layout":"article","_type":"markdown","_id":"content:articles:2.configure.md","_source":"content","_file":"articles/2.configure.md","_extension":"md"}] \ No newline at end of file diff --git a/api/_content/query/sAwLUTM99v.1714687088691.json b/api/_content/query/sAwLUTM99v.1714687088691.json new file mode 100644 index 000000000..146019dae --- /dev/null +++ b/api/_content/query/sAwLUTM99v.1714687088691.json @@ -0,0 +1 @@ +{"_path":"/articles/configure","_dir":"articles","_draft":false,"_partial":false,"_locale":"","title":"Configure Alpine","description":"Learn how to configure Alpine with the app.config.ts file.","cover":"/articles/configure-alpine.webp","author":{"name":"Clément Ollivier","avatarUrl":"https://pbs.twimg.com/profile_images/1370286658432724996/ZMSDzzIi_400x400.jpg","link":"https://twitter.com/clemcodes"},"date":"2022-08-23T00:00:00.000Z","layout":"article","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"configure-alpine"},"children":[{"type":"text","value":"Configure Alpine"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To configure meta tags, social links or even the Alpine theme display, update the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"alpine"}]},{"type":"text","value":" key in the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"app.config.ts"}]},{"type":"text","value":" at the root of your project:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"export default defineAppConfig({\n alpine: {\n /* Alpine configuration goes here */\n }\n}\n","filename":"app.config.ts","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":" default"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":" defineAppConfig"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" /* Alpine configuration goes here */\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"}\n"}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can look at the "},{"type":"element","tag":"a","props":{"href":"https://github.com/nuxt-themes/alpine/tree/main/app.config.ts","rel":["nofollow"]},"children":[{"type":"text","value":"default config"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"a","props":{"href":"https://github.com/nuxt-themes/alpine/tree/main/app.config.ts","rel":["nofollow"]},"children":[{"type":"text","value":"config schema"}]},{"type":"text","value":" also gives comments on all the configuration parameters."}]},{"type":"element","tag":"h2","props":{"id":"meta-tags"},"children":[{"type":"text","value":"Meta tags"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Configure the title, description and social image of your website:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"export default defineAppConfig({\n alpine: {\n title: 'Alpine',\n description: 'The minimalist blog theme',\n image: '/social-card-preview.png',\n // image can also be an object:\n image: {\n src: '/social-card-preview.png',\n alt: 'An image showcasing my project.',\n width: 400,\n height: 300\n }\n }\n})\n","filename":"app.config.ts","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":" default"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":" defineAppConfig"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" title: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Alpine'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" description: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'The minimalist blog theme'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" image: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'/social-card-preview.png'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // image can also be an object:\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" image: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" src: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'/social-card-preview.png'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alt: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'An image showcasing my project.'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":10},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" width: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"400"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":11},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" height: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"300\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":12},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":13},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":14},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"})\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"social-links"},"children":[{"type":"text","value":"Social links"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To configure the social links displayed in the footer, use the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"socials"}]},{"type":"text","value":" property:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"export default defineAppConfig({\n alpine: {\n socials: {\n twitter: 'nuxtlabs',\n instagram: 'wearenuxt',\n linkedin: {\n icon: 'uil:linkedin',\n label: 'LinkedIn',\n href: 'https://www.linkedin.com/company/nuxtlabs'\n },\n mastodon: {\n icon: 'simple-icons:mastodon',\n label: 'Mastodon',\n href: 'https://m.webtoo.ls/@nuxt',\n rel: 'me'\n }\n }\n }\n})\n","filename":"app.config.ts","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#D73A49;--shiki-dark:#F97583"},"children":[{"type":"text","value":" default"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":" defineAppConfig"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" socials: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" twitter: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'nuxtlabs'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" instagram: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'wearenuxt'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" linkedin: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" icon: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'uil:linkedin'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" label: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'LinkedIn'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" href: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'https://www.linkedin.com/company/nuxtlabs'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":10},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" },\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":11},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" mastodon: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":12},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" icon: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'simple-icons:mastodon'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":13},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" label: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Mastodon'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":14},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" href: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'https://m.webtoo.ls/@nuxt'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":15},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" rel: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'me'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":16},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":17},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":18},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":19},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"})\n"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"theme-display"},"children":[{"type":"text","value":"Theme display"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Alpine Header and Footer can also be customized via the "},{"type":"element","tag":"code","props":{"className":[]},"children":[{"type":"text","value":"app.config.ts"}]},{"type":"text","value":" file:"}]},{"type":"element","tag":"pre","props":{"className":"language-ts shiki shiki-themes github-light github-dark","code":"defineAppConfig({\n alpine: {\n // Remove header with header: false\n header: {\n position: 'inline', // possible value are : 'none' | 'left' | 'center' | 'right' | 'inline'\n logo: false\n },\n // Remove header with footer: false\n footer: {\n credits: {\n enabled: true, // possible value are : true | false\n repository: 'https://www.github.com/nuxt-themes/alpine' // our github repository\n },\n navigation: false, // possible value are : true | false\n position: 'center', // possible value are : 'none' | 'left' | 'center' | 'right'\n message: 'Follow me on' // string that will be displayed on the footer (leave empty or delete to disable)\n }\n // Disable back to top button: false\n backToTop: {\n text: 'Back to top',\n icon: 'material-symbols:arrow-upward'\n }\n }\n})\n","filename":"app.config.ts","language":"ts","meta":"","style":""},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line","line":1},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6F42C1;--shiki-dark:#B392F0"},"children":[{"type":"text","value":"defineAppConfig"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"({\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":2},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" alpine: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":3},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // Remove header with header: false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":4},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" header: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":5},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" position: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'inline'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":", "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":"// possible value are : 'none' | 'left' | 'center' | 'right' | 'inline'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":6},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" logo: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":7},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" },\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":8},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // Remove header with footer: false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":9},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" footer: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":10},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" credits: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":11},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" enabled: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"true"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":", "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":"// possible value are : true | false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":12},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" repository: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'https://www.github.com/nuxt-themes/alpine'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // our github repository\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":13},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" },\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":14},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" navigation: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#005CC5;--shiki-dark:#79B8FF"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":", "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":"// possible value are : true | false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":15},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" position: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'center'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":", "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":"// possible value are : 'none' | 'left' | 'center' | 'right'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":16},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" message: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Follow me on'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // string that will be displayed on the footer (leave empty or delete to disable)\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":17},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":18},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#6A737D;--shiki-dark:#6A737D"},"children":[{"type":"text","value":" // Disable back to top button: false\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":19},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" backToTop: {\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":20},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" text: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'Back to top'"}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":",\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":21},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" icon: "}]},{"type":"element","tag":"span","props":{"style":"--shiki-default:#032F62;--shiki-dark:#9ECBFF"},"children":[{"type":"text","value":"'material-symbols:arrow-upward'\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":22},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":23},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":" }\n"}]}]},{"type":"element","tag":"span","props":{"class":"line","line":24},"children":[{"type":"element","tag":"span","props":{"style":"--shiki-default:#24292E;--shiki-dark:#E1E4E8"},"children":[{"type":"text","value":"})\n"}]}]}]}]},{"type":"element","tag":"style","props":{},"children":[{"type":"text","value":"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"meta-tags","depth":2,"text":"Meta tags"},{"id":"social-links","depth":2,"text":"Social links"},{"id":"theme-display","depth":2,"text":"Theme display"}]}},"_type":"markdown","_id":"content:articles:2.configure.md","_source":"content","_file":"articles/2.configure.md","_extension":"md"} \ No newline at end of file diff --git a/api/_content/query/xWeY3NfYtX.1714687088691.json b/api/_content/query/xWeY3NfYtX.1714687088691.json new file mode 100644 index 000000000..df1d45b44 --- /dev/null +++ b/api/_content/query/xWeY3NfYtX.1714687088691.json @@ -0,0 +1 @@ +[null,{"_path":"/articles","_dir":"","_draft":false,"_partial":false,"_locale":"","title":"Articles","description":"","layout":"page","_type":"markdown","_id":"content:2.articles.md","_source":"content","_file":"2.articles.md","_extension":"md"}] \ No newline at end of file diff --git a/app.config.ts b/app.config.ts deleted file mode 100644 index cc980f124..000000000 --- a/app.config.ts +++ /dev/null @@ -1,41 +0,0 @@ -export default defineAppConfig({ - alpine: { - title: 'Alpine', - description: 'The minimalist blog theme', - image: { - src: '/social-card-preview.png', - alt: 'An image showcasing my project.', - width: 400, - height: 300 - }, - header: { - position: 'right', - logo: { - path: '/logo.svg', - pathDark: '/logo-dark.svg', - alt: 'alpine' - } - }, - footer: { - credits: { - enabled: true, - text: 'Alpine', - repository: 'https://www.github.com/nuxt-themes/alpine' - }, - navigation: true, - alignment: 'center', - message: 'Follow me on' - }, - socials: { - twitter: '', - instagram: '', - github: '', - facebook: '', - medium: '', - youtube: '' - }, - form: { - successMessage: 'Message sent. Thank you!' - } - } -}) diff --git a/app.vue b/app.vue deleted file mode 100644 index 9d54ccbe0..000000000 --- a/app.vue +++ /dev/null @@ -1,11 +0,0 @@ - - - diff --git a/articles/_payload.json b/articles/_payload.json new file mode 100644 index 000000000..c12433bc6 --- /dev/null +++ b/articles/_payload.json @@ -0,0 +1 @@ +[{"data":1,"prerenderedAt":2304},["Reactive",2],{"articles":3},[4,382,1307,2040],{"_path":5,"_dir":6,"_draft":7,"_partial":7,"_locale":8,"title":9,"description":10,"cover":11,"author":12,"date":16,"layout":17,"body":18,"_type":377,"_id":378,"_source":379,"_file":380,"_extension":381},"/articles/get-started","articles",false,"","Get started with Alpine","Creating a blog with Alpine is a command away, as well as deploying to many platforms.","/articles/get-started.webp",{"name":13,"avatarUrl":14,"link":15},"Sébastien Chopin","https://pbs.twimg.com/profile_images/1042510623962275840/1Iw_Mvud_400x400.jpg","https://twitter.com/atinux","2022-08-23T00:00:00.000Z","article",{"type":19,"children":20,"toc":365},"root",[21,29,34,41,46,91,97,110,130,136,141,165,178,184,191,196,219,232,238,251,288,294,299,322,334,339,359],{"type":22,"tag":23,"props":24,"children":26},"element","h1",{"id":25},"get-started-with-alpine",[27],{"type":28,"value":9},"text",{"type":22,"tag":30,"props":31,"children":32},"p",{},[33],{"type":28,"value":10},{"type":22,"tag":35,"props":36,"children":38},"h2",{"id":37},"create-a-blog",[39],{"type":28,"value":40},"Create a blog",{"type":22,"tag":30,"props":42,"children":43},{},[44],{"type":28,"value":45},"Open a terminal an run the following command:",{"type":22,"tag":47,"props":48,"children":52},"pre",{"className":49,"code":50,"language":51,"meta":8,"style":8},"language-bash shiki shiki-themes github-light github-dark","npx nuxi@latest init -t themes/alpine\n","bash",[53],{"type":22,"tag":54,"props":55,"children":56},"code",{"__ignoreMap":8},[57],{"type":22,"tag":58,"props":59,"children":62},"span",{"class":60,"line":61},"line",1,[63,69,75,80,86],{"type":22,"tag":58,"props":64,"children":66},{"style":65},"--shiki-default:#6F42C1;--shiki-dark:#B392F0",[67],{"type":28,"value":68},"npx",{"type":22,"tag":58,"props":70,"children":72},{"style":71},"--shiki-default:#032F62;--shiki-dark:#9ECBFF",[73],{"type":28,"value":74}," nuxi@latest",{"type":22,"tag":58,"props":76,"children":77},{"style":71},[78],{"type":28,"value":79}," init",{"type":22,"tag":58,"props":81,"children":83},{"style":82},"--shiki-default:#005CC5;--shiki-dark:#79B8FF",[84],{"type":28,"value":85}," -t",{"type":22,"tag":58,"props":87,"children":88},{"style":71},[89],{"type":28,"value":90}," themes/alpine\n",{"type":22,"tag":35,"props":92,"children":94},{"id":93},"dependencies",[95],{"type":28,"value":96},"Dependencies",{"type":22,"tag":30,"props":98,"children":99},{},[100,102,108],{"type":28,"value":101},"Next, go to to ",{"type":22,"tag":54,"props":103,"children":105},{"className":104},[],[106],{"type":28,"value":107},"my-blog/",{"type":28,"value":109}," directory and install the dependencies:",{"type":22,"tag":47,"props":111,"children":113},{"className":49,"code":112,"language":51,"meta":8,"style":8},"npm install\n",[114],{"type":22,"tag":54,"props":115,"children":116},{"__ignoreMap":8},[117],{"type":22,"tag":58,"props":118,"children":119},{"class":60,"line":61},[120,125],{"type":22,"tag":58,"props":121,"children":122},{"style":65},[123],{"type":28,"value":124},"npm",{"type":22,"tag":58,"props":126,"children":127},{"style":71},[128],{"type":28,"value":129}," install\n",{"type":22,"tag":35,"props":131,"children":133},{"id":132},"development",[134],{"type":28,"value":135},"Development",{"type":22,"tag":30,"props":137,"children":138},{},[139],{"type":28,"value":140},"Start the development server on port 3000:",{"type":22,"tag":47,"props":142,"children":144},{"className":49,"code":143,"language":51,"meta":8,"style":8},"npm run dev\n",[145],{"type":22,"tag":54,"props":146,"children":147},{"__ignoreMap":8},[148],{"type":22,"tag":58,"props":149,"children":150},{"class":60,"line":61},[151,155,160],{"type":22,"tag":58,"props":152,"children":153},{"style":65},[154],{"type":28,"value":124},{"type":22,"tag":58,"props":156,"children":157},{"style":71},[158],{"type":28,"value":159}," run",{"type":22,"tag":58,"props":161,"children":162},{"style":71},[163],{"type":28,"value":164}," dev\n",{"type":22,"tag":30,"props":166,"children":167},{},[168,170,176],{"type":28,"value":169},"Next, you can start creating your content in Markdown in the ",{"type":22,"tag":54,"props":171,"children":173},{"className":172},[],[174],{"type":28,"value":175},"content/",{"type":28,"value":177}," directory.",{"type":22,"tag":35,"props":179,"children":181},{"id":180},"deploy",[182],{"type":28,"value":183},"Deploy",{"type":22,"tag":185,"props":186,"children":188},"h3",{"id":187},"static-hosting",[189],{"type":28,"value":190},"Static hosting",{"type":22,"tag":30,"props":192,"children":193},{},[194],{"type":28,"value":195},"You can deploy Alpine to any static hosting by running the following command:",{"type":22,"tag":47,"props":197,"children":199},{"className":49,"code":198,"language":51,"meta":8,"style":8},"npm run generate\n",[200],{"type":22,"tag":54,"props":201,"children":202},{"__ignoreMap":8},[203],{"type":22,"tag":58,"props":204,"children":205},{"class":60,"line":61},[206,210,214],{"type":22,"tag":58,"props":207,"children":208},{"style":65},[209],{"type":28,"value":124},{"type":22,"tag":58,"props":211,"children":212},{"style":71},[213],{"type":28,"value":159},{"type":22,"tag":58,"props":215,"children":216},{"style":71},[217],{"type":28,"value":218}," generate\n",{"type":22,"tag":30,"props":220,"children":221},{},[222,224,230],{"type":28,"value":223},"This command will create a ",{"type":22,"tag":54,"props":225,"children":227},{"className":226},[],[228],{"type":28,"value":229},"dist/",{"type":28,"value":231}," directory with the compiled files ready to be uploaded to any static hosting.",{"type":22,"tag":185,"props":233,"children":235},{"id":234},"edge-platforms",[236],{"type":28,"value":237},"Edge platforms",{"type":22,"tag":30,"props":239,"children":240},{},[241,243,249],{"type":28,"value":242},"Alpine supports deploying to the following platforms with ",{"type":22,"tag":244,"props":245,"children":246},"strong",{},[247],{"type":28,"value":248},"zero configuration",{"type":28,"value":250},":",{"type":22,"tag":252,"props":253,"children":254},"ul",{},[255,268,278],{"type":22,"tag":256,"props":257,"children":258},"li",{},[259],{"type":22,"tag":260,"props":261,"children":265},"a",{"href":262,"rel":263},"https://vercel.com",[264],"nofollow",[266],{"type":28,"value":267},"Vercel",{"type":22,"tag":256,"props":269,"children":270},{},[271],{"type":22,"tag":260,"props":272,"children":275},{"href":273,"rel":274},"https://netlify.com",[264],[276],{"type":28,"value":277},"Netlify",{"type":22,"tag":256,"props":279,"children":280},{},[281],{"type":22,"tag":260,"props":282,"children":285},{"href":283,"rel":284},"https://v3.nuxtjs.org/guide/deploy/presets#supported-hosting-providers",[264],[286],{"type":28,"value":287},"and more...",{"type":22,"tag":185,"props":289,"children":291},{"id":290},"node-server",[292],{"type":28,"value":293},"Node server",{"type":22,"tag":30,"props":295,"children":296},{},[297],{"type":28,"value":298},"You can deploy Alpine to a Node server by running the following command:",{"type":22,"tag":47,"props":300,"children":302},{"className":49,"code":301,"language":51,"meta":8,"style":8},"npm run build\n",[303],{"type":22,"tag":54,"props":304,"children":305},{"__ignoreMap":8},[306],{"type":22,"tag":58,"props":307,"children":308},{"class":60,"line":61},[309,313,317],{"type":22,"tag":58,"props":310,"children":311},{"style":65},[312],{"type":28,"value":124},{"type":22,"tag":58,"props":314,"children":315},{"style":71},[316],{"type":28,"value":159},{"type":22,"tag":58,"props":318,"children":319},{"style":71},[320],{"type":28,"value":321}," build\n",{"type":22,"tag":30,"props":323,"children":324},{},[325,326,332],{"type":28,"value":223},{"type":22,"tag":54,"props":327,"children":329},{"className":328},[],[330],{"type":28,"value":331},".output/",{"type":28,"value":333}," directory with the compiled files ready to be uploaded to any Node server.",{"type":22,"tag":30,"props":335,"children":336},{},[337],{"type":28,"value":338},"To start the production server, run the following command:",{"type":22,"tag":47,"props":340,"children":342},{"className":49,"code":341,"language":51,"meta":8,"style":8},"node .output/server/index.mjs\n",[343],{"type":22,"tag":54,"props":344,"children":345},{"__ignoreMap":8},[346],{"type":22,"tag":58,"props":347,"children":348},{"class":60,"line":61},[349,354],{"type":22,"tag":58,"props":350,"children":351},{"style":65},[352],{"type":28,"value":353},"node",{"type":22,"tag":58,"props":355,"children":356},{"style":71},[357],{"type":28,"value":358}," .output/server/index.mjs\n",{"type":22,"tag":360,"props":361,"children":362},"style",{},[363],{"type":28,"value":364},"html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":8,"searchDepth":366,"depth":366,"links":367},2,[368,369,370,371],{"id":37,"depth":366,"text":40},{"id":93,"depth":366,"text":96},{"id":132,"depth":366,"text":135},{"id":180,"depth":366,"text":183,"children":372},[373,375,376],{"id":187,"depth":374,"text":190},3,{"id":234,"depth":374,"text":237},{"id":290,"depth":374,"text":293},"markdown","content:articles:1.get-started.md","content","articles/1.get-started.md","md",{"_path":383,"_dir":6,"_draft":7,"_partial":7,"_locale":8,"title":384,"description":385,"cover":386,"author":387,"date":16,"layout":17,"body":391,"_type":377,"_id":1305,"_source":379,"_file":1306,"_extension":381},"/articles/configure","Configure Alpine","Learn how to configure Alpine with the app.config.ts file.","/articles/configure-alpine.webp",{"name":388,"avatarUrl":389,"link":390},"Clément Ollivier","https://pbs.twimg.com/profile_images/1370286658432724996/ZMSDzzIi_400x400.jpg","https://twitter.com/clemcodes",{"type":19,"children":392,"toc":1300},[393,398,419,488,502,515,521,526,722,728,741,982,988,1000,1296],{"type":22,"tag":23,"props":394,"children":396},{"id":395},"configure-alpine",[397],{"type":28,"value":384},{"type":22,"tag":30,"props":399,"children":400},{},[401,403,409,411,417],{"type":28,"value":402},"To configure meta tags, social links or even the Alpine theme display, update the ",{"type":22,"tag":54,"props":404,"children":406},{"className":405},[],[407],{"type":28,"value":408},"alpine",{"type":28,"value":410}," key in the ",{"type":22,"tag":54,"props":412,"children":414},{"className":413},[],[415],{"type":28,"value":416},"app.config.ts",{"type":28,"value":418}," at the root of your project:",{"type":22,"tag":47,"props":420,"children":424},{"className":421,"code":422,"filename":416,"language":423,"meta":8,"style":8},"language-ts shiki shiki-themes github-light github-dark","export default defineAppConfig({\n alpine: {\n /* Alpine configuration goes here */\n }\n}\n","ts",[425],{"type":22,"tag":54,"props":426,"children":427},{"__ignoreMap":8},[428,453,461,470,479],{"type":22,"tag":58,"props":429,"children":430},{"class":60,"line":61},[431,437,442,447],{"type":22,"tag":58,"props":432,"children":434},{"style":433},"--shiki-default:#D73A49;--shiki-dark:#F97583",[435],{"type":28,"value":436},"export",{"type":22,"tag":58,"props":438,"children":439},{"style":433},[440],{"type":28,"value":441}," default",{"type":22,"tag":58,"props":443,"children":444},{"style":65},[445],{"type":28,"value":446}," defineAppConfig",{"type":22,"tag":58,"props":448,"children":450},{"style":449},"--shiki-default:#24292E;--shiki-dark:#E1E4E8",[451],{"type":28,"value":452},"({\n",{"type":22,"tag":58,"props":454,"children":455},{"class":60,"line":366},[456],{"type":22,"tag":58,"props":457,"children":458},{"style":449},[459],{"type":28,"value":460}," alpine: {\n",{"type":22,"tag":58,"props":462,"children":463},{"class":60,"line":374},[464],{"type":22,"tag":58,"props":465,"children":467},{"style":466},"--shiki-default:#6A737D;--shiki-dark:#6A737D",[468],{"type":28,"value":469}," /* Alpine configuration goes here */\n",{"type":22,"tag":58,"props":471,"children":473},{"class":60,"line":472},4,[474],{"type":22,"tag":58,"props":475,"children":476},{"style":449},[477],{"type":28,"value":478}," }\n",{"type":22,"tag":58,"props":480,"children":482},{"class":60,"line":481},5,[483],{"type":22,"tag":58,"props":484,"children":485},{"style":449},[486],{"type":28,"value":487},"}\n",{"type":22,"tag":30,"props":489,"children":490},{},[491,493,500],{"type":28,"value":492},"You can look at the ",{"type":22,"tag":260,"props":494,"children":497},{"href":495,"rel":496},"https://github.com/nuxt-themes/alpine/tree/main/app.config.ts",[264],[498],{"type":28,"value":499},"default config",{"type":28,"value":501},".",{"type":22,"tag":30,"props":503,"children":504},{},[505,507,513],{"type":28,"value":506},"The ",{"type":22,"tag":260,"props":508,"children":510},{"href":495,"rel":509},[264],[511],{"type":28,"value":512},"config schema",{"type":28,"value":514}," also gives comments on all the configuration parameters.",{"type":22,"tag":35,"props":516,"children":518},{"id":517},"meta-tags",[519],{"type":28,"value":520},"Meta tags",{"type":22,"tag":30,"props":522,"children":523},{},[524],{"type":28,"value":525},"Configure the title, description and social image of your website:",{"type":22,"tag":47,"props":527,"children":529},{"className":421,"code":528,"filename":416,"language":423,"meta":8,"style":8},"export default defineAppConfig({\n alpine: {\n title: 'Alpine',\n description: 'The minimalist blog theme',\n image: '/social-card-preview.png',\n // image can also be an object:\n image: {\n src: '/social-card-preview.png',\n alt: 'An image showcasing my project.',\n width: 400,\n height: 300\n }\n }\n})\n",[530],{"type":22,"tag":54,"props":531,"children":532},{"__ignoreMap":8},[533,552,559,577,594,611,620,629,646,664,682,696,705,713],{"type":22,"tag":58,"props":534,"children":535},{"class":60,"line":61},[536,540,544,548],{"type":22,"tag":58,"props":537,"children":538},{"style":433},[539],{"type":28,"value":436},{"type":22,"tag":58,"props":541,"children":542},{"style":433},[543],{"type":28,"value":441},{"type":22,"tag":58,"props":545,"children":546},{"style":65},[547],{"type":28,"value":446},{"type":22,"tag":58,"props":549,"children":550},{"style":449},[551],{"type":28,"value":452},{"type":22,"tag":58,"props":553,"children":554},{"class":60,"line":366},[555],{"type":22,"tag":58,"props":556,"children":557},{"style":449},[558],{"type":28,"value":460},{"type":22,"tag":58,"props":560,"children":561},{"class":60,"line":374},[562,567,572],{"type":22,"tag":58,"props":563,"children":564},{"style":449},[565],{"type":28,"value":566}," title: ",{"type":22,"tag":58,"props":568,"children":569},{"style":71},[570],{"type":28,"value":571},"'Alpine'",{"type":22,"tag":58,"props":573,"children":574},{"style":449},[575],{"type":28,"value":576},",\n",{"type":22,"tag":58,"props":578,"children":579},{"class":60,"line":472},[580,585,590],{"type":22,"tag":58,"props":581,"children":582},{"style":449},[583],{"type":28,"value":584}," description: ",{"type":22,"tag":58,"props":586,"children":587},{"style":71},[588],{"type":28,"value":589},"'The minimalist blog theme'",{"type":22,"tag":58,"props":591,"children":592},{"style":449},[593],{"type":28,"value":576},{"type":22,"tag":58,"props":595,"children":596},{"class":60,"line":481},[597,602,607],{"type":22,"tag":58,"props":598,"children":599},{"style":449},[600],{"type":28,"value":601}," image: ",{"type":22,"tag":58,"props":603,"children":604},{"style":71},[605],{"type":28,"value":606},"'/social-card-preview.png'",{"type":22,"tag":58,"props":608,"children":609},{"style":449},[610],{"type":28,"value":576},{"type":22,"tag":58,"props":612,"children":614},{"class":60,"line":613},6,[615],{"type":22,"tag":58,"props":616,"children":617},{"style":466},[618],{"type":28,"value":619}," // image can also be an object:\n",{"type":22,"tag":58,"props":621,"children":623},{"class":60,"line":622},7,[624],{"type":22,"tag":58,"props":625,"children":626},{"style":449},[627],{"type":28,"value":628}," image: {\n",{"type":22,"tag":58,"props":630,"children":632},{"class":60,"line":631},8,[633,638,642],{"type":22,"tag":58,"props":634,"children":635},{"style":449},[636],{"type":28,"value":637}," src: ",{"type":22,"tag":58,"props":639,"children":640},{"style":71},[641],{"type":28,"value":606},{"type":22,"tag":58,"props":643,"children":644},{"style":449},[645],{"type":28,"value":576},{"type":22,"tag":58,"props":647,"children":649},{"class":60,"line":648},9,[650,655,660],{"type":22,"tag":58,"props":651,"children":652},{"style":449},[653],{"type":28,"value":654}," alt: ",{"type":22,"tag":58,"props":656,"children":657},{"style":71},[658],{"type":28,"value":659},"'An image showcasing my project.'",{"type":22,"tag":58,"props":661,"children":662},{"style":449},[663],{"type":28,"value":576},{"type":22,"tag":58,"props":665,"children":667},{"class":60,"line":666},10,[668,673,678],{"type":22,"tag":58,"props":669,"children":670},{"style":449},[671],{"type":28,"value":672}," width: ",{"type":22,"tag":58,"props":674,"children":675},{"style":82},[676],{"type":28,"value":677},"400",{"type":22,"tag":58,"props":679,"children":680},{"style":449},[681],{"type":28,"value":576},{"type":22,"tag":58,"props":683,"children":685},{"class":60,"line":684},11,[686,691],{"type":22,"tag":58,"props":687,"children":688},{"style":449},[689],{"type":28,"value":690}," height: ",{"type":22,"tag":58,"props":692,"children":693},{"style":82},[694],{"type":28,"value":695},"300\n",{"type":22,"tag":58,"props":697,"children":699},{"class":60,"line":698},12,[700],{"type":22,"tag":58,"props":701,"children":702},{"style":449},[703],{"type":28,"value":704}," }\n",{"type":22,"tag":58,"props":706,"children":708},{"class":60,"line":707},13,[709],{"type":22,"tag":58,"props":710,"children":711},{"style":449},[712],{"type":28,"value":478},{"type":22,"tag":58,"props":714,"children":716},{"class":60,"line":715},14,[717],{"type":22,"tag":58,"props":718,"children":719},{"style":449},[720],{"type":28,"value":721},"})\n",{"type":22,"tag":35,"props":723,"children":725},{"id":724},"social-links",[726],{"type":28,"value":727},"Social links",{"type":22,"tag":30,"props":729,"children":730},{},[731,733,739],{"type":28,"value":732},"To configure the social links displayed in the footer, use the ",{"type":22,"tag":54,"props":734,"children":736},{"className":735},[],[737],{"type":28,"value":738},"socials",{"type":28,"value":740}," property:",{"type":22,"tag":47,"props":742,"children":744},{"className":421,"code":743,"filename":416,"language":423,"meta":8,"style":8},"export default defineAppConfig({\n alpine: {\n socials: {\n twitter: 'nuxtlabs',\n instagram: 'wearenuxt',\n linkedin: {\n icon: 'uil:linkedin',\n label: 'LinkedIn',\n href: 'https://www.linkedin.com/company/nuxtlabs'\n },\n mastodon: {\n icon: 'simple-icons:mastodon',\n label: 'Mastodon',\n href: 'https://m.webtoo.ls/@nuxt',\n rel: 'me'\n }\n }\n }\n})\n",[745],{"type":22,"tag":54,"props":746,"children":747},{"__ignoreMap":8},[748,767,774,782,799,816,824,841,858,871,879,887,903,919,935,949,958,966,974],{"type":22,"tag":58,"props":749,"children":750},{"class":60,"line":61},[751,755,759,763],{"type":22,"tag":58,"props":752,"children":753},{"style":433},[754],{"type":28,"value":436},{"type":22,"tag":58,"props":756,"children":757},{"style":433},[758],{"type":28,"value":441},{"type":22,"tag":58,"props":760,"children":761},{"style":65},[762],{"type":28,"value":446},{"type":22,"tag":58,"props":764,"children":765},{"style":449},[766],{"type":28,"value":452},{"type":22,"tag":58,"props":768,"children":769},{"class":60,"line":366},[770],{"type":22,"tag":58,"props":771,"children":772},{"style":449},[773],{"type":28,"value":460},{"type":22,"tag":58,"props":775,"children":776},{"class":60,"line":374},[777],{"type":22,"tag":58,"props":778,"children":779},{"style":449},[780],{"type":28,"value":781}," socials: {\n",{"type":22,"tag":58,"props":783,"children":784},{"class":60,"line":472},[785,790,795],{"type":22,"tag":58,"props":786,"children":787},{"style":449},[788],{"type":28,"value":789}," twitter: ",{"type":22,"tag":58,"props":791,"children":792},{"style":71},[793],{"type":28,"value":794},"'nuxtlabs'",{"type":22,"tag":58,"props":796,"children":797},{"style":449},[798],{"type":28,"value":576},{"type":22,"tag":58,"props":800,"children":801},{"class":60,"line":481},[802,807,812],{"type":22,"tag":58,"props":803,"children":804},{"style":449},[805],{"type":28,"value":806}," instagram: ",{"type":22,"tag":58,"props":808,"children":809},{"style":71},[810],{"type":28,"value":811},"'wearenuxt'",{"type":22,"tag":58,"props":813,"children":814},{"style":449},[815],{"type":28,"value":576},{"type":22,"tag":58,"props":817,"children":818},{"class":60,"line":613},[819],{"type":22,"tag":58,"props":820,"children":821},{"style":449},[822],{"type":28,"value":823}," linkedin: {\n",{"type":22,"tag":58,"props":825,"children":826},{"class":60,"line":622},[827,832,837],{"type":22,"tag":58,"props":828,"children":829},{"style":449},[830],{"type":28,"value":831}," icon: ",{"type":22,"tag":58,"props":833,"children":834},{"style":71},[835],{"type":28,"value":836},"'uil:linkedin'",{"type":22,"tag":58,"props":838,"children":839},{"style":449},[840],{"type":28,"value":576},{"type":22,"tag":58,"props":842,"children":843},{"class":60,"line":631},[844,849,854],{"type":22,"tag":58,"props":845,"children":846},{"style":449},[847],{"type":28,"value":848}," label: ",{"type":22,"tag":58,"props":850,"children":851},{"style":71},[852],{"type":28,"value":853},"'LinkedIn'",{"type":22,"tag":58,"props":855,"children":856},{"style":449},[857],{"type":28,"value":576},{"type":22,"tag":58,"props":859,"children":860},{"class":60,"line":648},[861,866],{"type":22,"tag":58,"props":862,"children":863},{"style":449},[864],{"type":28,"value":865}," href: ",{"type":22,"tag":58,"props":867,"children":868},{"style":71},[869],{"type":28,"value":870},"'https://www.linkedin.com/company/nuxtlabs'\n",{"type":22,"tag":58,"props":872,"children":873},{"class":60,"line":666},[874],{"type":22,"tag":58,"props":875,"children":876},{"style":449},[877],{"type":28,"value":878}," },\n",{"type":22,"tag":58,"props":880,"children":881},{"class":60,"line":684},[882],{"type":22,"tag":58,"props":883,"children":884},{"style":449},[885],{"type":28,"value":886}," mastodon: {\n",{"type":22,"tag":58,"props":888,"children":889},{"class":60,"line":698},[890,894,899],{"type":22,"tag":58,"props":891,"children":892},{"style":449},[893],{"type":28,"value":831},{"type":22,"tag":58,"props":895,"children":896},{"style":71},[897],{"type":28,"value":898},"'simple-icons:mastodon'",{"type":22,"tag":58,"props":900,"children":901},{"style":449},[902],{"type":28,"value":576},{"type":22,"tag":58,"props":904,"children":905},{"class":60,"line":707},[906,910,915],{"type":22,"tag":58,"props":907,"children":908},{"style":449},[909],{"type":28,"value":848},{"type":22,"tag":58,"props":911,"children":912},{"style":71},[913],{"type":28,"value":914},"'Mastodon'",{"type":22,"tag":58,"props":916,"children":917},{"style":449},[918],{"type":28,"value":576},{"type":22,"tag":58,"props":920,"children":921},{"class":60,"line":715},[922,926,931],{"type":22,"tag":58,"props":923,"children":924},{"style":449},[925],{"type":28,"value":865},{"type":22,"tag":58,"props":927,"children":928},{"style":71},[929],{"type":28,"value":930},"'https://m.webtoo.ls/@nuxt'",{"type":22,"tag":58,"props":932,"children":933},{"style":449},[934],{"type":28,"value":576},{"type":22,"tag":58,"props":936,"children":938},{"class":60,"line":937},15,[939,944],{"type":22,"tag":58,"props":940,"children":941},{"style":449},[942],{"type":28,"value":943}," rel: ",{"type":22,"tag":58,"props":945,"children":946},{"style":71},[947],{"type":28,"value":948},"'me'\n",{"type":22,"tag":58,"props":950,"children":952},{"class":60,"line":951},16,[953],{"type":22,"tag":58,"props":954,"children":955},{"style":449},[956],{"type":28,"value":957}," }\n",{"type":22,"tag":58,"props":959,"children":961},{"class":60,"line":960},17,[962],{"type":22,"tag":58,"props":963,"children":964},{"style":449},[965],{"type":28,"value":704},{"type":22,"tag":58,"props":967,"children":969},{"class":60,"line":968},18,[970],{"type":22,"tag":58,"props":971,"children":972},{"style":449},[973],{"type":28,"value":478},{"type":22,"tag":58,"props":975,"children":977},{"class":60,"line":976},19,[978],{"type":22,"tag":58,"props":979,"children":980},{"style":449},[981],{"type":28,"value":721},{"type":22,"tag":35,"props":983,"children":985},{"id":984},"theme-display",[986],{"type":28,"value":987},"Theme display",{"type":22,"tag":30,"props":989,"children":990},{},[991,993,998],{"type":28,"value":992},"Alpine Header and Footer can also be customized via the ",{"type":22,"tag":54,"props":994,"children":996},{"className":995},[],[997],{"type":28,"value":416},{"type":28,"value":999}," file:",{"type":22,"tag":47,"props":1001,"children":1003},{"className":421,"code":1002,"filename":416,"language":423,"meta":8,"style":8},"defineAppConfig({\n alpine: {\n // Remove header with header: false\n header: {\n position: 'inline', // possible value are : 'none' | 'left' | 'center' | 'right' | 'inline'\n logo: false\n },\n // Remove header with footer: false\n footer: {\n credits: {\n enabled: true, // possible value are : true | false\n repository: 'https://www.github.com/nuxt-themes/alpine' // our github repository\n },\n navigation: false, // possible value are : true | false\n position: 'center', // possible value are : 'none' | 'left' | 'center' | 'right'\n message: 'Follow me on' // string that will be displayed on the footer (leave empty or delete to disable)\n }\n // Disable back to top button: false\n backToTop: {\n text: 'Back to top',\n icon: 'material-symbols:arrow-upward'\n }\n }\n})\n",[1004],{"type":22,"tag":54,"props":1005,"children":1006},{"__ignoreMap":8},[1007,1019,1026,1034,1042,1065,1078,1086,1094,1102,1110,1132,1150,1157,1178,1199,1217,1224,1232,1240,1258,1272,1280,1288],{"type":22,"tag":58,"props":1008,"children":1009},{"class":60,"line":61},[1010,1015],{"type":22,"tag":58,"props":1011,"children":1012},{"style":65},[1013],{"type":28,"value":1014},"defineAppConfig",{"type":22,"tag":58,"props":1016,"children":1017},{"style":449},[1018],{"type":28,"value":452},{"type":22,"tag":58,"props":1020,"children":1021},{"class":60,"line":366},[1022],{"type":22,"tag":58,"props":1023,"children":1024},{"style":449},[1025],{"type":28,"value":460},{"type":22,"tag":58,"props":1027,"children":1028},{"class":60,"line":374},[1029],{"type":22,"tag":58,"props":1030,"children":1031},{"style":466},[1032],{"type":28,"value":1033}," // Remove header with header: false\n",{"type":22,"tag":58,"props":1035,"children":1036},{"class":60,"line":472},[1037],{"type":22,"tag":58,"props":1038,"children":1039},{"style":449},[1040],{"type":28,"value":1041}," header: {\n",{"type":22,"tag":58,"props":1043,"children":1044},{"class":60,"line":481},[1045,1050,1055,1060],{"type":22,"tag":58,"props":1046,"children":1047},{"style":449},[1048],{"type":28,"value":1049}," position: ",{"type":22,"tag":58,"props":1051,"children":1052},{"style":71},[1053],{"type":28,"value":1054},"'inline'",{"type":22,"tag":58,"props":1056,"children":1057},{"style":449},[1058],{"type":28,"value":1059},", ",{"type":22,"tag":58,"props":1061,"children":1062},{"style":466},[1063],{"type":28,"value":1064},"// possible value are : 'none' | 'left' | 'center' | 'right' | 'inline'\n",{"type":22,"tag":58,"props":1066,"children":1067},{"class":60,"line":613},[1068,1073],{"type":22,"tag":58,"props":1069,"children":1070},{"style":449},[1071],{"type":28,"value":1072}," logo: ",{"type":22,"tag":58,"props":1074,"children":1075},{"style":82},[1076],{"type":28,"value":1077},"false\n",{"type":22,"tag":58,"props":1079,"children":1080},{"class":60,"line":622},[1081],{"type":22,"tag":58,"props":1082,"children":1083},{"style":449},[1084],{"type":28,"value":1085}," },\n",{"type":22,"tag":58,"props":1087,"children":1088},{"class":60,"line":631},[1089],{"type":22,"tag":58,"props":1090,"children":1091},{"style":466},[1092],{"type":28,"value":1093}," // Remove header with footer: false\n",{"type":22,"tag":58,"props":1095,"children":1096},{"class":60,"line":648},[1097],{"type":22,"tag":58,"props":1098,"children":1099},{"style":449},[1100],{"type":28,"value":1101}," footer: {\n",{"type":22,"tag":58,"props":1103,"children":1104},{"class":60,"line":666},[1105],{"type":22,"tag":58,"props":1106,"children":1107},{"style":449},[1108],{"type":28,"value":1109}," credits: {\n",{"type":22,"tag":58,"props":1111,"children":1112},{"class":60,"line":684},[1113,1118,1123,1127],{"type":22,"tag":58,"props":1114,"children":1115},{"style":449},[1116],{"type":28,"value":1117}," enabled: ",{"type":22,"tag":58,"props":1119,"children":1120},{"style":82},[1121],{"type":28,"value":1122},"true",{"type":22,"tag":58,"props":1124,"children":1125},{"style":449},[1126],{"type":28,"value":1059},{"type":22,"tag":58,"props":1128,"children":1129},{"style":466},[1130],{"type":28,"value":1131},"// possible value are : true | false\n",{"type":22,"tag":58,"props":1133,"children":1134},{"class":60,"line":698},[1135,1140,1145],{"type":22,"tag":58,"props":1136,"children":1137},{"style":449},[1138],{"type":28,"value":1139}," repository: ",{"type":22,"tag":58,"props":1141,"children":1142},{"style":71},[1143],{"type":28,"value":1144},"'https://www.github.com/nuxt-themes/alpine'",{"type":22,"tag":58,"props":1146,"children":1147},{"style":466},[1148],{"type":28,"value":1149}," // our github repository\n",{"type":22,"tag":58,"props":1151,"children":1152},{"class":60,"line":707},[1153],{"type":22,"tag":58,"props":1154,"children":1155},{"style":449},[1156],{"type":28,"value":878},{"type":22,"tag":58,"props":1158,"children":1159},{"class":60,"line":715},[1160,1165,1170,1174],{"type":22,"tag":58,"props":1161,"children":1162},{"style":449},[1163],{"type":28,"value":1164}," navigation: ",{"type":22,"tag":58,"props":1166,"children":1167},{"style":82},[1168],{"type":28,"value":1169},"false",{"type":22,"tag":58,"props":1171,"children":1172},{"style":449},[1173],{"type":28,"value":1059},{"type":22,"tag":58,"props":1175,"children":1176},{"style":466},[1177],{"type":28,"value":1131},{"type":22,"tag":58,"props":1179,"children":1180},{"class":60,"line":937},[1181,1185,1190,1194],{"type":22,"tag":58,"props":1182,"children":1183},{"style":449},[1184],{"type":28,"value":1049},{"type":22,"tag":58,"props":1186,"children":1187},{"style":71},[1188],{"type":28,"value":1189},"'center'",{"type":22,"tag":58,"props":1191,"children":1192},{"style":449},[1193],{"type":28,"value":1059},{"type":22,"tag":58,"props":1195,"children":1196},{"style":466},[1197],{"type":28,"value":1198},"// possible value are : 'none' | 'left' | 'center' | 'right'\n",{"type":22,"tag":58,"props":1200,"children":1201},{"class":60,"line":951},[1202,1207,1212],{"type":22,"tag":58,"props":1203,"children":1204},{"style":449},[1205],{"type":28,"value":1206}," message: ",{"type":22,"tag":58,"props":1208,"children":1209},{"style":71},[1210],{"type":28,"value":1211},"'Follow me on'",{"type":22,"tag":58,"props":1213,"children":1214},{"style":466},[1215],{"type":28,"value":1216}," // string that will be displayed on the footer (leave empty or delete to disable)\n",{"type":22,"tag":58,"props":1218,"children":1219},{"class":60,"line":960},[1220],{"type":22,"tag":58,"props":1221,"children":1222},{"style":449},[1223],{"type":28,"value":704},{"type":22,"tag":58,"props":1225,"children":1226},{"class":60,"line":968},[1227],{"type":22,"tag":58,"props":1228,"children":1229},{"style":466},[1230],{"type":28,"value":1231}," // Disable back to top button: false\n",{"type":22,"tag":58,"props":1233,"children":1234},{"class":60,"line":976},[1235],{"type":22,"tag":58,"props":1236,"children":1237},{"style":449},[1238],{"type":28,"value":1239}," backToTop: {\n",{"type":22,"tag":58,"props":1241,"children":1243},{"class":60,"line":1242},20,[1244,1249,1254],{"type":22,"tag":58,"props":1245,"children":1246},{"style":449},[1247],{"type":28,"value":1248}," text: ",{"type":22,"tag":58,"props":1250,"children":1251},{"style":71},[1252],{"type":28,"value":1253},"'Back to top'",{"type":22,"tag":58,"props":1255,"children":1256},{"style":449},[1257],{"type":28,"value":576},{"type":22,"tag":58,"props":1259,"children":1261},{"class":60,"line":1260},21,[1262,1267],{"type":22,"tag":58,"props":1263,"children":1264},{"style":449},[1265],{"type":28,"value":1266}," icon: ",{"type":22,"tag":58,"props":1268,"children":1269},{"style":71},[1270],{"type":28,"value":1271},"'material-symbols:arrow-upward'\n",{"type":22,"tag":58,"props":1273,"children":1275},{"class":60,"line":1274},22,[1276],{"type":22,"tag":58,"props":1277,"children":1278},{"style":449},[1279],{"type":28,"value":704},{"type":22,"tag":58,"props":1281,"children":1283},{"class":60,"line":1282},23,[1284],{"type":22,"tag":58,"props":1285,"children":1286},{"style":449},[1287],{"type":28,"value":478},{"type":22,"tag":58,"props":1289,"children":1291},{"class":60,"line":1290},24,[1292],{"type":22,"tag":58,"props":1293,"children":1294},{"style":449},[1295],{"type":28,"value":721},{"type":22,"tag":360,"props":1297,"children":1298},{},[1299],{"type":28,"value":364},{"title":8,"searchDepth":366,"depth":366,"links":1301},[1302,1303,1304],{"id":517,"depth":366,"text":520},{"id":724,"depth":366,"text":727},{"id":984,"depth":366,"text":987},"content:articles:2.configure.md","articles/2.configure.md",{"_path":1308,"_dir":6,"_draft":7,"_partial":7,"_locale":8,"title":1309,"description":1310,"cover":1311,"date":16,"layout":17,"body":1312,"_type":377,"_id":2038,"_source":379,"_file":2039,"_extension":381},"/articles/write-articles","Write Articles","Writing Markdown articles in Alpine is straightforward.","/articles/write-articles.webp",{"type":19,"children":1313,"toc":2030},[1314,1319,1324,1330,1342,1362,1367,1380,1479,1491,1497,1508,1540,1569,1625,1644,1649,1655,1667,1734,1739,1745,1764,1847,1852,1858,1863,1994,2000,2013,2026],{"type":22,"tag":23,"props":1315,"children":1317},{"id":1316},"write-articles",[1318],{"type":28,"value":1309},{"type":22,"tag":30,"props":1320,"children":1321},{},[1322],{"type":28,"value":1323},"Write Markdown articles in Alpine is straightforward.",{"type":22,"tag":35,"props":1325,"children":1327},{"id":1326},"create-an-articles-list",[1328],{"type":28,"value":1329},"Create an articles list",{"type":22,"tag":30,"props":1331,"children":1332},{},[1333,1335,1340],{"type":28,"value":1334},"Create a new file in the ",{"type":22,"tag":54,"props":1336,"children":1338},{"className":1337},[],[1339],{"type":28,"value":175},{"type":28,"value":1341}," directory:",{"type":22,"tag":47,"props":1343,"children":1345},{"className":49,"code":1344,"language":51,"meta":8,"style":8},"touch content/2.articles.md\n",[1346],{"type":22,"tag":54,"props":1347,"children":1348},{"__ignoreMap":8},[1349],{"type":22,"tag":58,"props":1350,"children":1351},{"class":60,"line":61},[1352,1357],{"type":22,"tag":58,"props":1353,"children":1354},{"style":65},[1355],{"type":28,"value":1356},"touch",{"type":22,"tag":58,"props":1358,"children":1359},{"style":71},[1360],{"type":28,"value":1361}," content/2.articles.md\n",{"type":22,"tag":30,"props":1363,"children":1364},{},[1365],{"type":28,"value":1366},"The numbered prefix determines the order of the menu items.",{"type":22,"tag":30,"props":1368,"children":1369},{},[1370,1372,1378],{"type":28,"value":1371},"In this file, use the ",{"type":22,"tag":54,"props":1373,"children":1375},{"className":1374},[],[1376],{"type":28,"value":1377},"articles-list",{"type":28,"value":1379}," component to display the list of articles:",{"type":22,"tag":47,"props":1381,"children":1385},{"className":1382,"code":1383,"filename":1384,"language":381,"meta":8,"style":8},"language-md shiki shiki-themes github-light github-dark","---\ntitle: 'Articles'\nlayout: 'page'\n---\n::articles-list\n---\npath: articles\n---\n::\n","2.articles.md",[1386],{"type":22,"tag":54,"props":1387,"children":1388},{"__ignoreMap":8},[1389,1397,1416,1433,1440,1448,1456,1464,1471],{"type":22,"tag":58,"props":1390,"children":1391},{"class":60,"line":61},[1392],{"type":22,"tag":58,"props":1393,"children":1394},{"style":449},[1395],{"type":28,"value":1396},"---\n",{"type":22,"tag":58,"props":1398,"children":1399},{"class":60,"line":366},[1400,1406,1411],{"type":22,"tag":58,"props":1401,"children":1403},{"style":1402},"--shiki-default:#22863A;--shiki-dark:#85E89D",[1404],{"type":28,"value":1405},"title",{"type":22,"tag":58,"props":1407,"children":1408},{"style":449},[1409],{"type":28,"value":1410},": ",{"type":22,"tag":58,"props":1412,"children":1413},{"style":71},[1414],{"type":28,"value":1415},"'Articles'\n",{"type":22,"tag":58,"props":1417,"children":1418},{"class":60,"line":374},[1419,1424,1428],{"type":22,"tag":58,"props":1420,"children":1421},{"style":1402},[1422],{"type":28,"value":1423},"layout",{"type":22,"tag":58,"props":1425,"children":1426},{"style":449},[1427],{"type":28,"value":1410},{"type":22,"tag":58,"props":1429,"children":1430},{"style":71},[1431],{"type":28,"value":1432},"'page'\n",{"type":22,"tag":58,"props":1434,"children":1435},{"class":60,"line":472},[1436],{"type":22,"tag":58,"props":1437,"children":1438},{"style":449},[1439],{"type":28,"value":1396},{"type":22,"tag":58,"props":1441,"children":1442},{"class":60,"line":481},[1443],{"type":22,"tag":58,"props":1444,"children":1445},{"style":449},[1446],{"type":28,"value":1447},"::articles-list\n",{"type":22,"tag":58,"props":1449,"children":1450},{"class":60,"line":613},[1451],{"type":22,"tag":58,"props":1452,"children":1454},{"style":1453},"--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-default-font-weight:bold;--shiki-dark-font-weight:bold",[1455],{"type":28,"value":1396},{"type":22,"tag":58,"props":1457,"children":1458},{"class":60,"line":622},[1459],{"type":22,"tag":58,"props":1460,"children":1461},{"style":449},[1462],{"type":28,"value":1463},"path: articles\n",{"type":22,"tag":58,"props":1465,"children":1466},{"class":60,"line":631},[1467],{"type":22,"tag":58,"props":1468,"children":1469},{"style":1453},[1470],{"type":28,"value":1396},{"type":22,"tag":58,"props":1472,"children":1473},{"class":60,"line":648},[1474],{"type":22,"tag":58,"props":1475,"children":1476},{"style":449},[1477],{"type":28,"value":1478},"::\n",{"type":22,"tag":30,"props":1480,"children":1481},{},[1482,1483,1489],{"type":28,"value":506},{"type":22,"tag":54,"props":1484,"children":1486},{"className":1485},[],[1487],{"type":28,"value":1488},"path",{"type":28,"value":1490}," prop corresponds to the directory where the articles are stored.",{"type":22,"tag":35,"props":1492,"children":1494},{"id":1493},"display-an-article-in-the-list",[1495],{"type":28,"value":1496},"Display an article in the list",{"type":22,"tag":30,"props":1498,"children":1499},{},[1500,1501,1507],{"type":28,"value":1334},{"type":22,"tag":54,"props":1502,"children":1504},{"className":1503},[],[1505],{"type":28,"value":1506},"/content/articles",{"type":28,"value":1341},{"type":22,"tag":47,"props":1509,"children":1511},{"className":49,"code":1510,"language":51,"meta":8,"style":8},"mkdir content/articles\ntouch content/articles/1.my-new-article.md\n",[1512],{"type":22,"tag":54,"props":1513,"children":1514},{"__ignoreMap":8},[1515,1528],{"type":22,"tag":58,"props":1516,"children":1517},{"class":60,"line":61},[1518,1523],{"type":22,"tag":58,"props":1519,"children":1520},{"style":65},[1521],{"type":28,"value":1522},"mkdir",{"type":22,"tag":58,"props":1524,"children":1525},{"style":71},[1526],{"type":28,"value":1527}," content/articles\n",{"type":22,"tag":58,"props":1529,"children":1530},{"class":60,"line":366},[1531,1535],{"type":22,"tag":58,"props":1532,"children":1533},{"style":65},[1534],{"type":28,"value":1356},{"type":22,"tag":58,"props":1536,"children":1537},{"style":71},[1538],{"type":28,"value":1539}," content/articles/1.my-new-article.md\n",{"type":22,"tag":30,"props":1541,"children":1542},{},[1543,1545,1551,1553,1559,1561,1567],{"type":28,"value":1544},"For your article to be correctly displayed in the ",{"type":22,"tag":260,"props":1546,"children":1548},{"href":1547},"/articles",[1549],{"type":28,"value":1550},"articles list",{"type":28,"value":1552},", define a ",{"type":22,"tag":54,"props":1554,"children":1556},{"className":1555},[],[1557],{"type":28,"value":1558},"cover",{"type":28,"value":1560}," and ",{"type":22,"tag":54,"props":1562,"children":1564},{"className":1563},[],[1565],{"type":28,"value":1566},"date",{"type":28,"value":1568}," property in the frontmatter:",{"type":22,"tag":47,"props":1570,"children":1575},{"className":1571,"code":1572,"filename":1573,"language":1574,"meta":8,"style":8},"language-yaml shiki shiki-themes github-light github-dark","---\ncover: path/to/cover\ndate: 2022-08-23\n---\n","content/articles/1.my-new-article.md","yaml",[1576],{"type":22,"tag":54,"props":1577,"children":1578},{"__ignoreMap":8},[1579,1586,1602,1618],{"type":22,"tag":58,"props":1580,"children":1581},{"class":60,"line":61},[1582],{"type":22,"tag":58,"props":1583,"children":1584},{"style":65},[1585],{"type":28,"value":1396},{"type":22,"tag":58,"props":1587,"children":1588},{"class":60,"line":366},[1589,1593,1597],{"type":22,"tag":58,"props":1590,"children":1591},{"style":1402},[1592],{"type":28,"value":1558},{"type":22,"tag":58,"props":1594,"children":1595},{"style":449},[1596],{"type":28,"value":1410},{"type":22,"tag":58,"props":1598,"children":1599},{"style":71},[1600],{"type":28,"value":1601},"path/to/cover\n",{"type":22,"tag":58,"props":1603,"children":1604},{"class":60,"line":374},[1605,1609,1613],{"type":22,"tag":58,"props":1606,"children":1607},{"style":1402},[1608],{"type":28,"value":1566},{"type":22,"tag":58,"props":1610,"children":1611},{"style":449},[1612],{"type":28,"value":1410},{"type":22,"tag":58,"props":1614,"children":1615},{"style":82},[1616],{"type":28,"value":1617},"2022-08-23\n",{"type":22,"tag":58,"props":1619,"children":1620},{"class":60,"line":472},[1621],{"type":22,"tag":58,"props":1622,"children":1623},{"style":65},[1624],{"type":28,"value":1396},{"type":22,"tag":30,"props":1626,"children":1627},{},[1628,1629,1634,1636,1642],{"type":28,"value":506},{"type":22,"tag":54,"props":1630,"children":1632},{"className":1631},[],[1633],{"type":28,"value":1558},{"type":28,"value":1635}," property can be a local path relative to the ",{"type":22,"tag":54,"props":1637,"children":1639},{"className":1638},[],[1640],{"type":28,"value":1641},"/public",{"type":28,"value":1643}," directory or an external URL.",{"type":22,"tag":30,"props":1645,"children":1646},{},[1647],{"type":28,"value":1648},"Your article will now be displayed in the list with its filename as a default title.",{"type":22,"tag":35,"props":1650,"children":1652},{"id":1651},"edit-your-article",[1653],{"type":28,"value":1654},"Edit your article",{"type":22,"tag":30,"props":1656,"children":1657},{},[1658,1660,1665],{"type":28,"value":1659},"Under the frontmatter block, enter a Markdown ",{"type":22,"tag":54,"props":1661,"children":1663},{"className":1662},[],[1664],{"type":28,"value":23},{"type":28,"value":1666}," tag and a line of text:",{"type":22,"tag":47,"props":1668,"children":1670},{"className":1382,"code":1669,"filename":1573,"language":381,"meta":8,"style":8},"---\ncover: path/to/cover\ndate: 2022-08-23\n---\n# An awesome article\nThis article is little by size but big by heart.\n",[1671],{"type":22,"tag":54,"props":1672,"children":1673},{"__ignoreMap":8},[1674,1681,1696,1711,1718,1726],{"type":22,"tag":58,"props":1675,"children":1676},{"class":60,"line":61},[1677],{"type":22,"tag":58,"props":1678,"children":1679},{"style":449},[1680],{"type":28,"value":1396},{"type":22,"tag":58,"props":1682,"children":1683},{"class":60,"line":366},[1684,1688,1692],{"type":22,"tag":58,"props":1685,"children":1686},{"style":1402},[1687],{"type":28,"value":1558},{"type":22,"tag":58,"props":1689,"children":1690},{"style":449},[1691],{"type":28,"value":1410},{"type":22,"tag":58,"props":1693,"children":1694},{"style":71},[1695],{"type":28,"value":1601},{"type":22,"tag":58,"props":1697,"children":1698},{"class":60,"line":374},[1699,1703,1707],{"type":22,"tag":58,"props":1700,"children":1701},{"style":1402},[1702],{"type":28,"value":1566},{"type":22,"tag":58,"props":1704,"children":1705},{"style":449},[1706],{"type":28,"value":1410},{"type":22,"tag":58,"props":1708,"children":1709},{"style":82},[1710],{"type":28,"value":1617},{"type":22,"tag":58,"props":1712,"children":1713},{"class":60,"line":472},[1714],{"type":22,"tag":58,"props":1715,"children":1716},{"style":449},[1717],{"type":28,"value":1396},{"type":22,"tag":58,"props":1719,"children":1720},{"class":60,"line":481},[1721],{"type":22,"tag":58,"props":1722,"children":1723},{"style":1453},[1724],{"type":28,"value":1725},"# An awesome article\n",{"type":22,"tag":58,"props":1727,"children":1728},{"class":60,"line":613},[1729],{"type":22,"tag":58,"props":1730,"children":1731},{"style":449},[1732],{"type":28,"value":1733},"This article is little by size but big by heart.\n",{"type":22,"tag":30,"props":1735,"children":1736},{},[1737],{"type":28,"value":1738},"Your article will now be displayed in the list with the title and description you wrote in Markdown.",{"type":22,"tag":35,"props":1740,"children":1742},{"id":1741},"override-title-and-description",[1743],{"type":28,"value":1744},"Override title and description",{"type":22,"tag":30,"props":1746,"children":1747},{},[1748,1750,1755,1756,1762],{"type":28,"value":1749},"If you want to change the title and description displayed on the list and in the meta tags of the article, add the ",{"type":22,"tag":54,"props":1751,"children":1753},{"className":1752},[],[1754],{"type":28,"value":1405},{"type":28,"value":1560},{"type":22,"tag":54,"props":1757,"children":1759},{"className":1758},[],[1760],{"type":28,"value":1761},"description",{"type":28,"value":1763}," property to your frontmatter:",{"type":22,"tag":47,"props":1765,"children":1767},{"className":1382,"code":1766,"filename":1573,"language":381,"meta":8,"style":8},"---\ncover: path/to/cover\ndate: 2022-08-23\ntitle: Another title\ndescription: Another description\n---\n",[1768],{"type":22,"tag":54,"props":1769,"children":1770},{"__ignoreMap":8},[1771,1778,1793,1808,1824,1840],{"type":22,"tag":58,"props":1772,"children":1773},{"class":60,"line":61},[1774],{"type":22,"tag":58,"props":1775,"children":1776},{"style":449},[1777],{"type":28,"value":1396},{"type":22,"tag":58,"props":1779,"children":1780},{"class":60,"line":366},[1781,1785,1789],{"type":22,"tag":58,"props":1782,"children":1783},{"style":1402},[1784],{"type":28,"value":1558},{"type":22,"tag":58,"props":1786,"children":1787},{"style":449},[1788],{"type":28,"value":1410},{"type":22,"tag":58,"props":1790,"children":1791},{"style":71},[1792],{"type":28,"value":1601},{"type":22,"tag":58,"props":1794,"children":1795},{"class":60,"line":374},[1796,1800,1804],{"type":22,"tag":58,"props":1797,"children":1798},{"style":1402},[1799],{"type":28,"value":1566},{"type":22,"tag":58,"props":1801,"children":1802},{"style":449},[1803],{"type":28,"value":1410},{"type":22,"tag":58,"props":1805,"children":1806},{"style":82},[1807],{"type":28,"value":1617},{"type":22,"tag":58,"props":1809,"children":1810},{"class":60,"line":472},[1811,1815,1819],{"type":22,"tag":58,"props":1812,"children":1813},{"style":1402},[1814],{"type":28,"value":1405},{"type":22,"tag":58,"props":1816,"children":1817},{"style":449},[1818],{"type":28,"value":1410},{"type":22,"tag":58,"props":1820,"children":1821},{"style":71},[1822],{"type":28,"value":1823},"Another title\n",{"type":22,"tag":58,"props":1825,"children":1826},{"class":60,"line":481},[1827,1831,1835],{"type":22,"tag":58,"props":1828,"children":1829},{"style":1402},[1830],{"type":28,"value":1761},{"type":22,"tag":58,"props":1832,"children":1833},{"style":449},[1834],{"type":28,"value":1410},{"type":22,"tag":58,"props":1836,"children":1837},{"style":71},[1838],{"type":28,"value":1839},"Another description\n",{"type":22,"tag":58,"props":1841,"children":1842},{"class":60,"line":613},[1843],{"type":22,"tag":58,"props":1844,"children":1845},{"style":449},[1846],{"type":28,"value":1396},{"type":22,"tag":30,"props":1848,"children":1849},{},[1850],{"type":28,"value":1851},"You are now ready to edit your article and create new ones!",{"type":22,"tag":35,"props":1853,"children":1855},{"id":1854},"optional-arguments",[1856],{"type":28,"value":1857},"Optional Arguments",{"type":22,"tag":30,"props":1859,"children":1860},{},[1861],{"type":28,"value":1862},"In the frontmatter block, you can pass additional options for displaying your article, such as displaying badges on the image:",{"type":22,"tag":47,"props":1864,"children":1866},{"className":1382,"code":1865,"language":381,"meta":8,"style":8},"---\ncover: path/to/cover\ndate: 2022-08-23\nbadges: [{\n color: 'white',\n bg: 'rgba(0, 0, 0, 0.3)',\n content: 'Technology'\n}]\n---\n",[1867],{"type":22,"tag":54,"props":1868,"children":1869},{"__ignoreMap":8},[1870,1877,1892,1907,1920,1941,1962,1979,1987],{"type":22,"tag":58,"props":1871,"children":1872},{"class":60,"line":61},[1873],{"type":22,"tag":58,"props":1874,"children":1875},{"style":449},[1876],{"type":28,"value":1396},{"type":22,"tag":58,"props":1878,"children":1879},{"class":60,"line":366},[1880,1884,1888],{"type":22,"tag":58,"props":1881,"children":1882},{"style":1402},[1883],{"type":28,"value":1558},{"type":22,"tag":58,"props":1885,"children":1886},{"style":449},[1887],{"type":28,"value":1410},{"type":22,"tag":58,"props":1889,"children":1890},{"style":71},[1891],{"type":28,"value":1601},{"type":22,"tag":58,"props":1893,"children":1894},{"class":60,"line":374},[1895,1899,1903],{"type":22,"tag":58,"props":1896,"children":1897},{"style":1402},[1898],{"type":28,"value":1566},{"type":22,"tag":58,"props":1900,"children":1901},{"style":449},[1902],{"type":28,"value":1410},{"type":22,"tag":58,"props":1904,"children":1905},{"style":82},[1906],{"type":28,"value":1617},{"type":22,"tag":58,"props":1908,"children":1909},{"class":60,"line":472},[1910,1915],{"type":22,"tag":58,"props":1911,"children":1912},{"style":1402},[1913],{"type":28,"value":1914},"badges",{"type":22,"tag":58,"props":1916,"children":1917},{"style":449},[1918],{"type":28,"value":1919},": [{\n",{"type":22,"tag":58,"props":1921,"children":1922},{"class":60,"line":481},[1923,1928,1932,1937],{"type":22,"tag":58,"props":1924,"children":1925},{"style":1402},[1926],{"type":28,"value":1927}," color",{"type":22,"tag":58,"props":1929,"children":1930},{"style":449},[1931],{"type":28,"value":1410},{"type":22,"tag":58,"props":1933,"children":1934},{"style":71},[1935],{"type":28,"value":1936},"'white'",{"type":22,"tag":58,"props":1938,"children":1939},{"style":449},[1940],{"type":28,"value":576},{"type":22,"tag":58,"props":1942,"children":1943},{"class":60,"line":613},[1944,1949,1953,1958],{"type":22,"tag":58,"props":1945,"children":1946},{"style":1402},[1947],{"type":28,"value":1948}," bg",{"type":22,"tag":58,"props":1950,"children":1951},{"style":449},[1952],{"type":28,"value":1410},{"type":22,"tag":58,"props":1954,"children":1955},{"style":71},[1956],{"type":28,"value":1957},"'rgba(0, 0, 0, 0.3)'",{"type":22,"tag":58,"props":1959,"children":1960},{"style":449},[1961],{"type":28,"value":576},{"type":22,"tag":58,"props":1963,"children":1964},{"class":60,"line":622},[1965,1970,1974],{"type":22,"tag":58,"props":1966,"children":1967},{"style":1402},[1968],{"type":28,"value":1969}," content",{"type":22,"tag":58,"props":1971,"children":1972},{"style":449},[1973],{"type":28,"value":1410},{"type":22,"tag":58,"props":1975,"children":1976},{"style":71},[1977],{"type":28,"value":1978},"'Technology'\n",{"type":22,"tag":58,"props":1980,"children":1981},{"class":60,"line":631},[1982],{"type":22,"tag":58,"props":1983,"children":1984},{"style":449},[1985],{"type":28,"value":1986},"}]\n",{"type":22,"tag":58,"props":1988,"children":1989},{"class":60,"line":648},[1990],{"type":22,"tag":58,"props":1991,"children":1992},{"style":449},[1993],{"type":28,"value":1396},{"type":22,"tag":35,"props":1995,"children":1997},{"id":1996},"read-more",[1998],{"type":28,"value":1999},"Read more",{"type":22,"tag":30,"props":2001,"children":2002},{},[2003,2005,2011],{"type":28,"value":2004},"Alpine is a Nuxt theme using the Content module in ",{"type":22,"tag":54,"props":2006,"children":2008},{"className":2007},[],[2009],{"type":28,"value":2010},"documentDriven",{"type":28,"value":2012}," mode.",{"type":22,"tag":30,"props":2014,"children":2015},{},[2016,2018,2025],{"type":28,"value":2017},"👉 Learn more in the ",{"type":22,"tag":260,"props":2019,"children":2022},{"href":2020,"rel":2021},"https://content.nuxtjs.org/",[264],[2023],{"type":28,"value":2024},"Nuxt Content documentation",{"type":28,"value":501},{"type":22,"tag":360,"props":2027,"children":2028},{},[2029],{"type":28,"value":364},{"title":8,"searchDepth":366,"depth":366,"links":2031},[2032,2033,2034,2035,2036,2037],{"id":1326,"depth":366,"text":1329},{"id":1493,"depth":366,"text":1496},{"id":1651,"depth":366,"text":1654},{"id":1741,"depth":366,"text":1744},{"id":1854,"depth":366,"text":1857},{"id":1996,"depth":366,"text":1999},"content:articles:3.write-articles.md","articles/3.write-articles.md",{"_path":2041,"_dir":6,"_draft":7,"_partial":7,"_locale":8,"title":2042,"description":2043,"cover":2044,"date":16,"layout":17,"body":2045,"_type":377,"_id":2302,"_source":379,"_file":2303,"_extension":381},"/articles/design-tokens","Customize Alpine","Leverage the tokens.config.ts to give your identity to Alpine.","/articles/design-tokens.webp",{"type":19,"children":2046,"toc":2300},[2047,2052,2065,2079,2101,2113,2261,2283,2296],{"type":22,"tag":23,"props":2048,"children":2050},{"id":2049},"customize-alpine",[2051],{"type":28,"value":2042},{"type":22,"tag":30,"props":2053,"children":2054},{},[2055,2057,2063],{"type":28,"value":2056},"Leverage the ",{"type":22,"tag":54,"props":2058,"children":2060},{"className":2059},[],[2061],{"type":28,"value":2062},"tokens.config.ts",{"type":28,"value":2064}," to give your identity to Alpine.",{"type":22,"tag":30,"props":2066,"children":2067},{},[2068,2070,2077],{"type":28,"value":2069},"Look at the ",{"type":22,"tag":260,"props":2071,"children":2074},{"href":2072,"rel":2073},"https://github.com/nuxt-themes/alpine/blob/main/tokens.config.ts",[264],[2075],{"type":28,"value":2076},"default tokens config",{"type":28,"value":2078}," to check all the Alpine related Design Tokens.",{"type":22,"tag":30,"props":2080,"children":2081},{},[2082,2084,2091,2093,2100],{"type":28,"value":2083},"Alpine is also powered by ",{"type":22,"tag":260,"props":2085,"children":2088},{"href":2086,"rel":2087},"https://www.npmjs.com/package/@nuxt-themes/tokens",[264],[2089],{"type":28,"value":2090},"@nuxt-themes/tokens",{"type":28,"value":2092},", see the ",{"type":22,"tag":260,"props":2094,"children":2097},{"href":2095,"rel":2096},"https://unpkg.com/@nuxt-themes/tokens@latest/dist/tokens.config.ts",[264],[2098],{"type":28,"value":2099},"package tokens.config.ts",{"type":28,"value":501},{"type":22,"tag":30,"props":2102,"children":2103},{},[2104,2106,2111],{"type":28,"value":2105},"You can configure all the theme tokens to change the apperance of Alpine by creating a ",{"type":22,"tag":54,"props":2107,"children":2109},{"className":2108},[],[2110],{"type":28,"value":2062},{"type":28,"value":2112}," in your project:",{"type":22,"tag":47,"props":2114,"children":2116},{"className":421,"code":2115,"language":423,"meta":8,"style":8},"import { defineTheme } from 'pinceau'\n\nexport default defineTheme({\n alpine: {\n body: {\n // Update the background color in light & dark mode\n backgroundColor: {\n initial: '#f8fafc',\n dark: '#0f172a'\n }\n }\n }\n})\n",[2117],{"type":22,"tag":54,"props":2118,"children":2119},{"__ignoreMap":8},[2120,2143,2152,2172,2179,2187,2195,2203,2220,2233,2240,2247,2254],{"type":22,"tag":58,"props":2121,"children":2122},{"class":60,"line":61},[2123,2128,2133,2138],{"type":22,"tag":58,"props":2124,"children":2125},{"style":433},[2126],{"type":28,"value":2127},"import",{"type":22,"tag":58,"props":2129,"children":2130},{"style":449},[2131],{"type":28,"value":2132}," { defineTheme } ",{"type":22,"tag":58,"props":2134,"children":2135},{"style":433},[2136],{"type":28,"value":2137},"from",{"type":22,"tag":58,"props":2139,"children":2140},{"style":71},[2141],{"type":28,"value":2142}," 'pinceau'\n",{"type":22,"tag":58,"props":2144,"children":2145},{"class":60,"line":366},[2146],{"type":22,"tag":58,"props":2147,"children":2149},{"emptyLinePlaceholder":2148},true,[2150],{"type":28,"value":2151},"\n",{"type":22,"tag":58,"props":2153,"children":2154},{"class":60,"line":374},[2155,2159,2163,2168],{"type":22,"tag":58,"props":2156,"children":2157},{"style":433},[2158],{"type":28,"value":436},{"type":22,"tag":58,"props":2160,"children":2161},{"style":433},[2162],{"type":28,"value":441},{"type":22,"tag":58,"props":2164,"children":2165},{"style":65},[2166],{"type":28,"value":2167}," defineTheme",{"type":22,"tag":58,"props":2169,"children":2170},{"style":449},[2171],{"type":28,"value":452},{"type":22,"tag":58,"props":2173,"children":2174},{"class":60,"line":472},[2175],{"type":22,"tag":58,"props":2176,"children":2177},{"style":449},[2178],{"type":28,"value":460},{"type":22,"tag":58,"props":2180,"children":2181},{"class":60,"line":481},[2182],{"type":22,"tag":58,"props":2183,"children":2184},{"style":449},[2185],{"type":28,"value":2186}," body: {\n",{"type":22,"tag":58,"props":2188,"children":2189},{"class":60,"line":613},[2190],{"type":22,"tag":58,"props":2191,"children":2192},{"style":466},[2193],{"type":28,"value":2194}," // Update the background color in light & dark mode\n",{"type":22,"tag":58,"props":2196,"children":2197},{"class":60,"line":622},[2198],{"type":22,"tag":58,"props":2199,"children":2200},{"style":449},[2201],{"type":28,"value":2202}," backgroundColor: {\n",{"type":22,"tag":58,"props":2204,"children":2205},{"class":60,"line":631},[2206,2211,2216],{"type":22,"tag":58,"props":2207,"children":2208},{"style":449},[2209],{"type":28,"value":2210}," initial: ",{"type":22,"tag":58,"props":2212,"children":2213},{"style":71},[2214],{"type":28,"value":2215},"'#f8fafc'",{"type":22,"tag":58,"props":2217,"children":2218},{"style":449},[2219],{"type":28,"value":576},{"type":22,"tag":58,"props":2221,"children":2222},{"class":60,"line":648},[2223,2228],{"type":22,"tag":58,"props":2224,"children":2225},{"style":449},[2226],{"type":28,"value":2227}," dark: ",{"type":22,"tag":58,"props":2229,"children":2230},{"style":71},[2231],{"type":28,"value":2232},"'#0f172a'\n",{"type":22,"tag":58,"props":2234,"children":2235},{"class":60,"line":666},[2236],{"type":22,"tag":58,"props":2237,"children":2238},{"style":449},[2239],{"type":28,"value":957},{"type":22,"tag":58,"props":2241,"children":2242},{"class":60,"line":684},[2243],{"type":22,"tag":58,"props":2244,"children":2245},{"style":449},[2246],{"type":28,"value":704},{"type":22,"tag":58,"props":2248,"children":2249},{"class":60,"line":698},[2250],{"type":22,"tag":58,"props":2251,"children":2252},{"style":449},[2253],{"type":28,"value":478},{"type":22,"tag":58,"props":2255,"children":2256},{"class":60,"line":707},[2257],{"type":22,"tag":58,"props":2258,"children":2259},{"style":449},[2260],{"type":28,"value":721},{"type":22,"tag":30,"props":2262,"children":2263},{},[2264,2266,2273,2275,2281],{"type":28,"value":2265},"If you are using ",{"type":22,"tag":260,"props":2267,"children":2270},{"href":2268,"rel":2269},"https://nuxt.studio",[264],[2271],{"type":28,"value":2272},"Nuxt Studio",{"type":28,"value":2274},", you can use an UI to update the ",{"type":22,"tag":54,"props":2276,"children":2278},{"className":2277},[],[2279],{"type":28,"value":2280},"token.config.ts",{"type":28,"value":2282}," of your Alpine project:",{"type":22,"tag":30,"props":2284,"children":2285},{},[2286],{"type":22,"tag":260,"props":2287,"children":2289},{"href":2268,"rel":2288},[264],[2290],{"type":22,"tag":2291,"props":2292,"children":2295},"img",{"alt":2293,"src":2294},"design-tokens-studio.png","/design-tokens-studio.png",[],{"type":22,"tag":360,"props":2297,"children":2298},{},[2299],{"type":28,"value":364},{"title":8,"searchDepth":366,"depth":366,"links":2301},[],"content:articles:4.design-tokens.md","articles/4.design-tokens.md",1714687114573] \ No newline at end of file diff --git a/.starters/default/public/articles/configure-alpine.webp b/articles/configure-alpine.webp similarity index 100% rename from .starters/default/public/articles/configure-alpine.webp rename to articles/configure-alpine.webp diff --git a/articles/configure/_payload.json b/articles/configure/_payload.json new file mode 100644 index 000000000..12bd4c51a --- /dev/null +++ b/articles/configure/_payload.json @@ -0,0 +1 @@ +[{"data":1,"prerenderedAt":3},["Reactive",2],{},1714687114735] \ No newline at end of file diff --git a/articles/configure/index.html b/articles/configure/index.html new file mode 100644 index 000000000..2751e91db --- /dev/null +++ b/articles/configure/index.html @@ -0,0 +1,114 @@ + + +Configure Alpine + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Back

Configure Alpine

Configure Alpine

To configure meta tags, social links or even the Alpine theme display, update the alpine key in the app.config.ts at the root of your project:

app.config.ts
export default defineAppConfig({
+  alpine: {
+    /* Alpine configuration goes here */
+  }
+}
+

You can look at the default config.

The config schema also gives comments on all the configuration parameters.

Meta tags

Configure the title, description and social image of your website:

app.config.ts
export default defineAppConfig({
+  alpine: {
+    title: 'Alpine',
+    description: 'The minimalist blog theme',
+    image: '/social-card-preview.png',
+    // image can also be an object:
+    image: {
+      src: '/social-card-preview.png',
+      alt: 'An image showcasing my project.',
+      width: 400,
+      height: 300
+    }
+  }
+})
+

To configure the social links displayed in the footer, use the socials property:

app.config.ts
export default defineAppConfig({
+  alpine: {
+    socials: {
+      twitter: 'nuxtlabs',
+      instagram: 'wearenuxt',
+      linkedin: {
+        icon: 'uil:linkedin',
+        label: 'LinkedIn',
+        href: 'https://www.linkedin.com/company/nuxtlabs'
+      },
+      mastodon: {
+        icon: 'simple-icons:mastodon',
+        label: 'Mastodon',
+        href: 'https://m.webtoo.ls/@nuxt',
+        rel: 'me'
+      }
+    }
+  }
+})
+

Theme display

Alpine Header and Footer can also be customized via the app.config.ts file:

app.config.ts
defineAppConfig({
+  alpine: {
+    // Remove header with header: false
+    header: {
+      position: 'inline', // possible value are : 'none' | 'left' | 'center' | 'right' | 'inline'
+      logo: false
+    },
+    // Remove header with footer: false
+    footer: {
+      credits: {
+        enabled: true, // possible value are : true | false
+        repository: 'https://www.github.com/nuxt-themes/alpine' // our github repository
+      },
+      navigation: false, // possible value are : true | false
+      position: 'center', // possible value are : 'none' | 'left' | 'center' | 'right'
+      message: 'Follow me on' // string that will be displayed on the footer (leave empty or delete to disable)
+    }
+    // Disable back to top button: false
+    backToTop: {
+      text: 'Back to top',
+      icon: 'material-symbols:arrow-upward'
+    }
+  }
+})
+
+ \ No newline at end of file diff --git a/.starters/default/public/articles/design-tokens.webp b/articles/design-tokens.webp similarity index 100% rename from .starters/default/public/articles/design-tokens.webp rename to articles/design-tokens.webp diff --git a/articles/design-tokens/_payload.json b/articles/design-tokens/_payload.json new file mode 100644 index 000000000..8ebb68ad1 --- /dev/null +++ b/articles/design-tokens/_payload.json @@ -0,0 +1 @@ +[{"data":1,"prerenderedAt":3},["Reactive",2],{},1714687114739] \ No newline at end of file diff --git a/articles/design-tokens/index.html b/articles/design-tokens/index.html new file mode 100644 index 000000000..50f969374 --- /dev/null +++ b/articles/design-tokens/index.html @@ -0,0 +1,65 @@ + + +Customize Alpine + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Back

Customize Alpine

Customize Alpine

Leverage the tokens.config.ts to give your identity to Alpine.

Look at the default tokens config to check all the Alpine related Design Tokens.

Alpine is also powered by @nuxt-themes/tokens, see the package tokens.config.ts.

You can configure all the theme tokens to change the apperance of Alpine by creating a tokens.config.ts in your project:

import { defineTheme } from 'pinceau'
+
+export default defineTheme({
+  alpine: {
+    body: {
+      // Update the background color in light & dark mode
+      backgroundColor: {
+        initial: '#f8fafc',
+        dark: '#0f172a'
+      }
+    }
+  }
+})
+

If you are using Nuxt Studio, you can use an UI to update the token.config.ts of your Alpine project:

design-tokens-studio.png

+ \ No newline at end of file diff --git a/.starters/default/public/articles/get-started.webp b/articles/get-started.webp similarity index 100% rename from .starters/default/public/articles/get-started.webp rename to articles/get-started.webp diff --git a/articles/get-started/_payload.json b/articles/get-started/_payload.json new file mode 100644 index 000000000..3a63330c2 --- /dev/null +++ b/articles/get-started/_payload.json @@ -0,0 +1 @@ +[{"data":1,"prerenderedAt":3},["Reactive",2],{},1714687114732] \ No newline at end of file diff --git a/articles/get-started/index.html b/articles/get-started/index.html new file mode 100644 index 000000000..9106df58b --- /dev/null +++ b/articles/get-started/index.html @@ -0,0 +1,66 @@ + + +Get started with Alpine + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Back

Get started with Alpine

Get started with Alpine

Creating a blog with Alpine is a command away, as well as deploying to many platforms.

Create a blog

Open a terminal an run the following command:

npx nuxi@latest init -t themes/alpine
+

Dependencies

Next, go to to my-blog/ directory and install the dependencies:

npm install
+

Development

Start the development server on port 3000:

npm run dev
+

Next, you can start creating your content in Markdown in the content/ directory.

Deploy

Static hosting

You can deploy Alpine to any static hosting by running the following command:

npm run generate
+

This command will create a dist/ directory with the compiled files ready to be uploaded to any static hosting.

Edge platforms

Alpine supports deploying to the following platforms with zero configuration:

Node server

You can deploy Alpine to a Node server by running the following command:

npm run build
+

This command will create a .output/ directory with the compiled files ready to be uploaded to any Node server.

To start the production server, run the following command:

node .output/server/index.mjs
+
+ \ No newline at end of file diff --git a/articles/index.html b/articles/index.html new file mode 100644 index 000000000..30b19b5c1 --- /dev/null +++ b/articles/index.html @@ -0,0 +1,46 @@ + + +Articles + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Configure Alpine

Configure Alpine

Learn how to configure Alpine with the app.config.ts file.

Write Articles

Write Articles

Writing Markdown articles in Alpine is straightforward.

Customize Alpine

Customize Alpine

Leverage the tokens.config.ts to give your identity to Alpine.

+ \ No newline at end of file diff --git a/.starters/default/public/articles/write-articles.webp b/articles/write-articles.webp similarity index 100% rename from .starters/default/public/articles/write-articles.webp rename to articles/write-articles.webp diff --git a/articles/write-articles/_payload.json b/articles/write-articles/_payload.json new file mode 100644 index 000000000..a86943a40 --- /dev/null +++ b/articles/write-articles/_payload.json @@ -0,0 +1 @@ +[{"data":1,"prerenderedAt":3},["Reactive",2],{},1714687114737] \ No newline at end of file diff --git a/articles/write-articles/index.html b/articles/write-articles/index.html new file mode 100644 index 000000000..98c740374 --- /dev/null +++ b/articles/write-articles/index.html @@ -0,0 +1,89 @@ + + +Write Articles + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Back

Write Articles

Write Articles

Write Markdown articles in Alpine is straightforward.

Create an articles list

Create a new file in the content/ directory:

touch content/2.articles.md
+

The numbered prefix determines the order of the menu items.

In this file, use the articles-list component to display the list of articles:

2.articles.md
---
+title: 'Articles'
+layout: 'page'
+---
+::articles-list
+---
+path: articles
+---
+::
+

The path prop corresponds to the directory where the articles are stored.

Display an article in the list

Create a new file in the /content/articles directory:

mkdir content/articles
+touch content/articles/1.my-new-article.md
+

For your article to be correctly displayed in the articles list, define a cover and date property in the frontmatter:

content/articles/1.my-new-article.md
---
+cover: path/to/cover
+date: 2022-08-23
+---
+

The cover property can be a local path relative to the /public directory or an external URL.

Your article will now be displayed in the list with its filename as a default title.

Edit your article

Under the frontmatter block, enter a Markdown h1 tag and a line of text:

content/articles/1.my-new-article.md
---
+cover: path/to/cover
+date: 2022-08-23
+---
+# An awesome article
+This article is little by size but big by heart.
+

Your article will now be displayed in the list with the title and description you wrote in Markdown.

Override title and description

If you want to change the title and description displayed on the list and in the meta tags of the article, add the title and description property to your frontmatter:

content/articles/1.my-new-article.md
---
+cover: path/to/cover
+date: 2022-08-23
+title: Another title
+description: Another description
+---
+

You are now ready to edit your article and create new ones!

Optional Arguments

In the frontmatter block, you can pass additional options for displaying your article, such as displaying badges on the image:

---
+cover: path/to/cover
+date: 2022-08-23
+badges: [{
+  color: 'white',
+  bg: 'rgba(0, 0, 0, 0.3)',
+  content: 'Technology'
+}]
+---
+

Read more

Alpine is a Nuxt theme using the Content module in documentDriven mode.

👉 Learn more in the Nuxt Content documentation.

+ \ No newline at end of file diff --git a/assets/main.css b/assets/main.css deleted file mode 100644 index 3dcb50b99..000000000 --- a/assets/main.css +++ /dev/null @@ -1,20 +0,0 @@ -body { - background-color: $dt('alpine.body.backgroundColor'); - color: $dt('alpine.body.color'); -} - -/* Color scheme images helper classes */ -.light-img { - display: block; -} -.dark-img { - display: none; -} -@dark { - .dark-img { - display: block; - } - .light-img { - display: none; - } -} diff --git a/components/AppFooter.vue b/components/AppFooter.vue deleted file mode 100644 index 8b1eb5445..000000000 --- a/components/AppFooter.vue +++ /dev/null @@ -1,110 +0,0 @@ - - - - - diff --git a/components/AppHeader.vue b/components/AppHeader.vue deleted file mode 100644 index 9142eae8f..000000000 --- a/components/AppHeader.vue +++ /dev/null @@ -1,151 +0,0 @@ - - - - - diff --git a/components/AppLayout.vue b/components/AppLayout.vue deleted file mode 100644 index 8972ec6d0..000000000 --- a/components/AppLayout.vue +++ /dev/null @@ -1,35 +0,0 @@ - - - - - \ No newline at end of file diff --git a/components/AppLoadingBar.vue b/components/AppLoadingBar.vue deleted file mode 100644 index e830f3169..000000000 --- a/components/AppLoadingBar.vue +++ /dev/null @@ -1,110 +0,0 @@ - - - - - diff --git a/components/Button.vue b/components/Button.vue deleted file mode 100644 index ec2dde7e3..000000000 --- a/components/Button.vue +++ /dev/null @@ -1,46 +0,0 @@ - - - - - diff --git a/components/ColorModeSwitch.vue b/components/ColorModeSwitch.vue deleted file mode 100644 index b0c747f0a..000000000 --- a/components/ColorModeSwitch.vue +++ /dev/null @@ -1,47 +0,0 @@ - - - - - diff --git a/components/DocumentDrivenNotFound.vue b/components/DocumentDrivenNotFound.vue deleted file mode 100644 index c7d91150b..000000000 --- a/components/DocumentDrivenNotFound.vue +++ /dev/null @@ -1,49 +0,0 @@ - - - \ No newline at end of file diff --git a/components/MainNav.vue b/components/MainNav.vue deleted file mode 100644 index 87d2ac175..000000000 --- a/components/MainNav.vue +++ /dev/null @@ -1,64 +0,0 @@ - - - - - diff --git a/components/SocialIcons.vue b/components/SocialIcons.vue deleted file mode 100644 index a83aff0e6..000000000 --- a/components/SocialIcons.vue +++ /dev/null @@ -1,62 +0,0 @@ - - - - - diff --git a/components/content/ArticlesList.vue b/components/content/ArticlesList.vue deleted file mode 100644 index 72814b90a..000000000 --- a/components/content/ArticlesList.vue +++ /dev/null @@ -1,72 +0,0 @@ - - - - - diff --git a/components/content/ArticlesListItem.vue b/components/content/ArticlesListItem.vue deleted file mode 100644 index 30cedec31..000000000 --- a/components/content/ArticlesListItem.vue +++ /dev/null @@ -1,110 +0,0 @@ - - - - - diff --git a/components/content/ContactForm.vue b/components/content/ContactForm.vue deleted file mode 100644 index f85a084c6..000000000 --- a/components/content/ContactForm.vue +++ /dev/null @@ -1,123 +0,0 @@ - - - - - diff --git a/components/content/Gallery.vue b/components/content/Gallery.vue deleted file mode 100644 index ee5f93889..000000000 --- a/components/content/Gallery.vue +++ /dev/null @@ -1,49 +0,0 @@ - - - - - diff --git a/components/content/Hero.vue b/components/content/Hero.vue deleted file mode 100644 index 1504c65be..000000000 --- a/components/content/Hero.vue +++ /dev/null @@ -1,77 +0,0 @@ - - - - - diff --git a/components/data-entry/Input.vue b/components/data-entry/Input.vue deleted file mode 100644 index 825b945d0..000000000 --- a/components/data-entry/Input.vue +++ /dev/null @@ -1,87 +0,0 @@ - - -