[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-frontend-ui-dark-ts":3,"mdc-erghb6-key":43,"related-repo-microsoft-frontend-ui-dark-ts":11136,"related-org-microsoft-frontend-ui-dark-ts":11247},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":38,"sourceUrl":41,"mdContent":42},"frontend-ui-dark-ts","build dark-themed React interfaces","Build dark-themed React applications using Tailwind CSS with custom theming, glassmorphism effects, and Framer Motion animations. Use when creating dashboards, admin panels, or data-rich interfaces with a refined dark aesthetic.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"microsoft","Microsoft","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmicrosoft.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"React","react","tag",{"name":17,"slug":18,"type":15},"Tailwind CSS","tailwind-css",{"name":20,"slug":21,"type":15},"Animation","animation",{"name":23,"slug":24,"type":15},"Frontend","frontend",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:31:20.650776","MIT",315,[31,32,33,34,35,36,37],"agent-skills","agents","azure","foundry","mcp","sdk","skills",{"repoUrl":26,"stars":25,"forks":29,"topics":39,"description":40},[31,32,33,34,35,36,37],"Skills, MCP servers, Custom Agents, Agents.md for SDKs to ground Coding Agents","https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills\u002Ftree\u002FHEAD\u002F.github\u002Fplugins\u002Fazure-sdk-typescript\u002Fskills\u002Ffrontend-ui-dark-ts","---\nname: frontend-ui-dark-ts\ndescription: Build dark-themed React applications using Tailwind CSS with custom theming, glassmorphism effects, and Framer Motion animations. Use when creating dashboards, admin panels, or data-rich interfaces with a refined dark aesthetic.\nlicense: MIT\nmetadata:\n  author: Microsoft\n  version: \"1.0.0\"\n---\n\n# Frontend UI Dark Theme (TypeScript)\n\nA modern dark-themed React UI system using **Tailwind CSS** and **Framer Motion**. Designed for dashboards, admin panels, and data-rich applications with glassmorphism effects and tasteful animations.\n\n## Stack\n\n| Package | Version | Purpose |\n|---------|---------|---------|\n| `react` | ^18.x | UI framework |\n| `react-dom` | ^18.x | DOM rendering |\n| `react-router-dom` | ^6.x | Routing |\n| `framer-motion` | ^11.x | Animations |\n| `clsx` | ^2.x | Class merging |\n| `tailwindcss` | ^3.x | Styling |\n| `vite` | ^5.x | Build tool |\n| `typescript` | ^5.x | Type safety |\n\n## Quick Start\n\n```bash\nnpm create vite@latest my-app -- --template react-ts\ncd my-app\nnpm install framer-motion clsx react-router-dom\nnpm install -D tailwindcss postcss autoprefixer\nnpx tailwindcss init -p\n```\n\n## Project Structure\n\n```\npublic\u002F\n├── favicon.ico                    # Classic favicon (32x32)\n├── favicon.svg                    # Modern SVG favicon\n├── apple-touch-icon.png           # iOS home screen (180x180)\n├── og-image.png                   # Social sharing image (1200x630)\n└── site.webmanifest               # PWA manifest\nsrc\u002F\n├── assets\u002F\n│   └── fonts\u002F\n│       ├── Segoe UI.ttf\n│       ├── Segoe UI Bold.ttf\n│       ├── Segoe UI Italic.ttf\n│       └── Segoe UI Bold Italic.ttf\n├── components\u002F\n│   ├── ui\u002F\n│   │   ├── Button.tsx\n│   │   ├── Card.tsx\n│   │   ├── Input.tsx\n│   │   ├── Badge.tsx\n│   │   ├── Dialog.tsx\n│   │   ├── Tabs.tsx\n│   │   └── index.ts\n│   └── layout\u002F\n│       ├── AppShell.tsx\n│       ├── Sidebar.tsx\n│       └── PageHeader.tsx\n├── styles\u002F\n│   └── globals.css\n├── App.tsx\n└── main.tsx\n```\n\n## Configuration\n\n### index.html\n\nThe HTML entry point with mobile viewport, favicons, and social meta tags:\n\n```html\n\u003C!DOCTYPE html>\n\u003Chtml lang=\"en\">\n  \u003Chead>\n    \u003Cmeta charset=\"UTF-8\" \u002F>\n    \u003Cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, viewport-fit=cover\" \u002F>\n    \n    \u003C!-- Favicons -->\n    \u003Clink rel=\"icon\" href=\"\u002Ffavicon.ico\" sizes=\"32x32\" \u002F>\n    \u003Clink rel=\"icon\" href=\"\u002Ffavicon.svg\" type=\"image\u002Fsvg+xml\" \u002F>\n    \u003Clink rel=\"apple-touch-icon\" href=\"\u002Fapple-touch-icon.png\" \u002F>\n    \u003Clink rel=\"manifest\" href=\"\u002Fsite.webmanifest\" \u002F>\n    \n    \u003C!-- Theme color for mobile browser chrome -->\n    \u003Cmeta name=\"theme-color\" content=\"#18181B\" \u002F>\n    \n    \u003C!-- Open Graph -->\n    \u003Cmeta property=\"og:type\" content=\"website\" \u002F>\n    \u003Cmeta property=\"og:title\" content=\"App Name\" \u002F>\n    \u003Cmeta property=\"og:description\" content=\"App description\" \u002F>\n    \u003Cmeta property=\"og:image\" content=\"https:\u002F\u002Fexample.com\u002Fog-image.png\" \u002F>\n    \u003Cmeta property=\"og:url\" content=\"https:\u002F\u002Fexample.com\" \u002F>\n    \n    \u003C!-- Twitter Card -->\n    \u003Cmeta name=\"twitter:card\" content=\"summary_large_image\" \u002F>\n    \u003Cmeta name=\"twitter:title\" content=\"App Name\" \u002F>\n    \u003Cmeta name=\"twitter:description\" content=\"App description\" \u002F>\n    \u003Cmeta name=\"twitter:image\" content=\"https:\u002F\u002Fexample.com\u002Fog-image.png\" \u002F>\n    \n    \u003Ctitle>App Name\u003C\u002Ftitle>\n  \u003C\u002Fhead>\n  \u003Cbody>\n    \u003Cdiv id=\"root\">\u003C\u002Fdiv>\n    \u003Cscript type=\"module\" src=\"\u002Fsrc\u002Fmain.tsx\">\u003C\u002Fscript>\n  \u003C\u002Fbody>\n\u003C\u002Fhtml>\n```\n\n### public\u002Fsite.webmanifest\n\nPWA manifest for installable web apps:\n\n```json\n{\n  \"name\": \"App Name\",\n  \"short_name\": \"App\",\n  \"icons\": [\n    { \"src\": \"\u002Ffavicon.ico\", \"sizes\": \"32x32\", \"type\": \"image\u002Fx-icon\" },\n    { \"src\": \"\u002Fapple-touch-icon.png\", \"sizes\": \"180x180\", \"type\": \"image\u002Fpng\" }\n  ],\n  \"theme_color\": \"#18181B\",\n  \"background_color\": \"#18181B\",\n  \"display\": \"standalone\"\n}\n```\n\n### tailwind.config.js\n\n```js\n\u002F** @type {import('tailwindcss').Config} *\u002F\nexport default {\n  content: ['.\u002Findex.html', '.\u002Fsrc\u002F**\u002F*.{js,ts,jsx,tsx}'],\n  theme: {\n    extend: {\n      fontFamily: {\n        sans: ['Segoe UI', 'system-ui', 'sans-serif'],\n      },\n      colors: {\n        brand: {\n          DEFAULT: '#8251EE',\n          hover: '#9366F5',\n          light: '#A37EF5',\n          subtle: 'rgba(130, 81, 238, 0.15)',\n        },\n        neutral: {\n          bg1: 'hsl(240, 6%, 10%)',\n          bg2: 'hsl(240, 5%, 12%)',\n          bg3: 'hsl(240, 5%, 14%)',\n          bg4: 'hsl(240, 4%, 18%)',\n          bg5: 'hsl(240, 4%, 22%)',\n          bg6: 'hsl(240, 4%, 26%)',\n        },\n        text: {\n          primary: '#FFFFFF',\n          secondary: '#A1A1AA',\n          muted: '#71717A',\n        },\n        border: {\n          subtle: 'hsla(0, 0%, 100%, 0.08)',\n          DEFAULT: 'hsla(0, 0%, 100%, 0.12)',\n          strong: 'hsla(0, 0%, 100%, 0.20)',\n        },\n        status: {\n          success: '#10B981',\n          warning: '#F59E0B',\n          error: '#EF4444',\n          info: '#3B82F6',\n        },\n        dataviz: {\n          purple: '#8251EE',\n          blue: '#3B82F6',\n          green: '#10B981',\n          yellow: '#F59E0B',\n          red: '#EF4444',\n          pink: '#EC4899',\n          cyan: '#06B6D4',\n        },\n      },\n      borderRadius: {\n        DEFAULT: '0.5rem',\n        lg: '0.75rem',\n        xl: '1rem',\n      },\n      boxShadow: {\n        glow: '0 0 20px rgba(130, 81, 238, 0.3)',\n        'glow-lg': '0 0 40px rgba(130, 81, 238, 0.4)',\n      },\n      backdropBlur: {\n        xs: '2px',\n      },\n      animation: {\n        'fade-in': 'fadeIn 0.3s ease-out',\n        'slide-up': 'slideUp 0.3s ease-out',\n        'slide-down': 'slideDown 0.3s ease-out',\n      },\n      keyframes: {\n        fadeIn: {\n          '0%': { opacity: '0' },\n          '100%': { opacity: '1' },\n        },\n        slideUp: {\n          '0%': { opacity: '0', transform: 'translateY(10px)' },\n          '100%': { opacity: '1', transform: 'translateY(0)' },\n        },\n        slideDown: {\n          '0%': { opacity: '0', transform: 'translateY(-10px)' },\n          '100%': { opacity: '1', transform: 'translateY(0)' },\n        },\n      },\n      \u002F\u002F Mobile: safe area insets for notched devices\n      spacing: {\n        'safe-top': 'env(safe-area-inset-top)',\n        'safe-bottom': 'env(safe-area-inset-bottom)',\n        'safe-left': 'env(safe-area-inset-left)',\n        'safe-right': 'env(safe-area-inset-right)',\n      },\n      \u002F\u002F Mobile: minimum touch target sizes (44px per Apple\u002FGoogle guidelines)\n      minHeight: {\n        'touch': '44px',\n      },\n      minWidth: {\n        'touch': '44px',\n      },\n    },\n  },\n  plugins: [],\n};\n```\n\n### postcss.config.js\n\n```js\nexport default {\n  plugins: {\n    tailwindcss: {},\n    autoprefixer: {},\n  },\n};\n```\n\n### src\u002Fstyles\u002Fglobals.css\n\n```css\n@tailwind base;\n@tailwind components;\n@tailwind utilities;\n\n\u002F* Font faces *\u002F\n@font-face {\n  font-family: 'Segoe UI';\n  src: url('..\u002Fassets\u002Ffonts\u002FSegoe UI.ttf') format('truetype');\n  font-weight: 400;\n  font-style: normal;\n  font-display: swap;\n}\n\n@font-face {\n  font-family: 'Segoe UI';\n  src: url('..\u002Fassets\u002Ffonts\u002FSegoe UI Bold.ttf') format('truetype');\n  font-weight: 700;\n  font-style: normal;\n  font-display: swap;\n}\n\n@font-face {\n  font-family: 'Segoe UI';\n  src: url('..\u002Fassets\u002Ffonts\u002FSegoe UI Italic.ttf') format('truetype');\n  font-weight: 400;\n  font-style: italic;\n  font-display: swap;\n}\n\n@font-face {\n  font-family: 'Segoe UI';\n  src: url('..\u002Fassets\u002Ffonts\u002FSegoe UI Bold Italic.ttf') format('truetype');\n  font-weight: 700;\n  font-style: italic;\n  font-display: swap;\n}\n\n\u002F* CSS Custom Properties *\u002F\n:root {\n  \u002F* Brand colors *\u002F\n  --color-brand: #8251EE;\n  --color-brand-hover: #9366F5;\n  --color-brand-light: #A37EF5;\n  --color-brand-subtle: rgba(130, 81, 238, 0.15);\n\n  \u002F* Neutral backgrounds *\u002F\n  --color-bg-1: hsl(240, 6%, 10%);\n  --color-bg-2: hsl(240, 5%, 12%);\n  --color-bg-3: hsl(240, 5%, 14%);\n  --color-bg-4: hsl(240, 4%, 18%);\n  --color-bg-5: hsl(240, 4%, 22%);\n  --color-bg-6: hsl(240, 4%, 26%);\n\n  \u002F* Text colors *\u002F\n  --color-text-primary: #FFFFFF;\n  --color-text-secondary: #A1A1AA;\n  --color-text-muted: #71717A;\n\n  \u002F* Border colors *\u002F\n  --color-border-subtle: hsla(0, 0%, 100%, 0.08);\n  --color-border-default: hsla(0, 0%, 100%, 0.12);\n  --color-border-strong: hsla(0, 0%, 100%, 0.20);\n\n  \u002F* Status colors *\u002F\n  --color-success: #10B981;\n  --color-warning: #F59E0B;\n  --color-error: #EF4444;\n  --color-info: #3B82F6;\n\n  \u002F* Spacing *\u002F\n  --spacing-xs: 0.25rem;\n  --spacing-sm: 0.5rem;\n  --spacing-md: 1rem;\n  --spacing-lg: 1.5rem;\n  --spacing-xl: 2rem;\n  --spacing-2xl: 3rem;\n\n  \u002F* Border radius *\u002F\n  --radius-sm: 0.375rem;\n  --radius-md: 0.5rem;\n  --radius-lg: 0.75rem;\n  --radius-xl: 1rem;\n\n  \u002F* Transitions *\u002F\n  --transition-fast: 150ms ease;\n  --transition-normal: 200ms ease;\n  --transition-slow: 300ms ease;\n}\n\n\u002F* Base styles *\u002F\nhtml {\n  color-scheme: dark;\n}\n\nbody {\n  @apply bg-neutral-bg1 text-text-primary font-sans antialiased;\n  min-height: 100vh;\n}\n\n\u002F* Focus styles *\u002F\n*:focus-visible {\n  @apply outline-none ring-2 ring-brand ring-offset-2 ring-offset-neutral-bg1;\n}\n\n\u002F* Scrollbar styling *\u002F\n::-webkit-scrollbar {\n  width: 8px;\n  height: 8px;\n}\n\n::-webkit-scrollbar-track {\n  @apply bg-neutral-bg2;\n}\n\n::-webkit-scrollbar-thumb {\n  @apply bg-neutral-bg5 rounded-full;\n}\n\n::-webkit-scrollbar-thumb:hover {\n  @apply bg-neutral-bg6;\n}\n\n\u002F* Glass utility classes *\u002F\n@layer components {\n  .glass {\n    @apply backdrop-blur-md bg-white\u002F5 border border-white\u002F10;\n  }\n\n  .glass-card {\n    @apply backdrop-blur-md bg-white\u002F5 border border-white\u002F10 rounded-xl;\n  }\n\n  .glass-panel {\n    @apply backdrop-blur-lg bg-black\u002F40 border border-white\u002F5;\n  }\n\n  .glass-overlay {\n    @apply backdrop-blur-sm bg-black\u002F60;\n  }\n\n  .glass-input {\n    @apply backdrop-blur-sm bg-white\u002F5 border border-white\u002F10 focus:border-brand focus:bg-white\u002F10;\n  }\n}\n\n\u002F* Animation utilities *\u002F\n@layer utilities {\n  .animate-in {\n    animation: fadeIn 0.3s ease-out, slideUp 0.3s ease-out;\n  }\n}\n```\n\n### src\u002Fmain.tsx\n\n```tsx\nimport React from 'react';\nimport ReactDOM from 'react-dom\u002Fclient';\nimport { BrowserRouter } from 'react-router-dom';\nimport App from '.\u002FApp';\nimport '.\u002Fstyles\u002Fglobals.css';\n\nReactDOM.createRoot(document.getElementById('root')!).render(\n  \u003CReact.StrictMode>\n    \u003CBrowserRouter>\n      \u003CApp \u002F>\n    \u003C\u002FBrowserRouter>\n  \u003C\u002FReact.StrictMode>\n);\n```\n\n### src\u002FApp.tsx\n\n```tsx\nimport { Routes, Route } from 'react-router-dom';\nimport { AnimatePresence } from 'framer-motion';\nimport { AppShell } from '.\u002Fcomponents\u002Flayout\u002FAppShell';\nimport { Dashboard } from '.\u002Fpages\u002FDashboard';\nimport { Settings } from '.\u002Fpages\u002FSettings';\n\nexport default function App() {\n  return (\n    \u003CAppShell>\n      \u003CAnimatePresence mode=\"wait\">\n        \u003CRoutes>\n          \u003CRoute path=\"\u002F\" element={\u003CDashboard \u002F>} \u002F>\n          \u003CRoute path=\"\u002Fsettings\" element={\u003CSettings \u002F>} \u002F>\n        \u003C\u002FRoutes>\n      \u003C\u002FAnimatePresence>\n    \u003C\u002FAppShell>\n  );\n}\n```\n\n## Animation Patterns\n\n### Framer Motion Variants\n\n```tsx\n\u002F\u002F Fade in on mount\nexport const fadeIn = {\n  initial: { opacity: 0 },\n  animate: { opacity: 1 },\n  exit: { opacity: 0 },\n  transition: { duration: 0.2 },\n};\n\n\u002F\u002F Slide up on mount\nexport const slideUp = {\n  initial: { opacity: 0, y: 20 },\n  animate: { opacity: 1, y: 0 },\n  exit: { opacity: 0, y: 20 },\n  transition: { duration: 0.3, ease: 'easeOut' },\n};\n\n\u002F\u002F Scale on hover (for buttons\u002Fcards)\nexport const scaleOnHover = {\n  whileHover: { scale: 1.02 },\n  whileTap: { scale: 0.98 },\n  transition: { type: 'spring', stiffness: 400, damping: 17 },\n};\n\n\u002F\u002F Stagger children\nexport const staggerContainer = {\n  hidden: { opacity: 0 },\n  visible: {\n    opacity: 1,\n    transition: {\n      staggerChildren: 0.05,\n      delayChildren: 0.1,\n    },\n  },\n};\n\nexport const staggerItem = {\n  hidden: { opacity: 0, y: 10 },\n  visible: {\n    opacity: 1,\n    y: 0,\n    transition: { duration: 0.2, ease: 'easeOut' },\n  },\n};\n```\n\n### Page Transition Wrapper\n\n```tsx\nimport { motion } from 'framer-motion';\nimport { ReactNode } from 'react';\n\ninterface PageTransitionProps {\n  children: ReactNode;\n}\n\nexport function PageTransition({ children }: PageTransitionProps) {\n  return (\n    \u003Cmotion.div\n      initial={{ opacity: 0, y: 20 }}\n      animate={{ opacity: 1, y: 0 }}\n      exit={{ opacity: 0, y: -20 }}\n      transition={{ duration: 0.3, ease: 'easeOut' }}\n    >\n      {children}\n    \u003C\u002Fmotion.div>\n  );\n}\n```\n\n## Glass Effect Patterns\n\n### Glass Card\n\n```tsx\n\u003Cdiv className=\"glass-card p-6\">\n  \u003Ch2 className=\"text-lg font-semibold text-text-primary\">Card Title\u003C\u002Fh2>\n  \u003Cp className=\"text-text-secondary mt-2\">Card content goes here.\u003C\u002Fp>\n\u003C\u002Fdiv>\n```\n\n### Glass Panel (Sidebar)\n\n```tsx\n\u003Caside className=\"glass-panel w-64 h-screen p-4\">\n  \u003Cnav className=\"space-y-2\">\n    {\u002F* Navigation items *\u002F}\n  \u003C\u002Fnav>\n\u003C\u002Faside>\n```\n\n### Glass Modal Overlay\n\n```tsx\n\u003Cmotion.div\n  className=\"fixed inset-0 glass-overlay flex items-center justify-center z-50\"\n  initial={{ opacity: 0 }}\n  animate={{ opacity: 1 }}\n  exit={{ opacity: 0 }}\n>\n  \u003Cmotion.div\n    className=\"glass-card p-6 max-w-md w-full mx-4\"\n    initial={{ scale: 0.95, opacity: 0 }}\n    animate={{ scale: 1, opacity: 1 }}\n    exit={{ scale: 0.95, opacity: 0 }}\n  >\n    {\u002F* Modal content *\u002F}\n  \u003C\u002Fmotion.div>\n\u003C\u002Fmotion.div>\n```\n\n## Typography\n\n| Element | Classes |\n|---------|---------|\n| Page title | `text-2xl font-semibold text-text-primary` |\n| Section title | `text-lg font-semibold text-text-primary` |\n| Card title | `text-base font-medium text-text-primary` |\n| Body text | `text-sm text-text-secondary` |\n| Caption | `text-xs text-text-muted` |\n| Label | `text-sm font-medium text-text-secondary` |\n\n## Color Usage\n\n| Use Case | Color | Class |\n|----------|-------|-------|\n| Primary action | Brand purple | `bg-brand text-white` |\n| Primary hover | Brand hover | `hover:bg-brand-hover` |\n| Page background | Neutral bg1 | `bg-neutral-bg1` |\n| Card background | Neutral bg2 | `bg-neutral-bg2` |\n| Elevated surface | Neutral bg3 | `bg-neutral-bg3` |\n| Input background | Neutral bg2 | `bg-neutral-bg2` |\n| Input focus | Neutral bg3 | `focus:bg-neutral-bg3` |\n| Border default | Border default | `border-border` |\n| Border subtle | Border subtle | `border-border-subtle` |\n| Success | Status success | `text-status-success` |\n| Warning | Status warning | `text-status-warning` |\n| Error | Status error | `text-status-error` |\n\n## Related Files\n\n- [Design Tokens](.\u002Freferences\u002Fdesign-tokens.md) — Complete color system, spacing, typography scales\n- [Components](.\u002Freferences\u002Fcomponents.md) — Button, Card, Input, Dialog, Tabs, and more\n- [Patterns](.\u002Freferences\u002Fpatterns.md) — Page layouts, navigation, lists, forms\n",{"data":44,"body":47},{"name":4,"description":6,"license":28,"metadata":45},{"author":9,"version":46},"1.0.0",{"type":48,"children":49},"root",[50,59,79,86,293,299,451,457,467,473,480,485,1827,1833,1838,2295,2301,4770,4776,4860,4866,7646,7652,7999,8005,8515,8521,8527,9526,9532,9995,10001,10006,10171,10177,10304,10310,10664,10670,10793,10799,11085,11091,11130],{"type":51,"tag":52,"props":53,"children":55},"element","h1",{"id":54},"frontend-ui-dark-theme-typescript",[56],{"type":57,"value":58},"text","Frontend UI Dark Theme (TypeScript)",{"type":51,"tag":60,"props":61,"children":62},"p",{},[63,65,70,72,77],{"type":57,"value":64},"A modern dark-themed React UI system using ",{"type":51,"tag":66,"props":67,"children":68},"strong",{},[69],{"type":57,"value":17},{"type":57,"value":71}," and ",{"type":51,"tag":66,"props":73,"children":74},{},[75],{"type":57,"value":76},"Framer Motion",{"type":57,"value":78},". Designed for dashboards, admin panels, and data-rich applications with glassmorphism effects and tasteful animations.",{"type":51,"tag":80,"props":81,"children":83},"h2",{"id":82},"stack",[84],{"type":57,"value":85},"Stack",{"type":51,"tag":87,"props":88,"children":89},"table",{},[90,114],{"type":51,"tag":91,"props":92,"children":93},"thead",{},[94],{"type":51,"tag":95,"props":96,"children":97},"tr",{},[98,104,109],{"type":51,"tag":99,"props":100,"children":101},"th",{},[102],{"type":57,"value":103},"Package",{"type":51,"tag":99,"props":105,"children":106},{},[107],{"type":57,"value":108},"Version",{"type":51,"tag":99,"props":110,"children":111},{},[112],{"type":57,"value":113},"Purpose",{"type":51,"tag":115,"props":116,"children":117},"tbody",{},[118,141,162,184,206,228,250,272],{"type":51,"tag":95,"props":119,"children":120},{},[121,131,136],{"type":51,"tag":122,"props":123,"children":124},"td",{},[125],{"type":51,"tag":126,"props":127,"children":129},"code",{"className":128},[],[130],{"type":57,"value":14},{"type":51,"tag":122,"props":132,"children":133},{},[134],{"type":57,"value":135},"^18.x",{"type":51,"tag":122,"props":137,"children":138},{},[139],{"type":57,"value":140},"UI framework",{"type":51,"tag":95,"props":142,"children":143},{},[144,153,157],{"type":51,"tag":122,"props":145,"children":146},{},[147],{"type":51,"tag":126,"props":148,"children":150},{"className":149},[],[151],{"type":57,"value":152},"react-dom",{"type":51,"tag":122,"props":154,"children":155},{},[156],{"type":57,"value":135},{"type":51,"tag":122,"props":158,"children":159},{},[160],{"type":57,"value":161},"DOM rendering",{"type":51,"tag":95,"props":163,"children":164},{},[165,174,179],{"type":51,"tag":122,"props":166,"children":167},{},[168],{"type":51,"tag":126,"props":169,"children":171},{"className":170},[],[172],{"type":57,"value":173},"react-router-dom",{"type":51,"tag":122,"props":175,"children":176},{},[177],{"type":57,"value":178},"^6.x",{"type":51,"tag":122,"props":180,"children":181},{},[182],{"type":57,"value":183},"Routing",{"type":51,"tag":95,"props":185,"children":186},{},[187,196,201],{"type":51,"tag":122,"props":188,"children":189},{},[190],{"type":51,"tag":126,"props":191,"children":193},{"className":192},[],[194],{"type":57,"value":195},"framer-motion",{"type":51,"tag":122,"props":197,"children":198},{},[199],{"type":57,"value":200},"^11.x",{"type":51,"tag":122,"props":202,"children":203},{},[204],{"type":57,"value":205},"Animations",{"type":51,"tag":95,"props":207,"children":208},{},[209,218,223],{"type":51,"tag":122,"props":210,"children":211},{},[212],{"type":51,"tag":126,"props":213,"children":215},{"className":214},[],[216],{"type":57,"value":217},"clsx",{"type":51,"tag":122,"props":219,"children":220},{},[221],{"type":57,"value":222},"^2.x",{"type":51,"tag":122,"props":224,"children":225},{},[226],{"type":57,"value":227},"Class merging",{"type":51,"tag":95,"props":229,"children":230},{},[231,240,245],{"type":51,"tag":122,"props":232,"children":233},{},[234],{"type":51,"tag":126,"props":235,"children":237},{"className":236},[],[238],{"type":57,"value":239},"tailwindcss",{"type":51,"tag":122,"props":241,"children":242},{},[243],{"type":57,"value":244},"^3.x",{"type":51,"tag":122,"props":246,"children":247},{},[248],{"type":57,"value":249},"Styling",{"type":51,"tag":95,"props":251,"children":252},{},[253,262,267],{"type":51,"tag":122,"props":254,"children":255},{},[256],{"type":51,"tag":126,"props":257,"children":259},{"className":258},[],[260],{"type":57,"value":261},"vite",{"type":51,"tag":122,"props":263,"children":264},{},[265],{"type":57,"value":266},"^5.x",{"type":51,"tag":122,"props":268,"children":269},{},[270],{"type":57,"value":271},"Build tool",{"type":51,"tag":95,"props":273,"children":274},{},[275,284,288],{"type":51,"tag":122,"props":276,"children":277},{},[278],{"type":51,"tag":126,"props":279,"children":281},{"className":280},[],[282],{"type":57,"value":283},"typescript",{"type":51,"tag":122,"props":285,"children":286},{},[287],{"type":57,"value":266},{"type":51,"tag":122,"props":289,"children":290},{},[291],{"type":57,"value":292},"Type safety",{"type":51,"tag":80,"props":294,"children":296},{"id":295},"quick-start",[297],{"type":57,"value":298},"Quick Start",{"type":51,"tag":300,"props":301,"children":306},"pre",{"className":302,"code":303,"language":304,"meta":305,"style":305},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm create vite@latest my-app -- --template react-ts\ncd my-app\nnpm install framer-motion clsx react-router-dom\nnpm install -D tailwindcss postcss autoprefixer\nnpx tailwindcss init -p\n","bash","",[307],{"type":51,"tag":126,"props":308,"children":309},{"__ignoreMap":305},[310,353,368,396,428],{"type":51,"tag":311,"props":312,"children":315},"span",{"class":313,"line":314},"line",1,[316,322,328,333,338,343,348],{"type":51,"tag":311,"props":317,"children":319},{"style":318},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[320],{"type":57,"value":321},"npm",{"type":51,"tag":311,"props":323,"children":325},{"style":324},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[326],{"type":57,"value":327}," create",{"type":51,"tag":311,"props":329,"children":330},{"style":324},[331],{"type":57,"value":332}," vite@latest",{"type":51,"tag":311,"props":334,"children":335},{"style":324},[336],{"type":57,"value":337}," my-app",{"type":51,"tag":311,"props":339,"children":340},{"style":324},[341],{"type":57,"value":342}," --",{"type":51,"tag":311,"props":344,"children":345},{"style":324},[346],{"type":57,"value":347}," --template",{"type":51,"tag":311,"props":349,"children":350},{"style":324},[351],{"type":57,"value":352}," react-ts\n",{"type":51,"tag":311,"props":354,"children":356},{"class":313,"line":355},2,[357,363],{"type":51,"tag":311,"props":358,"children":360},{"style":359},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[361],{"type":57,"value":362},"cd",{"type":51,"tag":311,"props":364,"children":365},{"style":324},[366],{"type":57,"value":367}," my-app\n",{"type":51,"tag":311,"props":369,"children":371},{"class":313,"line":370},3,[372,376,381,386,391],{"type":51,"tag":311,"props":373,"children":374},{"style":318},[375],{"type":57,"value":321},{"type":51,"tag":311,"props":377,"children":378},{"style":324},[379],{"type":57,"value":380}," install",{"type":51,"tag":311,"props":382,"children":383},{"style":324},[384],{"type":57,"value":385}," framer-motion",{"type":51,"tag":311,"props":387,"children":388},{"style":324},[389],{"type":57,"value":390}," clsx",{"type":51,"tag":311,"props":392,"children":393},{"style":324},[394],{"type":57,"value":395}," react-router-dom\n",{"type":51,"tag":311,"props":397,"children":399},{"class":313,"line":398},4,[400,404,408,413,418,423],{"type":51,"tag":311,"props":401,"children":402},{"style":318},[403],{"type":57,"value":321},{"type":51,"tag":311,"props":405,"children":406},{"style":324},[407],{"type":57,"value":380},{"type":51,"tag":311,"props":409,"children":410},{"style":324},[411],{"type":57,"value":412}," -D",{"type":51,"tag":311,"props":414,"children":415},{"style":324},[416],{"type":57,"value":417}," tailwindcss",{"type":51,"tag":311,"props":419,"children":420},{"style":324},[421],{"type":57,"value":422}," postcss",{"type":51,"tag":311,"props":424,"children":425},{"style":324},[426],{"type":57,"value":427}," autoprefixer\n",{"type":51,"tag":311,"props":429,"children":431},{"class":313,"line":430},5,[432,437,441,446],{"type":51,"tag":311,"props":433,"children":434},{"style":318},[435],{"type":57,"value":436},"npx",{"type":51,"tag":311,"props":438,"children":439},{"style":324},[440],{"type":57,"value":417},{"type":51,"tag":311,"props":442,"children":443},{"style":324},[444],{"type":57,"value":445}," init",{"type":51,"tag":311,"props":447,"children":448},{"style":324},[449],{"type":57,"value":450}," -p\n",{"type":51,"tag":80,"props":452,"children":454},{"id":453},"project-structure",[455],{"type":57,"value":456},"Project Structure",{"type":51,"tag":300,"props":458,"children":462},{"className":459,"code":461,"language":57},[460],"language-text","public\u002F\n├── favicon.ico                    # Classic favicon (32x32)\n├── favicon.svg                    # Modern SVG favicon\n├── apple-touch-icon.png           # iOS home screen (180x180)\n├── og-image.png                   # Social sharing image (1200x630)\n└── site.webmanifest               # PWA manifest\nsrc\u002F\n├── assets\u002F\n│   └── fonts\u002F\n│       ├── Segoe UI.ttf\n│       ├── Segoe UI Bold.ttf\n│       ├── Segoe UI Italic.ttf\n│       └── Segoe UI Bold Italic.ttf\n├── components\u002F\n│   ├── ui\u002F\n│   │   ├── Button.tsx\n│   │   ├── Card.tsx\n│   │   ├── Input.tsx\n│   │   ├── Badge.tsx\n│   │   ├── Dialog.tsx\n│   │   ├── Tabs.tsx\n│   │   └── index.ts\n│   └── layout\u002F\n│       ├── AppShell.tsx\n│       ├── Sidebar.tsx\n│       └── PageHeader.tsx\n├── styles\u002F\n│   └── globals.css\n├── App.tsx\n└── main.tsx\n",[463],{"type":51,"tag":126,"props":464,"children":465},{"__ignoreMap":305},[466],{"type":57,"value":461},{"type":51,"tag":80,"props":468,"children":470},{"id":469},"configuration",[471],{"type":57,"value":472},"Configuration",{"type":51,"tag":474,"props":475,"children":477},"h3",{"id":476},"indexhtml",[478],{"type":57,"value":479},"index.html",{"type":51,"tag":60,"props":481,"children":482},{},[483],{"type":57,"value":484},"The HTML entry point with mobile viewport, favicons, and social meta tags:",{"type":51,"tag":300,"props":486,"children":490},{"className":487,"code":488,"language":489,"meta":305,"style":305},"language-html shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003C!DOCTYPE html>\n\u003Chtml lang=\"en\">\n  \u003Chead>\n    \u003Cmeta charset=\"UTF-8\" \u002F>\n    \u003Cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, viewport-fit=cover\" \u002F>\n    \n    \u003C!-- Favicons -->\n    \u003Clink rel=\"icon\" href=\"\u002Ffavicon.ico\" sizes=\"32x32\" \u002F>\n    \u003Clink rel=\"icon\" href=\"\u002Ffavicon.svg\" type=\"image\u002Fsvg+xml\" \u002F>\n    \u003Clink rel=\"apple-touch-icon\" href=\"\u002Fapple-touch-icon.png\" \u002F>\n    \u003Clink rel=\"manifest\" href=\"\u002Fsite.webmanifest\" \u002F>\n    \n    \u003C!-- Theme color for mobile browser chrome -->\n    \u003Cmeta name=\"theme-color\" content=\"#18181B\" \u002F>\n    \n    \u003C!-- Open Graph -->\n    \u003Cmeta property=\"og:type\" content=\"website\" \u002F>\n    \u003Cmeta property=\"og:title\" content=\"App Name\" \u002F>\n    \u003Cmeta property=\"og:description\" content=\"App description\" \u002F>\n    \u003Cmeta property=\"og:image\" content=\"https:\u002F\u002Fexample.com\u002Fog-image.png\" \u002F>\n    \u003Cmeta property=\"og:url\" content=\"https:\u002F\u002Fexample.com\" \u002F>\n    \n    \u003C!-- Twitter Card -->\n    \u003Cmeta name=\"twitter:card\" content=\"summary_large_image\" \u002F>\n    \u003Cmeta name=\"twitter:title\" content=\"App Name\" \u002F>\n    \u003Cmeta name=\"twitter:description\" content=\"App description\" \u002F>\n    \u003Cmeta name=\"twitter:image\" content=\"https:\u002F\u002Fexample.com\u002Fog-image.png\" \u002F>\n    \n    \u003Ctitle>App Name\u003C\u002Ftitle>\n  \u003C\u002Fhead>\n  \u003Cbody>\n    \u003Cdiv id=\"root\">\u003C\u002Fdiv>\n    \u003Cscript type=\"module\" src=\"\u002Fsrc\u002Fmain.tsx\">\u003C\u002Fscript>\n  \u003C\u002Fbody>\n\u003C\u002Fhtml>\n","html",[491],{"type":51,"tag":126,"props":492,"children":493},{"__ignoreMap":305},[494,520,560,577,617,676,686,696,779,858,916,974,982,991,1049,1057,1066,1125,1183,1241,1299,1357,1365,1374,1432,1489,1546,1603,1611,1646,1663,1680,1727,1795,1811],{"type":51,"tag":311,"props":495,"children":496},{"class":313,"line":314},[497,503,509,515],{"type":51,"tag":311,"props":498,"children":500},{"style":499},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[501],{"type":57,"value":502},"\u003C!",{"type":51,"tag":311,"props":504,"children":506},{"style":505},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[507],{"type":57,"value":508},"DOCTYPE",{"type":51,"tag":311,"props":510,"children":512},{"style":511},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[513],{"type":57,"value":514}," html",{"type":51,"tag":311,"props":516,"children":517},{"style":499},[518],{"type":57,"value":519},">\n",{"type":51,"tag":311,"props":521,"children":522},{"class":313,"line":355},[523,528,532,537,542,547,552,556],{"type":51,"tag":311,"props":524,"children":525},{"style":499},[526],{"type":57,"value":527},"\u003C",{"type":51,"tag":311,"props":529,"children":530},{"style":505},[531],{"type":57,"value":489},{"type":51,"tag":311,"props":533,"children":534},{"style":511},[535],{"type":57,"value":536}," lang",{"type":51,"tag":311,"props":538,"children":539},{"style":499},[540],{"type":57,"value":541},"=",{"type":51,"tag":311,"props":543,"children":544},{"style":499},[545],{"type":57,"value":546},"\"",{"type":51,"tag":311,"props":548,"children":549},{"style":324},[550],{"type":57,"value":551},"en",{"type":51,"tag":311,"props":553,"children":554},{"style":499},[555],{"type":57,"value":546},{"type":51,"tag":311,"props":557,"children":558},{"style":499},[559],{"type":57,"value":519},{"type":51,"tag":311,"props":561,"children":562},{"class":313,"line":370},[563,568,573],{"type":51,"tag":311,"props":564,"children":565},{"style":499},[566],{"type":57,"value":567},"  \u003C",{"type":51,"tag":311,"props":569,"children":570},{"style":505},[571],{"type":57,"value":572},"head",{"type":51,"tag":311,"props":574,"children":575},{"style":499},[576],{"type":57,"value":519},{"type":51,"tag":311,"props":578,"children":579},{"class":313,"line":398},[580,585,590,595,599,603,608,612],{"type":51,"tag":311,"props":581,"children":582},{"style":499},[583],{"type":57,"value":584},"    \u003C",{"type":51,"tag":311,"props":586,"children":587},{"style":505},[588],{"type":57,"value":589},"meta",{"type":51,"tag":311,"props":591,"children":592},{"style":511},[593],{"type":57,"value":594}," charset",{"type":51,"tag":311,"props":596,"children":597},{"style":499},[598],{"type":57,"value":541},{"type":51,"tag":311,"props":600,"children":601},{"style":499},[602],{"type":57,"value":546},{"type":51,"tag":311,"props":604,"children":605},{"style":324},[606],{"type":57,"value":607},"UTF-8",{"type":51,"tag":311,"props":609,"children":610},{"style":499},[611],{"type":57,"value":546},{"type":51,"tag":311,"props":613,"children":614},{"style":499},[615],{"type":57,"value":616}," \u002F>\n",{"type":51,"tag":311,"props":618,"children":619},{"class":313,"line":430},[620,624,628,633,637,641,646,650,655,659,663,668,672],{"type":51,"tag":311,"props":621,"children":622},{"style":499},[623],{"type":57,"value":584},{"type":51,"tag":311,"props":625,"children":626},{"style":505},[627],{"type":57,"value":589},{"type":51,"tag":311,"props":629,"children":630},{"style":511},[631],{"type":57,"value":632}," name",{"type":51,"tag":311,"props":634,"children":635},{"style":499},[636],{"type":57,"value":541},{"type":51,"tag":311,"props":638,"children":639},{"style":499},[640],{"type":57,"value":546},{"type":51,"tag":311,"props":642,"children":643},{"style":324},[644],{"type":57,"value":645},"viewport",{"type":51,"tag":311,"props":647,"children":648},{"style":499},[649],{"type":57,"value":546},{"type":51,"tag":311,"props":651,"children":652},{"style":511},[653],{"type":57,"value":654}," content",{"type":51,"tag":311,"props":656,"children":657},{"style":499},[658],{"type":57,"value":541},{"type":51,"tag":311,"props":660,"children":661},{"style":499},[662],{"type":57,"value":546},{"type":51,"tag":311,"props":664,"children":665},{"style":324},[666],{"type":57,"value":667},"width=device-width, initial-scale=1.0, viewport-fit=cover",{"type":51,"tag":311,"props":669,"children":670},{"style":499},[671],{"type":57,"value":546},{"type":51,"tag":311,"props":673,"children":674},{"style":499},[675],{"type":57,"value":616},{"type":51,"tag":311,"props":677,"children":679},{"class":313,"line":678},6,[680],{"type":51,"tag":311,"props":681,"children":683},{"style":682},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[684],{"type":57,"value":685},"    \n",{"type":51,"tag":311,"props":687,"children":689},{"class":313,"line":688},7,[690],{"type":51,"tag":311,"props":691,"children":693},{"style":692},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[694],{"type":57,"value":695},"    \u003C!-- Favicons -->\n",{"type":51,"tag":311,"props":697,"children":699},{"class":313,"line":698},8,[700,704,709,714,718,722,727,731,736,740,744,749,753,758,762,766,771,775],{"type":51,"tag":311,"props":701,"children":702},{"style":499},[703],{"type":57,"value":584},{"type":51,"tag":311,"props":705,"children":706},{"style":505},[707],{"type":57,"value":708},"link",{"type":51,"tag":311,"props":710,"children":711},{"style":511},[712],{"type":57,"value":713}," rel",{"type":51,"tag":311,"props":715,"children":716},{"style":499},[717],{"type":57,"value":541},{"type":51,"tag":311,"props":719,"children":720},{"style":499},[721],{"type":57,"value":546},{"type":51,"tag":311,"props":723,"children":724},{"style":324},[725],{"type":57,"value":726},"icon",{"type":51,"tag":311,"props":728,"children":729},{"style":499},[730],{"type":57,"value":546},{"type":51,"tag":311,"props":732,"children":733},{"style":511},[734],{"type":57,"value":735}," href",{"type":51,"tag":311,"props":737,"children":738},{"style":499},[739],{"type":57,"value":541},{"type":51,"tag":311,"props":741,"children":742},{"style":499},[743],{"type":57,"value":546},{"type":51,"tag":311,"props":745,"children":746},{"style":324},[747],{"type":57,"value":748},"\u002Ffavicon.ico",{"type":51,"tag":311,"props":750,"children":751},{"style":499},[752],{"type":57,"value":546},{"type":51,"tag":311,"props":754,"children":755},{"style":511},[756],{"type":57,"value":757}," sizes",{"type":51,"tag":311,"props":759,"children":760},{"style":499},[761],{"type":57,"value":541},{"type":51,"tag":311,"props":763,"children":764},{"style":499},[765],{"type":57,"value":546},{"type":51,"tag":311,"props":767,"children":768},{"style":324},[769],{"type":57,"value":770},"32x32",{"type":51,"tag":311,"props":772,"children":773},{"style":499},[774],{"type":57,"value":546},{"type":51,"tag":311,"props":776,"children":777},{"style":499},[778],{"type":57,"value":616},{"type":51,"tag":311,"props":780,"children":782},{"class":313,"line":781},9,[783,787,791,795,799,803,807,811,815,819,823,828,832,837,841,845,850,854],{"type":51,"tag":311,"props":784,"children":785},{"style":499},[786],{"type":57,"value":584},{"type":51,"tag":311,"props":788,"children":789},{"style":505},[790],{"type":57,"value":708},{"type":51,"tag":311,"props":792,"children":793},{"style":511},[794],{"type":57,"value":713},{"type":51,"tag":311,"props":796,"children":797},{"style":499},[798],{"type":57,"value":541},{"type":51,"tag":311,"props":800,"children":801},{"style":499},[802],{"type":57,"value":546},{"type":51,"tag":311,"props":804,"children":805},{"style":324},[806],{"type":57,"value":726},{"type":51,"tag":311,"props":808,"children":809},{"style":499},[810],{"type":57,"value":546},{"type":51,"tag":311,"props":812,"children":813},{"style":511},[814],{"type":57,"value":735},{"type":51,"tag":311,"props":816,"children":817},{"style":499},[818],{"type":57,"value":541},{"type":51,"tag":311,"props":820,"children":821},{"style":499},[822],{"type":57,"value":546},{"type":51,"tag":311,"props":824,"children":825},{"style":324},[826],{"type":57,"value":827},"\u002Ffavicon.svg",{"type":51,"tag":311,"props":829,"children":830},{"style":499},[831],{"type":57,"value":546},{"type":51,"tag":311,"props":833,"children":834},{"style":511},[835],{"type":57,"value":836}," type",{"type":51,"tag":311,"props":838,"children":839},{"style":499},[840],{"type":57,"value":541},{"type":51,"tag":311,"props":842,"children":843},{"style":499},[844],{"type":57,"value":546},{"type":51,"tag":311,"props":846,"children":847},{"style":324},[848],{"type":57,"value":849},"image\u002Fsvg+xml",{"type":51,"tag":311,"props":851,"children":852},{"style":499},[853],{"type":57,"value":546},{"type":51,"tag":311,"props":855,"children":856},{"style":499},[857],{"type":57,"value":616},{"type":51,"tag":311,"props":859,"children":861},{"class":313,"line":860},10,[862,866,870,874,878,882,887,891,895,899,903,908,912],{"type":51,"tag":311,"props":863,"children":864},{"style":499},[865],{"type":57,"value":584},{"type":51,"tag":311,"props":867,"children":868},{"style":505},[869],{"type":57,"value":708},{"type":51,"tag":311,"props":871,"children":872},{"style":511},[873],{"type":57,"value":713},{"type":51,"tag":311,"props":875,"children":876},{"style":499},[877],{"type":57,"value":541},{"type":51,"tag":311,"props":879,"children":880},{"style":499},[881],{"type":57,"value":546},{"type":51,"tag":311,"props":883,"children":884},{"style":324},[885],{"type":57,"value":886},"apple-touch-icon",{"type":51,"tag":311,"props":888,"children":889},{"style":499},[890],{"type":57,"value":546},{"type":51,"tag":311,"props":892,"children":893},{"style":511},[894],{"type":57,"value":735},{"type":51,"tag":311,"props":896,"children":897},{"style":499},[898],{"type":57,"value":541},{"type":51,"tag":311,"props":900,"children":901},{"style":499},[902],{"type":57,"value":546},{"type":51,"tag":311,"props":904,"children":905},{"style":324},[906],{"type":57,"value":907},"\u002Fapple-touch-icon.png",{"type":51,"tag":311,"props":909,"children":910},{"style":499},[911],{"type":57,"value":546},{"type":51,"tag":311,"props":913,"children":914},{"style":499},[915],{"type":57,"value":616},{"type":51,"tag":311,"props":917,"children":919},{"class":313,"line":918},11,[920,924,928,932,936,940,945,949,953,957,961,966,970],{"type":51,"tag":311,"props":921,"children":922},{"style":499},[923],{"type":57,"value":584},{"type":51,"tag":311,"props":925,"children":926},{"style":505},[927],{"type":57,"value":708},{"type":51,"tag":311,"props":929,"children":930},{"style":511},[931],{"type":57,"value":713},{"type":51,"tag":311,"props":933,"children":934},{"style":499},[935],{"type":57,"value":541},{"type":51,"tag":311,"props":937,"children":938},{"style":499},[939],{"type":57,"value":546},{"type":51,"tag":311,"props":941,"children":942},{"style":324},[943],{"type":57,"value":944},"manifest",{"type":51,"tag":311,"props":946,"children":947},{"style":499},[948],{"type":57,"value":546},{"type":51,"tag":311,"props":950,"children":951},{"style":511},[952],{"type":57,"value":735},{"type":51,"tag":311,"props":954,"children":955},{"style":499},[956],{"type":57,"value":541},{"type":51,"tag":311,"props":958,"children":959},{"style":499},[960],{"type":57,"value":546},{"type":51,"tag":311,"props":962,"children":963},{"style":324},[964],{"type":57,"value":965},"\u002Fsite.webmanifest",{"type":51,"tag":311,"props":967,"children":968},{"style":499},[969],{"type":57,"value":546},{"type":51,"tag":311,"props":971,"children":972},{"style":499},[973],{"type":57,"value":616},{"type":51,"tag":311,"props":975,"children":977},{"class":313,"line":976},12,[978],{"type":51,"tag":311,"props":979,"children":980},{"style":682},[981],{"type":57,"value":685},{"type":51,"tag":311,"props":983,"children":985},{"class":313,"line":984},13,[986],{"type":51,"tag":311,"props":987,"children":988},{"style":692},[989],{"type":57,"value":990},"    \u003C!-- Theme color for mobile browser chrome -->\n",{"type":51,"tag":311,"props":992,"children":994},{"class":313,"line":993},14,[995,999,1003,1007,1011,1015,1020,1024,1028,1032,1036,1041,1045],{"type":51,"tag":311,"props":996,"children":997},{"style":499},[998],{"type":57,"value":584},{"type":51,"tag":311,"props":1000,"children":1001},{"style":505},[1002],{"type":57,"value":589},{"type":51,"tag":311,"props":1004,"children":1005},{"style":511},[1006],{"type":57,"value":632},{"type":51,"tag":311,"props":1008,"children":1009},{"style":499},[1010],{"type":57,"value":541},{"type":51,"tag":311,"props":1012,"children":1013},{"style":499},[1014],{"type":57,"value":546},{"type":51,"tag":311,"props":1016,"children":1017},{"style":324},[1018],{"type":57,"value":1019},"theme-color",{"type":51,"tag":311,"props":1021,"children":1022},{"style":499},[1023],{"type":57,"value":546},{"type":51,"tag":311,"props":1025,"children":1026},{"style":511},[1027],{"type":57,"value":654},{"type":51,"tag":311,"props":1029,"children":1030},{"style":499},[1031],{"type":57,"value":541},{"type":51,"tag":311,"props":1033,"children":1034},{"style":499},[1035],{"type":57,"value":546},{"type":51,"tag":311,"props":1037,"children":1038},{"style":324},[1039],{"type":57,"value":1040},"#18181B",{"type":51,"tag":311,"props":1042,"children":1043},{"style":499},[1044],{"type":57,"value":546},{"type":51,"tag":311,"props":1046,"children":1047},{"style":499},[1048],{"type":57,"value":616},{"type":51,"tag":311,"props":1050,"children":1052},{"class":313,"line":1051},15,[1053],{"type":51,"tag":311,"props":1054,"children":1055},{"style":682},[1056],{"type":57,"value":685},{"type":51,"tag":311,"props":1058,"children":1060},{"class":313,"line":1059},16,[1061],{"type":51,"tag":311,"props":1062,"children":1063},{"style":692},[1064],{"type":57,"value":1065},"    \u003C!-- Open Graph -->\n",{"type":51,"tag":311,"props":1067,"children":1069},{"class":313,"line":1068},17,[1070,1074,1078,1083,1087,1091,1096,1100,1104,1108,1112,1117,1121],{"type":51,"tag":311,"props":1071,"children":1072},{"style":499},[1073],{"type":57,"value":584},{"type":51,"tag":311,"props":1075,"children":1076},{"style":505},[1077],{"type":57,"value":589},{"type":51,"tag":311,"props":1079,"children":1080},{"style":511},[1081],{"type":57,"value":1082}," property",{"type":51,"tag":311,"props":1084,"children":1085},{"style":499},[1086],{"type":57,"value":541},{"type":51,"tag":311,"props":1088,"children":1089},{"style":499},[1090],{"type":57,"value":546},{"type":51,"tag":311,"props":1092,"children":1093},{"style":324},[1094],{"type":57,"value":1095},"og:type",{"type":51,"tag":311,"props":1097,"children":1098},{"style":499},[1099],{"type":57,"value":546},{"type":51,"tag":311,"props":1101,"children":1102},{"style":511},[1103],{"type":57,"value":654},{"type":51,"tag":311,"props":1105,"children":1106},{"style":499},[1107],{"type":57,"value":541},{"type":51,"tag":311,"props":1109,"children":1110},{"style":499},[1111],{"type":57,"value":546},{"type":51,"tag":311,"props":1113,"children":1114},{"style":324},[1115],{"type":57,"value":1116},"website",{"type":51,"tag":311,"props":1118,"children":1119},{"style":499},[1120],{"type":57,"value":546},{"type":51,"tag":311,"props":1122,"children":1123},{"style":499},[1124],{"type":57,"value":616},{"type":51,"tag":311,"props":1126,"children":1128},{"class":313,"line":1127},18,[1129,1133,1137,1141,1145,1149,1154,1158,1162,1166,1170,1175,1179],{"type":51,"tag":311,"props":1130,"children":1131},{"style":499},[1132],{"type":57,"value":584},{"type":51,"tag":311,"props":1134,"children":1135},{"style":505},[1136],{"type":57,"value":589},{"type":51,"tag":311,"props":1138,"children":1139},{"style":511},[1140],{"type":57,"value":1082},{"type":51,"tag":311,"props":1142,"children":1143},{"style":499},[1144],{"type":57,"value":541},{"type":51,"tag":311,"props":1146,"children":1147},{"style":499},[1148],{"type":57,"value":546},{"type":51,"tag":311,"props":1150,"children":1151},{"style":324},[1152],{"type":57,"value":1153},"og:title",{"type":51,"tag":311,"props":1155,"children":1156},{"style":499},[1157],{"type":57,"value":546},{"type":51,"tag":311,"props":1159,"children":1160},{"style":511},[1161],{"type":57,"value":654},{"type":51,"tag":311,"props":1163,"children":1164},{"style":499},[1165],{"type":57,"value":541},{"type":51,"tag":311,"props":1167,"children":1168},{"style":499},[1169],{"type":57,"value":546},{"type":51,"tag":311,"props":1171,"children":1172},{"style":324},[1173],{"type":57,"value":1174},"App Name",{"type":51,"tag":311,"props":1176,"children":1177},{"style":499},[1178],{"type":57,"value":546},{"type":51,"tag":311,"props":1180,"children":1181},{"style":499},[1182],{"type":57,"value":616},{"type":51,"tag":311,"props":1184,"children":1186},{"class":313,"line":1185},19,[1187,1191,1195,1199,1203,1207,1212,1216,1220,1224,1228,1233,1237],{"type":51,"tag":311,"props":1188,"children":1189},{"style":499},[1190],{"type":57,"value":584},{"type":51,"tag":311,"props":1192,"children":1193},{"style":505},[1194],{"type":57,"value":589},{"type":51,"tag":311,"props":1196,"children":1197},{"style":511},[1198],{"type":57,"value":1082},{"type":51,"tag":311,"props":1200,"children":1201},{"style":499},[1202],{"type":57,"value":541},{"type":51,"tag":311,"props":1204,"children":1205},{"style":499},[1206],{"type":57,"value":546},{"type":51,"tag":311,"props":1208,"children":1209},{"style":324},[1210],{"type":57,"value":1211},"og:description",{"type":51,"tag":311,"props":1213,"children":1214},{"style":499},[1215],{"type":57,"value":546},{"type":51,"tag":311,"props":1217,"children":1218},{"style":511},[1219],{"type":57,"value":654},{"type":51,"tag":311,"props":1221,"children":1222},{"style":499},[1223],{"type":57,"value":541},{"type":51,"tag":311,"props":1225,"children":1226},{"style":499},[1227],{"type":57,"value":546},{"type":51,"tag":311,"props":1229,"children":1230},{"style":324},[1231],{"type":57,"value":1232},"App description",{"type":51,"tag":311,"props":1234,"children":1235},{"style":499},[1236],{"type":57,"value":546},{"type":51,"tag":311,"props":1238,"children":1239},{"style":499},[1240],{"type":57,"value":616},{"type":51,"tag":311,"props":1242,"children":1244},{"class":313,"line":1243},20,[1245,1249,1253,1257,1261,1265,1270,1274,1278,1282,1286,1291,1295],{"type":51,"tag":311,"props":1246,"children":1247},{"style":499},[1248],{"type":57,"value":584},{"type":51,"tag":311,"props":1250,"children":1251},{"style":505},[1252],{"type":57,"value":589},{"type":51,"tag":311,"props":1254,"children":1255},{"style":511},[1256],{"type":57,"value":1082},{"type":51,"tag":311,"props":1258,"children":1259},{"style":499},[1260],{"type":57,"value":541},{"type":51,"tag":311,"props":1262,"children":1263},{"style":499},[1264],{"type":57,"value":546},{"type":51,"tag":311,"props":1266,"children":1267},{"style":324},[1268],{"type":57,"value":1269},"og:image",{"type":51,"tag":311,"props":1271,"children":1272},{"style":499},[1273],{"type":57,"value":546},{"type":51,"tag":311,"props":1275,"children":1276},{"style":511},[1277],{"type":57,"value":654},{"type":51,"tag":311,"props":1279,"children":1280},{"style":499},[1281],{"type":57,"value":541},{"type":51,"tag":311,"props":1283,"children":1284},{"style":499},[1285],{"type":57,"value":546},{"type":51,"tag":311,"props":1287,"children":1288},{"style":324},[1289],{"type":57,"value":1290},"https:\u002F\u002Fexample.com\u002Fog-image.png",{"type":51,"tag":311,"props":1292,"children":1293},{"style":499},[1294],{"type":57,"value":546},{"type":51,"tag":311,"props":1296,"children":1297},{"style":499},[1298],{"type":57,"value":616},{"type":51,"tag":311,"props":1300,"children":1302},{"class":313,"line":1301},21,[1303,1307,1311,1315,1319,1323,1328,1332,1336,1340,1344,1349,1353],{"type":51,"tag":311,"props":1304,"children":1305},{"style":499},[1306],{"type":57,"value":584},{"type":51,"tag":311,"props":1308,"children":1309},{"style":505},[1310],{"type":57,"value":589},{"type":51,"tag":311,"props":1312,"children":1313},{"style":511},[1314],{"type":57,"value":1082},{"type":51,"tag":311,"props":1316,"children":1317},{"style":499},[1318],{"type":57,"value":541},{"type":51,"tag":311,"props":1320,"children":1321},{"style":499},[1322],{"type":57,"value":546},{"type":51,"tag":311,"props":1324,"children":1325},{"style":324},[1326],{"type":57,"value":1327},"og:url",{"type":51,"tag":311,"props":1329,"children":1330},{"style":499},[1331],{"type":57,"value":546},{"type":51,"tag":311,"props":1333,"children":1334},{"style":511},[1335],{"type":57,"value":654},{"type":51,"tag":311,"props":1337,"children":1338},{"style":499},[1339],{"type":57,"value":541},{"type":51,"tag":311,"props":1341,"children":1342},{"style":499},[1343],{"type":57,"value":546},{"type":51,"tag":311,"props":1345,"children":1346},{"style":324},[1347],{"type":57,"value":1348},"https:\u002F\u002Fexample.com",{"type":51,"tag":311,"props":1350,"children":1351},{"style":499},[1352],{"type":57,"value":546},{"type":51,"tag":311,"props":1354,"children":1355},{"style":499},[1356],{"type":57,"value":616},{"type":51,"tag":311,"props":1358,"children":1360},{"class":313,"line":1359},22,[1361],{"type":51,"tag":311,"props":1362,"children":1363},{"style":682},[1364],{"type":57,"value":685},{"type":51,"tag":311,"props":1366,"children":1368},{"class":313,"line":1367},23,[1369],{"type":51,"tag":311,"props":1370,"children":1371},{"style":692},[1372],{"type":57,"value":1373},"    \u003C!-- Twitter Card -->\n",{"type":51,"tag":311,"props":1375,"children":1377},{"class":313,"line":1376},24,[1378,1382,1386,1390,1394,1398,1403,1407,1411,1415,1419,1424,1428],{"type":51,"tag":311,"props":1379,"children":1380},{"style":499},[1381],{"type":57,"value":584},{"type":51,"tag":311,"props":1383,"children":1384},{"style":505},[1385],{"type":57,"value":589},{"type":51,"tag":311,"props":1387,"children":1388},{"style":511},[1389],{"type":57,"value":632},{"type":51,"tag":311,"props":1391,"children":1392},{"style":499},[1393],{"type":57,"value":541},{"type":51,"tag":311,"props":1395,"children":1396},{"style":499},[1397],{"type":57,"value":546},{"type":51,"tag":311,"props":1399,"children":1400},{"style":324},[1401],{"type":57,"value":1402},"twitter:card",{"type":51,"tag":311,"props":1404,"children":1405},{"style":499},[1406],{"type":57,"value":546},{"type":51,"tag":311,"props":1408,"children":1409},{"style":511},[1410],{"type":57,"value":654},{"type":51,"tag":311,"props":1412,"children":1413},{"style":499},[1414],{"type":57,"value":541},{"type":51,"tag":311,"props":1416,"children":1417},{"style":499},[1418],{"type":57,"value":546},{"type":51,"tag":311,"props":1420,"children":1421},{"style":324},[1422],{"type":57,"value":1423},"summary_large_image",{"type":51,"tag":311,"props":1425,"children":1426},{"style":499},[1427],{"type":57,"value":546},{"type":51,"tag":311,"props":1429,"children":1430},{"style":499},[1431],{"type":57,"value":616},{"type":51,"tag":311,"props":1433,"children":1435},{"class":313,"line":1434},25,[1436,1440,1444,1448,1452,1456,1461,1465,1469,1473,1477,1481,1485],{"type":51,"tag":311,"props":1437,"children":1438},{"style":499},[1439],{"type":57,"value":584},{"type":51,"tag":311,"props":1441,"children":1442},{"style":505},[1443],{"type":57,"value":589},{"type":51,"tag":311,"props":1445,"children":1446},{"style":511},[1447],{"type":57,"value":632},{"type":51,"tag":311,"props":1449,"children":1450},{"style":499},[1451],{"type":57,"value":541},{"type":51,"tag":311,"props":1453,"children":1454},{"style":499},[1455],{"type":57,"value":546},{"type":51,"tag":311,"props":1457,"children":1458},{"style":324},[1459],{"type":57,"value":1460},"twitter:title",{"type":51,"tag":311,"props":1462,"children":1463},{"style":499},[1464],{"type":57,"value":546},{"type":51,"tag":311,"props":1466,"children":1467},{"style":511},[1468],{"type":57,"value":654},{"type":51,"tag":311,"props":1470,"children":1471},{"style":499},[1472],{"type":57,"value":541},{"type":51,"tag":311,"props":1474,"children":1475},{"style":499},[1476],{"type":57,"value":546},{"type":51,"tag":311,"props":1478,"children":1479},{"style":324},[1480],{"type":57,"value":1174},{"type":51,"tag":311,"props":1482,"children":1483},{"style":499},[1484],{"type":57,"value":546},{"type":51,"tag":311,"props":1486,"children":1487},{"style":499},[1488],{"type":57,"value":616},{"type":51,"tag":311,"props":1490,"children":1492},{"class":313,"line":1491},26,[1493,1497,1501,1505,1509,1513,1518,1522,1526,1530,1534,1538,1542],{"type":51,"tag":311,"props":1494,"children":1495},{"style":499},[1496],{"type":57,"value":584},{"type":51,"tag":311,"props":1498,"children":1499},{"style":505},[1500],{"type":57,"value":589},{"type":51,"tag":311,"props":1502,"children":1503},{"style":511},[1504],{"type":57,"value":632},{"type":51,"tag":311,"props":1506,"children":1507},{"style":499},[1508],{"type":57,"value":541},{"type":51,"tag":311,"props":1510,"children":1511},{"style":499},[1512],{"type":57,"value":546},{"type":51,"tag":311,"props":1514,"children":1515},{"style":324},[1516],{"type":57,"value":1517},"twitter:description",{"type":51,"tag":311,"props":1519,"children":1520},{"style":499},[1521],{"type":57,"value":546},{"type":51,"tag":311,"props":1523,"children":1524},{"style":511},[1525],{"type":57,"value":654},{"type":51,"tag":311,"props":1527,"children":1528},{"style":499},[1529],{"type":57,"value":541},{"type":51,"tag":311,"props":1531,"children":1532},{"style":499},[1533],{"type":57,"value":546},{"type":51,"tag":311,"props":1535,"children":1536},{"style":324},[1537],{"type":57,"value":1232},{"type":51,"tag":311,"props":1539,"children":1540},{"style":499},[1541],{"type":57,"value":546},{"type":51,"tag":311,"props":1543,"children":1544},{"style":499},[1545],{"type":57,"value":616},{"type":51,"tag":311,"props":1547,"children":1549},{"class":313,"line":1548},27,[1550,1554,1558,1562,1566,1570,1575,1579,1583,1587,1591,1595,1599],{"type":51,"tag":311,"props":1551,"children":1552},{"style":499},[1553],{"type":57,"value":584},{"type":51,"tag":311,"props":1555,"children":1556},{"style":505},[1557],{"type":57,"value":589},{"type":51,"tag":311,"props":1559,"children":1560},{"style":511},[1561],{"type":57,"value":632},{"type":51,"tag":311,"props":1563,"children":1564},{"style":499},[1565],{"type":57,"value":541},{"type":51,"tag":311,"props":1567,"children":1568},{"style":499},[1569],{"type":57,"value":546},{"type":51,"tag":311,"props":1571,"children":1572},{"style":324},[1573],{"type":57,"value":1574},"twitter:image",{"type":51,"tag":311,"props":1576,"children":1577},{"style":499},[1578],{"type":57,"value":546},{"type":51,"tag":311,"props":1580,"children":1581},{"style":511},[1582],{"type":57,"value":654},{"type":51,"tag":311,"props":1584,"children":1585},{"style":499},[1586],{"type":57,"value":541},{"type":51,"tag":311,"props":1588,"children":1589},{"style":499},[1590],{"type":57,"value":546},{"type":51,"tag":311,"props":1592,"children":1593},{"style":324},[1594],{"type":57,"value":1290},{"type":51,"tag":311,"props":1596,"children":1597},{"style":499},[1598],{"type":57,"value":546},{"type":51,"tag":311,"props":1600,"children":1601},{"style":499},[1602],{"type":57,"value":616},{"type":51,"tag":311,"props":1604,"children":1606},{"class":313,"line":1605},28,[1607],{"type":51,"tag":311,"props":1608,"children":1609},{"style":682},[1610],{"type":57,"value":685},{"type":51,"tag":311,"props":1612,"children":1614},{"class":313,"line":1613},29,[1615,1619,1624,1629,1633,1638,1642],{"type":51,"tag":311,"props":1616,"children":1617},{"style":499},[1618],{"type":57,"value":584},{"type":51,"tag":311,"props":1620,"children":1621},{"style":505},[1622],{"type":57,"value":1623},"title",{"type":51,"tag":311,"props":1625,"children":1626},{"style":499},[1627],{"type":57,"value":1628},">",{"type":51,"tag":311,"props":1630,"children":1631},{"style":682},[1632],{"type":57,"value":1174},{"type":51,"tag":311,"props":1634,"children":1635},{"style":499},[1636],{"type":57,"value":1637},"\u003C\u002F",{"type":51,"tag":311,"props":1639,"children":1640},{"style":505},[1641],{"type":57,"value":1623},{"type":51,"tag":311,"props":1643,"children":1644},{"style":499},[1645],{"type":57,"value":519},{"type":51,"tag":311,"props":1647,"children":1649},{"class":313,"line":1648},30,[1650,1655,1659],{"type":51,"tag":311,"props":1651,"children":1652},{"style":499},[1653],{"type":57,"value":1654},"  \u003C\u002F",{"type":51,"tag":311,"props":1656,"children":1657},{"style":505},[1658],{"type":57,"value":572},{"type":51,"tag":311,"props":1660,"children":1661},{"style":499},[1662],{"type":57,"value":519},{"type":51,"tag":311,"props":1664,"children":1666},{"class":313,"line":1665},31,[1667,1671,1676],{"type":51,"tag":311,"props":1668,"children":1669},{"style":499},[1670],{"type":57,"value":567},{"type":51,"tag":311,"props":1672,"children":1673},{"style":505},[1674],{"type":57,"value":1675},"body",{"type":51,"tag":311,"props":1677,"children":1678},{"style":499},[1679],{"type":57,"value":519},{"type":51,"tag":311,"props":1681,"children":1683},{"class":313,"line":1682},32,[1684,1688,1693,1698,1702,1706,1710,1714,1719,1723],{"type":51,"tag":311,"props":1685,"children":1686},{"style":499},[1687],{"type":57,"value":584},{"type":51,"tag":311,"props":1689,"children":1690},{"style":505},[1691],{"type":57,"value":1692},"div",{"type":51,"tag":311,"props":1694,"children":1695},{"style":511},[1696],{"type":57,"value":1697}," id",{"type":51,"tag":311,"props":1699,"children":1700},{"style":499},[1701],{"type":57,"value":541},{"type":51,"tag":311,"props":1703,"children":1704},{"style":499},[1705],{"type":57,"value":546},{"type":51,"tag":311,"props":1707,"children":1708},{"style":324},[1709],{"type":57,"value":48},{"type":51,"tag":311,"props":1711,"children":1712},{"style":499},[1713],{"type":57,"value":546},{"type":51,"tag":311,"props":1715,"children":1716},{"style":499},[1717],{"type":57,"value":1718},">\u003C\u002F",{"type":51,"tag":311,"props":1720,"children":1721},{"style":505},[1722],{"type":57,"value":1692},{"type":51,"tag":311,"props":1724,"children":1725},{"style":499},[1726],{"type":57,"value":519},{"type":51,"tag":311,"props":1728,"children":1730},{"class":313,"line":1729},33,[1731,1735,1740,1744,1748,1752,1757,1761,1766,1770,1774,1779,1783,1787,1791],{"type":51,"tag":311,"props":1732,"children":1733},{"style":499},[1734],{"type":57,"value":584},{"type":51,"tag":311,"props":1736,"children":1737},{"style":505},[1738],{"type":57,"value":1739},"script",{"type":51,"tag":311,"props":1741,"children":1742},{"style":511},[1743],{"type":57,"value":836},{"type":51,"tag":311,"props":1745,"children":1746},{"style":499},[1747],{"type":57,"value":541},{"type":51,"tag":311,"props":1749,"children":1750},{"style":499},[1751],{"type":57,"value":546},{"type":51,"tag":311,"props":1753,"children":1754},{"style":324},[1755],{"type":57,"value":1756},"module",{"type":51,"tag":311,"props":1758,"children":1759},{"style":499},[1760],{"type":57,"value":546},{"type":51,"tag":311,"props":1762,"children":1763},{"style":511},[1764],{"type":57,"value":1765}," src",{"type":51,"tag":311,"props":1767,"children":1768},{"style":499},[1769],{"type":57,"value":541},{"type":51,"tag":311,"props":1771,"children":1772},{"style":499},[1773],{"type":57,"value":546},{"type":51,"tag":311,"props":1775,"children":1776},{"style":324},[1777],{"type":57,"value":1778},"\u002Fsrc\u002Fmain.tsx",{"type":51,"tag":311,"props":1780,"children":1781},{"style":499},[1782],{"type":57,"value":546},{"type":51,"tag":311,"props":1784,"children":1785},{"style":499},[1786],{"type":57,"value":1718},{"type":51,"tag":311,"props":1788,"children":1789},{"style":505},[1790],{"type":57,"value":1739},{"type":51,"tag":311,"props":1792,"children":1793},{"style":499},[1794],{"type":57,"value":519},{"type":51,"tag":311,"props":1796,"children":1798},{"class":313,"line":1797},34,[1799,1803,1807],{"type":51,"tag":311,"props":1800,"children":1801},{"style":499},[1802],{"type":57,"value":1654},{"type":51,"tag":311,"props":1804,"children":1805},{"style":505},[1806],{"type":57,"value":1675},{"type":51,"tag":311,"props":1808,"children":1809},{"style":499},[1810],{"type":57,"value":519},{"type":51,"tag":311,"props":1812,"children":1814},{"class":313,"line":1813},35,[1815,1819,1823],{"type":51,"tag":311,"props":1816,"children":1817},{"style":499},[1818],{"type":57,"value":1637},{"type":51,"tag":311,"props":1820,"children":1821},{"style":505},[1822],{"type":57,"value":489},{"type":51,"tag":311,"props":1824,"children":1825},{"style":499},[1826],{"type":57,"value":519},{"type":51,"tag":474,"props":1828,"children":1830},{"id":1829},"publicsitewebmanifest",[1831],{"type":57,"value":1832},"public\u002Fsite.webmanifest",{"type":51,"tag":60,"props":1834,"children":1835},{},[1836],{"type":57,"value":1837},"PWA manifest for installable web apps:",{"type":51,"tag":300,"props":1839,"children":1843},{"className":1840,"code":1841,"language":1842,"meta":305,"style":305},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"name\": \"App Name\",\n  \"short_name\": \"App\",\n  \"icons\": [\n    { \"src\": \"\u002Ffavicon.ico\", \"sizes\": \"32x32\", \"type\": \"image\u002Fx-icon\" },\n    { \"src\": \"\u002Fapple-touch-icon.png\", \"sizes\": \"180x180\", \"type\": \"image\u002Fpng\" }\n  ],\n  \"theme_color\": \"#18181B\",\n  \"background_color\": \"#18181B\",\n  \"display\": \"standalone\"\n}\n","json",[1844],{"type":51,"tag":126,"props":1845,"children":1846},{"__ignoreMap":305},[1847,1855,1895,1932,1957,2067,2173,2181,2217,2253,2287],{"type":51,"tag":311,"props":1848,"children":1849},{"class":313,"line":314},[1850],{"type":51,"tag":311,"props":1851,"children":1852},{"style":499},[1853],{"type":57,"value":1854},"{\n",{"type":51,"tag":311,"props":1856,"children":1857},{"class":313,"line":355},[1858,1863,1868,1872,1877,1882,1886,1890],{"type":51,"tag":311,"props":1859,"children":1860},{"style":499},[1861],{"type":57,"value":1862},"  \"",{"type":51,"tag":311,"props":1864,"children":1865},{"style":511},[1866],{"type":57,"value":1867},"name",{"type":51,"tag":311,"props":1869,"children":1870},{"style":499},[1871],{"type":57,"value":546},{"type":51,"tag":311,"props":1873,"children":1874},{"style":499},[1875],{"type":57,"value":1876},":",{"type":51,"tag":311,"props":1878,"children":1879},{"style":499},[1880],{"type":57,"value":1881}," \"",{"type":51,"tag":311,"props":1883,"children":1884},{"style":324},[1885],{"type":57,"value":1174},{"type":51,"tag":311,"props":1887,"children":1888},{"style":499},[1889],{"type":57,"value":546},{"type":51,"tag":311,"props":1891,"children":1892},{"style":499},[1893],{"type":57,"value":1894},",\n",{"type":51,"tag":311,"props":1896,"children":1897},{"class":313,"line":370},[1898,1902,1907,1911,1915,1919,1924,1928],{"type":51,"tag":311,"props":1899,"children":1900},{"style":499},[1901],{"type":57,"value":1862},{"type":51,"tag":311,"props":1903,"children":1904},{"style":511},[1905],{"type":57,"value":1906},"short_name",{"type":51,"tag":311,"props":1908,"children":1909},{"style":499},[1910],{"type":57,"value":546},{"type":51,"tag":311,"props":1912,"children":1913},{"style":499},[1914],{"type":57,"value":1876},{"type":51,"tag":311,"props":1916,"children":1917},{"style":499},[1918],{"type":57,"value":1881},{"type":51,"tag":311,"props":1920,"children":1921},{"style":324},[1922],{"type":57,"value":1923},"App",{"type":51,"tag":311,"props":1925,"children":1926},{"style":499},[1927],{"type":57,"value":546},{"type":51,"tag":311,"props":1929,"children":1930},{"style":499},[1931],{"type":57,"value":1894},{"type":51,"tag":311,"props":1933,"children":1934},{"class":313,"line":398},[1935,1939,1944,1948,1952],{"type":51,"tag":311,"props":1936,"children":1937},{"style":499},[1938],{"type":57,"value":1862},{"type":51,"tag":311,"props":1940,"children":1941},{"style":511},[1942],{"type":57,"value":1943},"icons",{"type":51,"tag":311,"props":1945,"children":1946},{"style":499},[1947],{"type":57,"value":546},{"type":51,"tag":311,"props":1949,"children":1950},{"style":499},[1951],{"type":57,"value":1876},{"type":51,"tag":311,"props":1953,"children":1954},{"style":499},[1955],{"type":57,"value":1956}," [\n",{"type":51,"tag":311,"props":1958,"children":1959},{"class":313,"line":430},[1960,1965,1969,1974,1978,1982,1986,1990,1994,1999,2003,2008,2012,2016,2020,2024,2028,2032,2036,2041,2045,2049,2053,2058,2062],{"type":51,"tag":311,"props":1961,"children":1962},{"style":499},[1963],{"type":57,"value":1964},"    {",{"type":51,"tag":311,"props":1966,"children":1967},{"style":499},[1968],{"type":57,"value":1881},{"type":51,"tag":311,"props":1970,"children":1971},{"style":318},[1972],{"type":57,"value":1973},"src",{"type":51,"tag":311,"props":1975,"children":1976},{"style":499},[1977],{"type":57,"value":546},{"type":51,"tag":311,"props":1979,"children":1980},{"style":499},[1981],{"type":57,"value":1876},{"type":51,"tag":311,"props":1983,"children":1984},{"style":499},[1985],{"type":57,"value":1881},{"type":51,"tag":311,"props":1987,"children":1988},{"style":324},[1989],{"type":57,"value":748},{"type":51,"tag":311,"props":1991,"children":1992},{"style":499},[1993],{"type":57,"value":546},{"type":51,"tag":311,"props":1995,"children":1996},{"style":499},[1997],{"type":57,"value":1998},",",{"type":51,"tag":311,"props":2000,"children":2001},{"style":499},[2002],{"type":57,"value":1881},{"type":51,"tag":311,"props":2004,"children":2005},{"style":318},[2006],{"type":57,"value":2007},"sizes",{"type":51,"tag":311,"props":2009,"children":2010},{"style":499},[2011],{"type":57,"value":546},{"type":51,"tag":311,"props":2013,"children":2014},{"style":499},[2015],{"type":57,"value":1876},{"type":51,"tag":311,"props":2017,"children":2018},{"style":499},[2019],{"type":57,"value":1881},{"type":51,"tag":311,"props":2021,"children":2022},{"style":324},[2023],{"type":57,"value":770},{"type":51,"tag":311,"props":2025,"children":2026},{"style":499},[2027],{"type":57,"value":546},{"type":51,"tag":311,"props":2029,"children":2030},{"style":499},[2031],{"type":57,"value":1998},{"type":51,"tag":311,"props":2033,"children":2034},{"style":499},[2035],{"type":57,"value":1881},{"type":51,"tag":311,"props":2037,"children":2038},{"style":318},[2039],{"type":57,"value":2040},"type",{"type":51,"tag":311,"props":2042,"children":2043},{"style":499},[2044],{"type":57,"value":546},{"type":51,"tag":311,"props":2046,"children":2047},{"style":499},[2048],{"type":57,"value":1876},{"type":51,"tag":311,"props":2050,"children":2051},{"style":499},[2052],{"type":57,"value":1881},{"type":51,"tag":311,"props":2054,"children":2055},{"style":324},[2056],{"type":57,"value":2057},"image\u002Fx-icon",{"type":51,"tag":311,"props":2059,"children":2060},{"style":499},[2061],{"type":57,"value":546},{"type":51,"tag":311,"props":2063,"children":2064},{"style":499},[2065],{"type":57,"value":2066}," },\n",{"type":51,"tag":311,"props":2068,"children":2069},{"class":313,"line":678},[2070,2074,2078,2082,2086,2090,2094,2098,2102,2106,2110,2114,2118,2122,2126,2131,2135,2139,2143,2147,2151,2155,2159,2164,2168],{"type":51,"tag":311,"props":2071,"children":2072},{"style":499},[2073],{"type":57,"value":1964},{"type":51,"tag":311,"props":2075,"children":2076},{"style":499},[2077],{"type":57,"value":1881},{"type":51,"tag":311,"props":2079,"children":2080},{"style":318},[2081],{"type":57,"value":1973},{"type":51,"tag":311,"props":2083,"children":2084},{"style":499},[2085],{"type":57,"value":546},{"type":51,"tag":311,"props":2087,"children":2088},{"style":499},[2089],{"type":57,"value":1876},{"type":51,"tag":311,"props":2091,"children":2092},{"style":499},[2093],{"type":57,"value":1881},{"type":51,"tag":311,"props":2095,"children":2096},{"style":324},[2097],{"type":57,"value":907},{"type":51,"tag":311,"props":2099,"children":2100},{"style":499},[2101],{"type":57,"value":546},{"type":51,"tag":311,"props":2103,"children":2104},{"style":499},[2105],{"type":57,"value":1998},{"type":51,"tag":311,"props":2107,"children":2108},{"style":499},[2109],{"type":57,"value":1881},{"type":51,"tag":311,"props":2111,"children":2112},{"style":318},[2113],{"type":57,"value":2007},{"type":51,"tag":311,"props":2115,"children":2116},{"style":499},[2117],{"type":57,"value":546},{"type":51,"tag":311,"props":2119,"children":2120},{"style":499},[2121],{"type":57,"value":1876},{"type":51,"tag":311,"props":2123,"children":2124},{"style":499},[2125],{"type":57,"value":1881},{"type":51,"tag":311,"props":2127,"children":2128},{"style":324},[2129],{"type":57,"value":2130},"180x180",{"type":51,"tag":311,"props":2132,"children":2133},{"style":499},[2134],{"type":57,"value":546},{"type":51,"tag":311,"props":2136,"children":2137},{"style":499},[2138],{"type":57,"value":1998},{"type":51,"tag":311,"props":2140,"children":2141},{"style":499},[2142],{"type":57,"value":1881},{"type":51,"tag":311,"props":2144,"children":2145},{"style":318},[2146],{"type":57,"value":2040},{"type":51,"tag":311,"props":2148,"children":2149},{"style":499},[2150],{"type":57,"value":546},{"type":51,"tag":311,"props":2152,"children":2153},{"style":499},[2154],{"type":57,"value":1876},{"type":51,"tag":311,"props":2156,"children":2157},{"style":499},[2158],{"type":57,"value":1881},{"type":51,"tag":311,"props":2160,"children":2161},{"style":324},[2162],{"type":57,"value":2163},"image\u002Fpng",{"type":51,"tag":311,"props":2165,"children":2166},{"style":499},[2167],{"type":57,"value":546},{"type":51,"tag":311,"props":2169,"children":2170},{"style":499},[2171],{"type":57,"value":2172}," }\n",{"type":51,"tag":311,"props":2174,"children":2175},{"class":313,"line":688},[2176],{"type":51,"tag":311,"props":2177,"children":2178},{"style":499},[2179],{"type":57,"value":2180},"  ],\n",{"type":51,"tag":311,"props":2182,"children":2183},{"class":313,"line":698},[2184,2188,2193,2197,2201,2205,2209,2213],{"type":51,"tag":311,"props":2185,"children":2186},{"style":499},[2187],{"type":57,"value":1862},{"type":51,"tag":311,"props":2189,"children":2190},{"style":511},[2191],{"type":57,"value":2192},"theme_color",{"type":51,"tag":311,"props":2194,"children":2195},{"style":499},[2196],{"type":57,"value":546},{"type":51,"tag":311,"props":2198,"children":2199},{"style":499},[2200],{"type":57,"value":1876},{"type":51,"tag":311,"props":2202,"children":2203},{"style":499},[2204],{"type":57,"value":1881},{"type":51,"tag":311,"props":2206,"children":2207},{"style":324},[2208],{"type":57,"value":1040},{"type":51,"tag":311,"props":2210,"children":2211},{"style":499},[2212],{"type":57,"value":546},{"type":51,"tag":311,"props":2214,"children":2215},{"style":499},[2216],{"type":57,"value":1894},{"type":51,"tag":311,"props":2218,"children":2219},{"class":313,"line":781},[2220,2224,2229,2233,2237,2241,2245,2249],{"type":51,"tag":311,"props":2221,"children":2222},{"style":499},[2223],{"type":57,"value":1862},{"type":51,"tag":311,"props":2225,"children":2226},{"style":511},[2227],{"type":57,"value":2228},"background_color",{"type":51,"tag":311,"props":2230,"children":2231},{"style":499},[2232],{"type":57,"value":546},{"type":51,"tag":311,"props":2234,"children":2235},{"style":499},[2236],{"type":57,"value":1876},{"type":51,"tag":311,"props":2238,"children":2239},{"style":499},[2240],{"type":57,"value":1881},{"type":51,"tag":311,"props":2242,"children":2243},{"style":324},[2244],{"type":57,"value":1040},{"type":51,"tag":311,"props":2246,"children":2247},{"style":499},[2248],{"type":57,"value":546},{"type":51,"tag":311,"props":2250,"children":2251},{"style":499},[2252],{"type":57,"value":1894},{"type":51,"tag":311,"props":2254,"children":2255},{"class":313,"line":860},[2256,2260,2265,2269,2273,2277,2282],{"type":51,"tag":311,"props":2257,"children":2258},{"style":499},[2259],{"type":57,"value":1862},{"type":51,"tag":311,"props":2261,"children":2262},{"style":511},[2263],{"type":57,"value":2264},"display",{"type":51,"tag":311,"props":2266,"children":2267},{"style":499},[2268],{"type":57,"value":546},{"type":51,"tag":311,"props":2270,"children":2271},{"style":499},[2272],{"type":57,"value":1876},{"type":51,"tag":311,"props":2274,"children":2275},{"style":499},[2276],{"type":57,"value":1881},{"type":51,"tag":311,"props":2278,"children":2279},{"style":324},[2280],{"type":57,"value":2281},"standalone",{"type":51,"tag":311,"props":2283,"children":2284},{"style":499},[2285],{"type":57,"value":2286},"\"\n",{"type":51,"tag":311,"props":2288,"children":2289},{"class":313,"line":918},[2290],{"type":51,"tag":311,"props":2291,"children":2292},{"style":499},[2293],{"type":57,"value":2294},"}\n",{"type":51,"tag":474,"props":2296,"children":2298},{"id":2297},"tailwindconfigjs",[2299],{"type":57,"value":2300},"tailwind.config.js",{"type":51,"tag":300,"props":2302,"children":2306},{"className":2303,"code":2304,"language":2305,"meta":305,"style":305},"language-js shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F** @type {import('tailwindcss').Config} *\u002F\nexport default {\n  content: ['.\u002Findex.html', '.\u002Fsrc\u002F**\u002F*.{js,ts,jsx,tsx}'],\n  theme: {\n    extend: {\n      fontFamily: {\n        sans: ['Segoe UI', 'system-ui', 'sans-serif'],\n      },\n      colors: {\n        brand: {\n          DEFAULT: '#8251EE',\n          hover: '#9366F5',\n          light: '#A37EF5',\n          subtle: 'rgba(130, 81, 238, 0.15)',\n        },\n        neutral: {\n          bg1: 'hsl(240, 6%, 10%)',\n          bg2: 'hsl(240, 5%, 12%)',\n          bg3: 'hsl(240, 5%, 14%)',\n          bg4: 'hsl(240, 4%, 18%)',\n          bg5: 'hsl(240, 4%, 22%)',\n          bg6: 'hsl(240, 4%, 26%)',\n        },\n        text: {\n          primary: '#FFFFFF',\n          secondary: '#A1A1AA',\n          muted: '#71717A',\n        },\n        border: {\n          subtle: 'hsla(0, 0%, 100%, 0.08)',\n          DEFAULT: 'hsla(0, 0%, 100%, 0.12)',\n          strong: 'hsla(0, 0%, 100%, 0.20)',\n        },\n        status: {\n          success: '#10B981',\n          warning: '#F59E0B',\n          error: '#EF4444',\n          info: '#3B82F6',\n        },\n        dataviz: {\n          purple: '#8251EE',\n          blue: '#3B82F6',\n          green: '#10B981',\n          yellow: '#F59E0B',\n          red: '#EF4444',\n          pink: '#EC4899',\n          cyan: '#06B6D4',\n        },\n      },\n      borderRadius: {\n        DEFAULT: '0.5rem',\n        lg: '0.75rem',\n        xl: '1rem',\n      },\n      boxShadow: {\n        glow: '0 0 20px rgba(130, 81, 238, 0.3)',\n        'glow-lg': '0 0 40px rgba(130, 81, 238, 0.4)',\n      },\n      backdropBlur: {\n        xs: '2px',\n      },\n      animation: {\n        'fade-in': 'fadeIn 0.3s ease-out',\n        'slide-up': 'slideUp 0.3s ease-out',\n        'slide-down': 'slideDown 0.3s ease-out',\n      },\n      keyframes: {\n        fadeIn: {\n          '0%': { opacity: '0' },\n          '100%': { opacity: '1' },\n        },\n        slideUp: {\n          '0%': { opacity: '0', transform: 'translateY(10px)' },\n          '100%': { opacity: '1', transform: 'translateY(0)' },\n        },\n        slideDown: {\n          '0%': { opacity: '0', transform: 'translateY(-10px)' },\n          '100%': { opacity: '1', transform: 'translateY(0)' },\n        },\n      },\n      \u002F\u002F Mobile: safe area insets for notched devices\n      spacing: {\n        'safe-top': 'env(safe-area-inset-top)',\n        'safe-bottom': 'env(safe-area-inset-bottom)',\n        'safe-left': 'env(safe-area-inset-left)',\n        'safe-right': 'env(safe-area-inset-right)',\n      },\n      \u002F\u002F Mobile: minimum touch target sizes (44px per Apple\u002FGoogle guidelines)\n      minHeight: {\n        'touch': '44px',\n      },\n      minWidth: {\n        'touch': '44px',\n      },\n    },\n  },\n  plugins: [],\n};\n","js",[2307],{"type":51,"tag":126,"props":2308,"children":2309},{"__ignoreMap":305},[2310,2350,2368,2426,2442,2458,2474,2545,2553,2569,2585,2614,2643,2672,2701,2709,2725,2754,2783,2812,2841,2870,2899,2906,2922,2951,2980,3009,3016,3032,3060,3088,3117,3124,3140,3169,3199,3229,3259,3267,3284,3313,3342,3371,3400,3429,3459,3489,3497,3505,3522,3552,3582,3612,3620,3637,3667,3706,3714,3731,3761,3769,3786,3824,3862,3900,3908,3925,3942,3994,4044,4052,4069,4143,4216,4224,4241,4314,4386,4394,4402,4411,4428,4466,4504,4542,4580,4588,4597,4614,4652,4660,4677,4713,4721,4730,4739,4761],{"type":51,"tag":311,"props":2311,"children":2312},{"class":313,"line":314},[2313,2318,2324,2329,2334,2340,2345],{"type":51,"tag":311,"props":2314,"children":2315},{"style":692},[2316],{"type":57,"value":2317},"\u002F** ",{"type":51,"tag":311,"props":2319,"children":2321},{"style":2320},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[2322],{"type":57,"value":2323},"@",{"type":51,"tag":311,"props":2325,"children":2327},{"style":2326},"--shiki-light:#9C3EDA;--shiki-light-font-style:italic;--shiki-default:#C792EA;--shiki-default-font-style:italic;--shiki-dark:#C792EA;--shiki-dark-font-style:italic",[2328],{"type":57,"value":2040},{"type":51,"tag":311,"props":2330,"children":2331},{"style":2320},[2332],{"type":57,"value":2333}," {",{"type":51,"tag":311,"props":2335,"children":2337},{"style":2336},"--shiki-light:#E2931D;--shiki-light-font-style:italic;--shiki-default:#FFCB6B;--shiki-default-font-style:italic;--shiki-dark:#FFCB6B;--shiki-dark-font-style:italic",[2338],{"type":57,"value":2339},"import('tailwindcss').Config",{"type":51,"tag":311,"props":2341,"children":2342},{"style":2320},[2343],{"type":57,"value":2344},"}",{"type":51,"tag":311,"props":2346,"children":2347},{"style":692},[2348],{"type":57,"value":2349}," *\u002F\n",{"type":51,"tag":311,"props":2351,"children":2352},{"class":313,"line":355},[2353,2358,2363],{"type":51,"tag":311,"props":2354,"children":2355},{"style":2320},[2356],{"type":57,"value":2357},"export",{"type":51,"tag":311,"props":2359,"children":2360},{"style":2320},[2361],{"type":57,"value":2362}," default",{"type":51,"tag":311,"props":2364,"children":2365},{"style":499},[2366],{"type":57,"value":2367}," {\n",{"type":51,"tag":311,"props":2369,"children":2370},{"class":313,"line":370},[2371,2376,2380,2385,2390,2395,2399,2403,2408,2413,2417,2422],{"type":51,"tag":311,"props":2372,"children":2373},{"style":505},[2374],{"type":57,"value":2375},"  content",{"type":51,"tag":311,"props":2377,"children":2378},{"style":499},[2379],{"type":57,"value":1876},{"type":51,"tag":311,"props":2381,"children":2382},{"style":682},[2383],{"type":57,"value":2384}," [",{"type":51,"tag":311,"props":2386,"children":2387},{"style":499},[2388],{"type":57,"value":2389},"'",{"type":51,"tag":311,"props":2391,"children":2392},{"style":324},[2393],{"type":57,"value":2394},".\u002Findex.html",{"type":51,"tag":311,"props":2396,"children":2397},{"style":499},[2398],{"type":57,"value":2389},{"type":51,"tag":311,"props":2400,"children":2401},{"style":499},[2402],{"type":57,"value":1998},{"type":51,"tag":311,"props":2404,"children":2405},{"style":499},[2406],{"type":57,"value":2407}," '",{"type":51,"tag":311,"props":2409,"children":2410},{"style":324},[2411],{"type":57,"value":2412},".\u002Fsrc\u002F**\u002F*.{js,ts,jsx,tsx}",{"type":51,"tag":311,"props":2414,"children":2415},{"style":499},[2416],{"type":57,"value":2389},{"type":51,"tag":311,"props":2418,"children":2419},{"style":682},[2420],{"type":57,"value":2421},"]",{"type":51,"tag":311,"props":2423,"children":2424},{"style":499},[2425],{"type":57,"value":1894},{"type":51,"tag":311,"props":2427,"children":2428},{"class":313,"line":398},[2429,2434,2438],{"type":51,"tag":311,"props":2430,"children":2431},{"style":505},[2432],{"type":57,"value":2433},"  theme",{"type":51,"tag":311,"props":2435,"children":2436},{"style":499},[2437],{"type":57,"value":1876},{"type":51,"tag":311,"props":2439,"children":2440},{"style":499},[2441],{"type":57,"value":2367},{"type":51,"tag":311,"props":2443,"children":2444},{"class":313,"line":430},[2445,2450,2454],{"type":51,"tag":311,"props":2446,"children":2447},{"style":505},[2448],{"type":57,"value":2449},"    extend",{"type":51,"tag":311,"props":2451,"children":2452},{"style":499},[2453],{"type":57,"value":1876},{"type":51,"tag":311,"props":2455,"children":2456},{"style":499},[2457],{"type":57,"value":2367},{"type":51,"tag":311,"props":2459,"children":2460},{"class":313,"line":678},[2461,2466,2470],{"type":51,"tag":311,"props":2462,"children":2463},{"style":505},[2464],{"type":57,"value":2465},"      fontFamily",{"type":51,"tag":311,"props":2467,"children":2468},{"style":499},[2469],{"type":57,"value":1876},{"type":51,"tag":311,"props":2471,"children":2472},{"style":499},[2473],{"type":57,"value":2367},{"type":51,"tag":311,"props":2475,"children":2476},{"class":313,"line":688},[2477,2482,2486,2490,2494,2499,2503,2507,2511,2516,2520,2524,2528,2533,2537,2541],{"type":51,"tag":311,"props":2478,"children":2479},{"style":505},[2480],{"type":57,"value":2481},"        sans",{"type":51,"tag":311,"props":2483,"children":2484},{"style":499},[2485],{"type":57,"value":1876},{"type":51,"tag":311,"props":2487,"children":2488},{"style":682},[2489],{"type":57,"value":2384},{"type":51,"tag":311,"props":2491,"children":2492},{"style":499},[2493],{"type":57,"value":2389},{"type":51,"tag":311,"props":2495,"children":2496},{"style":324},[2497],{"type":57,"value":2498},"Segoe UI",{"type":51,"tag":311,"props":2500,"children":2501},{"style":499},[2502],{"type":57,"value":2389},{"type":51,"tag":311,"props":2504,"children":2505},{"style":499},[2506],{"type":57,"value":1998},{"type":51,"tag":311,"props":2508,"children":2509},{"style":499},[2510],{"type":57,"value":2407},{"type":51,"tag":311,"props":2512,"children":2513},{"style":324},[2514],{"type":57,"value":2515},"system-ui",{"type":51,"tag":311,"props":2517,"children":2518},{"style":499},[2519],{"type":57,"value":2389},{"type":51,"tag":311,"props":2521,"children":2522},{"style":499},[2523],{"type":57,"value":1998},{"type":51,"tag":311,"props":2525,"children":2526},{"style":499},[2527],{"type":57,"value":2407},{"type":51,"tag":311,"props":2529,"children":2530},{"style":324},[2531],{"type":57,"value":2532},"sans-serif",{"type":51,"tag":311,"props":2534,"children":2535},{"style":499},[2536],{"type":57,"value":2389},{"type":51,"tag":311,"props":2538,"children":2539},{"style":682},[2540],{"type":57,"value":2421},{"type":51,"tag":311,"props":2542,"children":2543},{"style":499},[2544],{"type":57,"value":1894},{"type":51,"tag":311,"props":2546,"children":2547},{"class":313,"line":698},[2548],{"type":51,"tag":311,"props":2549,"children":2550},{"style":499},[2551],{"type":57,"value":2552},"      },\n",{"type":51,"tag":311,"props":2554,"children":2555},{"class":313,"line":781},[2556,2561,2565],{"type":51,"tag":311,"props":2557,"children":2558},{"style":505},[2559],{"type":57,"value":2560},"      colors",{"type":51,"tag":311,"props":2562,"children":2563},{"style":499},[2564],{"type":57,"value":1876},{"type":51,"tag":311,"props":2566,"children":2567},{"style":499},[2568],{"type":57,"value":2367},{"type":51,"tag":311,"props":2570,"children":2571},{"class":313,"line":860},[2572,2577,2581],{"type":51,"tag":311,"props":2573,"children":2574},{"style":505},[2575],{"type":57,"value":2576},"        brand",{"type":51,"tag":311,"props":2578,"children":2579},{"style":499},[2580],{"type":57,"value":1876},{"type":51,"tag":311,"props":2582,"children":2583},{"style":499},[2584],{"type":57,"value":2367},{"type":51,"tag":311,"props":2586,"children":2587},{"class":313,"line":918},[2588,2593,2597,2601,2606,2610],{"type":51,"tag":311,"props":2589,"children":2590},{"style":505},[2591],{"type":57,"value":2592},"          DEFAULT",{"type":51,"tag":311,"props":2594,"children":2595},{"style":499},[2596],{"type":57,"value":1876},{"type":51,"tag":311,"props":2598,"children":2599},{"style":499},[2600],{"type":57,"value":2407},{"type":51,"tag":311,"props":2602,"children":2603},{"style":324},[2604],{"type":57,"value":2605},"#8251EE",{"type":51,"tag":311,"props":2607,"children":2608},{"style":499},[2609],{"type":57,"value":2389},{"type":51,"tag":311,"props":2611,"children":2612},{"style":499},[2613],{"type":57,"value":1894},{"type":51,"tag":311,"props":2615,"children":2616},{"class":313,"line":976},[2617,2622,2626,2630,2635,2639],{"type":51,"tag":311,"props":2618,"children":2619},{"style":505},[2620],{"type":57,"value":2621},"          hover",{"type":51,"tag":311,"props":2623,"children":2624},{"style":499},[2625],{"type":57,"value":1876},{"type":51,"tag":311,"props":2627,"children":2628},{"style":499},[2629],{"type":57,"value":2407},{"type":51,"tag":311,"props":2631,"children":2632},{"style":324},[2633],{"type":57,"value":2634},"#9366F5",{"type":51,"tag":311,"props":2636,"children":2637},{"style":499},[2638],{"type":57,"value":2389},{"type":51,"tag":311,"props":2640,"children":2641},{"style":499},[2642],{"type":57,"value":1894},{"type":51,"tag":311,"props":2644,"children":2645},{"class":313,"line":984},[2646,2651,2655,2659,2664,2668],{"type":51,"tag":311,"props":2647,"children":2648},{"style":505},[2649],{"type":57,"value":2650},"          light",{"type":51,"tag":311,"props":2652,"children":2653},{"style":499},[2654],{"type":57,"value":1876},{"type":51,"tag":311,"props":2656,"children":2657},{"style":499},[2658],{"type":57,"value":2407},{"type":51,"tag":311,"props":2660,"children":2661},{"style":324},[2662],{"type":57,"value":2663},"#A37EF5",{"type":51,"tag":311,"props":2665,"children":2666},{"style":499},[2667],{"type":57,"value":2389},{"type":51,"tag":311,"props":2669,"children":2670},{"style":499},[2671],{"type":57,"value":1894},{"type":51,"tag":311,"props":2673,"children":2674},{"class":313,"line":993},[2675,2680,2684,2688,2693,2697],{"type":51,"tag":311,"props":2676,"children":2677},{"style":505},[2678],{"type":57,"value":2679},"          subtle",{"type":51,"tag":311,"props":2681,"children":2682},{"style":499},[2683],{"type":57,"value":1876},{"type":51,"tag":311,"props":2685,"children":2686},{"style":499},[2687],{"type":57,"value":2407},{"type":51,"tag":311,"props":2689,"children":2690},{"style":324},[2691],{"type":57,"value":2692},"rgba(130, 81, 238, 0.15)",{"type":51,"tag":311,"props":2694,"children":2695},{"style":499},[2696],{"type":57,"value":2389},{"type":51,"tag":311,"props":2698,"children":2699},{"style":499},[2700],{"type":57,"value":1894},{"type":51,"tag":311,"props":2702,"children":2703},{"class":313,"line":1051},[2704],{"type":51,"tag":311,"props":2705,"children":2706},{"style":499},[2707],{"type":57,"value":2708},"        },\n",{"type":51,"tag":311,"props":2710,"children":2711},{"class":313,"line":1059},[2712,2717,2721],{"type":51,"tag":311,"props":2713,"children":2714},{"style":505},[2715],{"type":57,"value":2716},"        neutral",{"type":51,"tag":311,"props":2718,"children":2719},{"style":499},[2720],{"type":57,"value":1876},{"type":51,"tag":311,"props":2722,"children":2723},{"style":499},[2724],{"type":57,"value":2367},{"type":51,"tag":311,"props":2726,"children":2727},{"class":313,"line":1068},[2728,2733,2737,2741,2746,2750],{"type":51,"tag":311,"props":2729,"children":2730},{"style":505},[2731],{"type":57,"value":2732},"          bg1",{"type":51,"tag":311,"props":2734,"children":2735},{"style":499},[2736],{"type":57,"value":1876},{"type":51,"tag":311,"props":2738,"children":2739},{"style":499},[2740],{"type":57,"value":2407},{"type":51,"tag":311,"props":2742,"children":2743},{"style":324},[2744],{"type":57,"value":2745},"hsl(240, 6%, 10%)",{"type":51,"tag":311,"props":2747,"children":2748},{"style":499},[2749],{"type":57,"value":2389},{"type":51,"tag":311,"props":2751,"children":2752},{"style":499},[2753],{"type":57,"value":1894},{"type":51,"tag":311,"props":2755,"children":2756},{"class":313,"line":1127},[2757,2762,2766,2770,2775,2779],{"type":51,"tag":311,"props":2758,"children":2759},{"style":505},[2760],{"type":57,"value":2761},"          bg2",{"type":51,"tag":311,"props":2763,"children":2764},{"style":499},[2765],{"type":57,"value":1876},{"type":51,"tag":311,"props":2767,"children":2768},{"style":499},[2769],{"type":57,"value":2407},{"type":51,"tag":311,"props":2771,"children":2772},{"style":324},[2773],{"type":57,"value":2774},"hsl(240, 5%, 12%)",{"type":51,"tag":311,"props":2776,"children":2777},{"style":499},[2778],{"type":57,"value":2389},{"type":51,"tag":311,"props":2780,"children":2781},{"style":499},[2782],{"type":57,"value":1894},{"type":51,"tag":311,"props":2784,"children":2785},{"class":313,"line":1185},[2786,2791,2795,2799,2804,2808],{"type":51,"tag":311,"props":2787,"children":2788},{"style":505},[2789],{"type":57,"value":2790},"          bg3",{"type":51,"tag":311,"props":2792,"children":2793},{"style":499},[2794],{"type":57,"value":1876},{"type":51,"tag":311,"props":2796,"children":2797},{"style":499},[2798],{"type":57,"value":2407},{"type":51,"tag":311,"props":2800,"children":2801},{"style":324},[2802],{"type":57,"value":2803},"hsl(240, 5%, 14%)",{"type":51,"tag":311,"props":2805,"children":2806},{"style":499},[2807],{"type":57,"value":2389},{"type":51,"tag":311,"props":2809,"children":2810},{"style":499},[2811],{"type":57,"value":1894},{"type":51,"tag":311,"props":2813,"children":2814},{"class":313,"line":1243},[2815,2820,2824,2828,2833,2837],{"type":51,"tag":311,"props":2816,"children":2817},{"style":505},[2818],{"type":57,"value":2819},"          bg4",{"type":51,"tag":311,"props":2821,"children":2822},{"style":499},[2823],{"type":57,"value":1876},{"type":51,"tag":311,"props":2825,"children":2826},{"style":499},[2827],{"type":57,"value":2407},{"type":51,"tag":311,"props":2829,"children":2830},{"style":324},[2831],{"type":57,"value":2832},"hsl(240, 4%, 18%)",{"type":51,"tag":311,"props":2834,"children":2835},{"style":499},[2836],{"type":57,"value":2389},{"type":51,"tag":311,"props":2838,"children":2839},{"style":499},[2840],{"type":57,"value":1894},{"type":51,"tag":311,"props":2842,"children":2843},{"class":313,"line":1301},[2844,2849,2853,2857,2862,2866],{"type":51,"tag":311,"props":2845,"children":2846},{"style":505},[2847],{"type":57,"value":2848},"          bg5",{"type":51,"tag":311,"props":2850,"children":2851},{"style":499},[2852],{"type":57,"value":1876},{"type":51,"tag":311,"props":2854,"children":2855},{"style":499},[2856],{"type":57,"value":2407},{"type":51,"tag":311,"props":2858,"children":2859},{"style":324},[2860],{"type":57,"value":2861},"hsl(240, 4%, 22%)",{"type":51,"tag":311,"props":2863,"children":2864},{"style":499},[2865],{"type":57,"value":2389},{"type":51,"tag":311,"props":2867,"children":2868},{"style":499},[2869],{"type":57,"value":1894},{"type":51,"tag":311,"props":2871,"children":2872},{"class":313,"line":1359},[2873,2878,2882,2886,2891,2895],{"type":51,"tag":311,"props":2874,"children":2875},{"style":505},[2876],{"type":57,"value":2877},"          bg6",{"type":51,"tag":311,"props":2879,"children":2880},{"style":499},[2881],{"type":57,"value":1876},{"type":51,"tag":311,"props":2883,"children":2884},{"style":499},[2885],{"type":57,"value":2407},{"type":51,"tag":311,"props":2887,"children":2888},{"style":324},[2889],{"type":57,"value":2890},"hsl(240, 4%, 26%)",{"type":51,"tag":311,"props":2892,"children":2893},{"style":499},[2894],{"type":57,"value":2389},{"type":51,"tag":311,"props":2896,"children":2897},{"style":499},[2898],{"type":57,"value":1894},{"type":51,"tag":311,"props":2900,"children":2901},{"class":313,"line":1367},[2902],{"type":51,"tag":311,"props":2903,"children":2904},{"style":499},[2905],{"type":57,"value":2708},{"type":51,"tag":311,"props":2907,"children":2908},{"class":313,"line":1376},[2909,2914,2918],{"type":51,"tag":311,"props":2910,"children":2911},{"style":505},[2912],{"type":57,"value":2913},"        text",{"type":51,"tag":311,"props":2915,"children":2916},{"style":499},[2917],{"type":57,"value":1876},{"type":51,"tag":311,"props":2919,"children":2920},{"style":499},[2921],{"type":57,"value":2367},{"type":51,"tag":311,"props":2923,"children":2924},{"class":313,"line":1434},[2925,2930,2934,2938,2943,2947],{"type":51,"tag":311,"props":2926,"children":2927},{"style":505},[2928],{"type":57,"value":2929},"          primary",{"type":51,"tag":311,"props":2931,"children":2932},{"style":499},[2933],{"type":57,"value":1876},{"type":51,"tag":311,"props":2935,"children":2936},{"style":499},[2937],{"type":57,"value":2407},{"type":51,"tag":311,"props":2939,"children":2940},{"style":324},[2941],{"type":57,"value":2942},"#FFFFFF",{"type":51,"tag":311,"props":2944,"children":2945},{"style":499},[2946],{"type":57,"value":2389},{"type":51,"tag":311,"props":2948,"children":2949},{"style":499},[2950],{"type":57,"value":1894},{"type":51,"tag":311,"props":2952,"children":2953},{"class":313,"line":1491},[2954,2959,2963,2967,2972,2976],{"type":51,"tag":311,"props":2955,"children":2956},{"style":505},[2957],{"type":57,"value":2958},"          secondary",{"type":51,"tag":311,"props":2960,"children":2961},{"style":499},[2962],{"type":57,"value":1876},{"type":51,"tag":311,"props":2964,"children":2965},{"style":499},[2966],{"type":57,"value":2407},{"type":51,"tag":311,"props":2968,"children":2969},{"style":324},[2970],{"type":57,"value":2971},"#A1A1AA",{"type":51,"tag":311,"props":2973,"children":2974},{"style":499},[2975],{"type":57,"value":2389},{"type":51,"tag":311,"props":2977,"children":2978},{"style":499},[2979],{"type":57,"value":1894},{"type":51,"tag":311,"props":2981,"children":2982},{"class":313,"line":1548},[2983,2988,2992,2996,3001,3005],{"type":51,"tag":311,"props":2984,"children":2985},{"style":505},[2986],{"type":57,"value":2987},"          muted",{"type":51,"tag":311,"props":2989,"children":2990},{"style":499},[2991],{"type":57,"value":1876},{"type":51,"tag":311,"props":2993,"children":2994},{"style":499},[2995],{"type":57,"value":2407},{"type":51,"tag":311,"props":2997,"children":2998},{"style":324},[2999],{"type":57,"value":3000},"#71717A",{"type":51,"tag":311,"props":3002,"children":3003},{"style":499},[3004],{"type":57,"value":2389},{"type":51,"tag":311,"props":3006,"children":3007},{"style":499},[3008],{"type":57,"value":1894},{"type":51,"tag":311,"props":3010,"children":3011},{"class":313,"line":1605},[3012],{"type":51,"tag":311,"props":3013,"children":3014},{"style":499},[3015],{"type":57,"value":2708},{"type":51,"tag":311,"props":3017,"children":3018},{"class":313,"line":1613},[3019,3024,3028],{"type":51,"tag":311,"props":3020,"children":3021},{"style":505},[3022],{"type":57,"value":3023},"        border",{"type":51,"tag":311,"props":3025,"children":3026},{"style":499},[3027],{"type":57,"value":1876},{"type":51,"tag":311,"props":3029,"children":3030},{"style":499},[3031],{"type":57,"value":2367},{"type":51,"tag":311,"props":3033,"children":3034},{"class":313,"line":1648},[3035,3039,3043,3047,3052,3056],{"type":51,"tag":311,"props":3036,"children":3037},{"style":505},[3038],{"type":57,"value":2679},{"type":51,"tag":311,"props":3040,"children":3041},{"style":499},[3042],{"type":57,"value":1876},{"type":51,"tag":311,"props":3044,"children":3045},{"style":499},[3046],{"type":57,"value":2407},{"type":51,"tag":311,"props":3048,"children":3049},{"style":324},[3050],{"type":57,"value":3051},"hsla(0, 0%, 100%, 0.08)",{"type":51,"tag":311,"props":3053,"children":3054},{"style":499},[3055],{"type":57,"value":2389},{"type":51,"tag":311,"props":3057,"children":3058},{"style":499},[3059],{"type":57,"value":1894},{"type":51,"tag":311,"props":3061,"children":3062},{"class":313,"line":1665},[3063,3067,3071,3075,3080,3084],{"type":51,"tag":311,"props":3064,"children":3065},{"style":505},[3066],{"type":57,"value":2592},{"type":51,"tag":311,"props":3068,"children":3069},{"style":499},[3070],{"type":57,"value":1876},{"type":51,"tag":311,"props":3072,"children":3073},{"style":499},[3074],{"type":57,"value":2407},{"type":51,"tag":311,"props":3076,"children":3077},{"style":324},[3078],{"type":57,"value":3079},"hsla(0, 0%, 100%, 0.12)",{"type":51,"tag":311,"props":3081,"children":3082},{"style":499},[3083],{"type":57,"value":2389},{"type":51,"tag":311,"props":3085,"children":3086},{"style":499},[3087],{"type":57,"value":1894},{"type":51,"tag":311,"props":3089,"children":3090},{"class":313,"line":1682},[3091,3096,3100,3104,3109,3113],{"type":51,"tag":311,"props":3092,"children":3093},{"style":505},[3094],{"type":57,"value":3095},"          strong",{"type":51,"tag":311,"props":3097,"children":3098},{"style":499},[3099],{"type":57,"value":1876},{"type":51,"tag":311,"props":3101,"children":3102},{"style":499},[3103],{"type":57,"value":2407},{"type":51,"tag":311,"props":3105,"children":3106},{"style":324},[3107],{"type":57,"value":3108},"hsla(0, 0%, 100%, 0.20)",{"type":51,"tag":311,"props":3110,"children":3111},{"style":499},[3112],{"type":57,"value":2389},{"type":51,"tag":311,"props":3114,"children":3115},{"style":499},[3116],{"type":57,"value":1894},{"type":51,"tag":311,"props":3118,"children":3119},{"class":313,"line":1729},[3120],{"type":51,"tag":311,"props":3121,"children":3122},{"style":499},[3123],{"type":57,"value":2708},{"type":51,"tag":311,"props":3125,"children":3126},{"class":313,"line":1797},[3127,3132,3136],{"type":51,"tag":311,"props":3128,"children":3129},{"style":505},[3130],{"type":57,"value":3131},"        status",{"type":51,"tag":311,"props":3133,"children":3134},{"style":499},[3135],{"type":57,"value":1876},{"type":51,"tag":311,"props":3137,"children":3138},{"style":499},[3139],{"type":57,"value":2367},{"type":51,"tag":311,"props":3141,"children":3142},{"class":313,"line":1813},[3143,3148,3152,3156,3161,3165],{"type":51,"tag":311,"props":3144,"children":3145},{"style":505},[3146],{"type":57,"value":3147},"          success",{"type":51,"tag":311,"props":3149,"children":3150},{"style":499},[3151],{"type":57,"value":1876},{"type":51,"tag":311,"props":3153,"children":3154},{"style":499},[3155],{"type":57,"value":2407},{"type":51,"tag":311,"props":3157,"children":3158},{"style":324},[3159],{"type":57,"value":3160},"#10B981",{"type":51,"tag":311,"props":3162,"children":3163},{"style":499},[3164],{"type":57,"value":2389},{"type":51,"tag":311,"props":3166,"children":3167},{"style":499},[3168],{"type":57,"value":1894},{"type":51,"tag":311,"props":3170,"children":3172},{"class":313,"line":3171},36,[3173,3178,3182,3186,3191,3195],{"type":51,"tag":311,"props":3174,"children":3175},{"style":505},[3176],{"type":57,"value":3177},"          warning",{"type":51,"tag":311,"props":3179,"children":3180},{"style":499},[3181],{"type":57,"value":1876},{"type":51,"tag":311,"props":3183,"children":3184},{"style":499},[3185],{"type":57,"value":2407},{"type":51,"tag":311,"props":3187,"children":3188},{"style":324},[3189],{"type":57,"value":3190},"#F59E0B",{"type":51,"tag":311,"props":3192,"children":3193},{"style":499},[3194],{"type":57,"value":2389},{"type":51,"tag":311,"props":3196,"children":3197},{"style":499},[3198],{"type":57,"value":1894},{"type":51,"tag":311,"props":3200,"children":3202},{"class":313,"line":3201},37,[3203,3208,3212,3216,3221,3225],{"type":51,"tag":311,"props":3204,"children":3205},{"style":505},[3206],{"type":57,"value":3207},"          error",{"type":51,"tag":311,"props":3209,"children":3210},{"style":499},[3211],{"type":57,"value":1876},{"type":51,"tag":311,"props":3213,"children":3214},{"style":499},[3215],{"type":57,"value":2407},{"type":51,"tag":311,"props":3217,"children":3218},{"style":324},[3219],{"type":57,"value":3220},"#EF4444",{"type":51,"tag":311,"props":3222,"children":3223},{"style":499},[3224],{"type":57,"value":2389},{"type":51,"tag":311,"props":3226,"children":3227},{"style":499},[3228],{"type":57,"value":1894},{"type":51,"tag":311,"props":3230,"children":3232},{"class":313,"line":3231},38,[3233,3238,3242,3246,3251,3255],{"type":51,"tag":311,"props":3234,"children":3235},{"style":505},[3236],{"type":57,"value":3237},"          info",{"type":51,"tag":311,"props":3239,"children":3240},{"style":499},[3241],{"type":57,"value":1876},{"type":51,"tag":311,"props":3243,"children":3244},{"style":499},[3245],{"type":57,"value":2407},{"type":51,"tag":311,"props":3247,"children":3248},{"style":324},[3249],{"type":57,"value":3250},"#3B82F6",{"type":51,"tag":311,"props":3252,"children":3253},{"style":499},[3254],{"type":57,"value":2389},{"type":51,"tag":311,"props":3256,"children":3257},{"style":499},[3258],{"type":57,"value":1894},{"type":51,"tag":311,"props":3260,"children":3262},{"class":313,"line":3261},39,[3263],{"type":51,"tag":311,"props":3264,"children":3265},{"style":499},[3266],{"type":57,"value":2708},{"type":51,"tag":311,"props":3268,"children":3270},{"class":313,"line":3269},40,[3271,3276,3280],{"type":51,"tag":311,"props":3272,"children":3273},{"style":505},[3274],{"type":57,"value":3275},"        dataviz",{"type":51,"tag":311,"props":3277,"children":3278},{"style":499},[3279],{"type":57,"value":1876},{"type":51,"tag":311,"props":3281,"children":3282},{"style":499},[3283],{"type":57,"value":2367},{"type":51,"tag":311,"props":3285,"children":3287},{"class":313,"line":3286},41,[3288,3293,3297,3301,3305,3309],{"type":51,"tag":311,"props":3289,"children":3290},{"style":505},[3291],{"type":57,"value":3292},"          purple",{"type":51,"tag":311,"props":3294,"children":3295},{"style":499},[3296],{"type":57,"value":1876},{"type":51,"tag":311,"props":3298,"children":3299},{"style":499},[3300],{"type":57,"value":2407},{"type":51,"tag":311,"props":3302,"children":3303},{"style":324},[3304],{"type":57,"value":2605},{"type":51,"tag":311,"props":3306,"children":3307},{"style":499},[3308],{"type":57,"value":2389},{"type":51,"tag":311,"props":3310,"children":3311},{"style":499},[3312],{"type":57,"value":1894},{"type":51,"tag":311,"props":3314,"children":3316},{"class":313,"line":3315},42,[3317,3322,3326,3330,3334,3338],{"type":51,"tag":311,"props":3318,"children":3319},{"style":505},[3320],{"type":57,"value":3321},"          blue",{"type":51,"tag":311,"props":3323,"children":3324},{"style":499},[3325],{"type":57,"value":1876},{"type":51,"tag":311,"props":3327,"children":3328},{"style":499},[3329],{"type":57,"value":2407},{"type":51,"tag":311,"props":3331,"children":3332},{"style":324},[3333],{"type":57,"value":3250},{"type":51,"tag":311,"props":3335,"children":3336},{"style":499},[3337],{"type":57,"value":2389},{"type":51,"tag":311,"props":3339,"children":3340},{"style":499},[3341],{"type":57,"value":1894},{"type":51,"tag":311,"props":3343,"children":3345},{"class":313,"line":3344},43,[3346,3351,3355,3359,3363,3367],{"type":51,"tag":311,"props":3347,"children":3348},{"style":505},[3349],{"type":57,"value":3350},"          green",{"type":51,"tag":311,"props":3352,"children":3353},{"style":499},[3354],{"type":57,"value":1876},{"type":51,"tag":311,"props":3356,"children":3357},{"style":499},[3358],{"type":57,"value":2407},{"type":51,"tag":311,"props":3360,"children":3361},{"style":324},[3362],{"type":57,"value":3160},{"type":51,"tag":311,"props":3364,"children":3365},{"style":499},[3366],{"type":57,"value":2389},{"type":51,"tag":311,"props":3368,"children":3369},{"style":499},[3370],{"type":57,"value":1894},{"type":51,"tag":311,"props":3372,"children":3374},{"class":313,"line":3373},44,[3375,3380,3384,3388,3392,3396],{"type":51,"tag":311,"props":3376,"children":3377},{"style":505},[3378],{"type":57,"value":3379},"          yellow",{"type":51,"tag":311,"props":3381,"children":3382},{"style":499},[3383],{"type":57,"value":1876},{"type":51,"tag":311,"props":3385,"children":3386},{"style":499},[3387],{"type":57,"value":2407},{"type":51,"tag":311,"props":3389,"children":3390},{"style":324},[3391],{"type":57,"value":3190},{"type":51,"tag":311,"props":3393,"children":3394},{"style":499},[3395],{"type":57,"value":2389},{"type":51,"tag":311,"props":3397,"children":3398},{"style":499},[3399],{"type":57,"value":1894},{"type":51,"tag":311,"props":3401,"children":3403},{"class":313,"line":3402},45,[3404,3409,3413,3417,3421,3425],{"type":51,"tag":311,"props":3405,"children":3406},{"style":505},[3407],{"type":57,"value":3408},"          red",{"type":51,"tag":311,"props":3410,"children":3411},{"style":499},[3412],{"type":57,"value":1876},{"type":51,"tag":311,"props":3414,"children":3415},{"style":499},[3416],{"type":57,"value":2407},{"type":51,"tag":311,"props":3418,"children":3419},{"style":324},[3420],{"type":57,"value":3220},{"type":51,"tag":311,"props":3422,"children":3423},{"style":499},[3424],{"type":57,"value":2389},{"type":51,"tag":311,"props":3426,"children":3427},{"style":499},[3428],{"type":57,"value":1894},{"type":51,"tag":311,"props":3430,"children":3432},{"class":313,"line":3431},46,[3433,3438,3442,3446,3451,3455],{"type":51,"tag":311,"props":3434,"children":3435},{"style":505},[3436],{"type":57,"value":3437},"          pink",{"type":51,"tag":311,"props":3439,"children":3440},{"style":499},[3441],{"type":57,"value":1876},{"type":51,"tag":311,"props":3443,"children":3444},{"style":499},[3445],{"type":57,"value":2407},{"type":51,"tag":311,"props":3447,"children":3448},{"style":324},[3449],{"type":57,"value":3450},"#EC4899",{"type":51,"tag":311,"props":3452,"children":3453},{"style":499},[3454],{"type":57,"value":2389},{"type":51,"tag":311,"props":3456,"children":3457},{"style":499},[3458],{"type":57,"value":1894},{"type":51,"tag":311,"props":3460,"children":3462},{"class":313,"line":3461},47,[3463,3468,3472,3476,3481,3485],{"type":51,"tag":311,"props":3464,"children":3465},{"style":505},[3466],{"type":57,"value":3467},"          cyan",{"type":51,"tag":311,"props":3469,"children":3470},{"style":499},[3471],{"type":57,"value":1876},{"type":51,"tag":311,"props":3473,"children":3474},{"style":499},[3475],{"type":57,"value":2407},{"type":51,"tag":311,"props":3477,"children":3478},{"style":324},[3479],{"type":57,"value":3480},"#06B6D4",{"type":51,"tag":311,"props":3482,"children":3483},{"style":499},[3484],{"type":57,"value":2389},{"type":51,"tag":311,"props":3486,"children":3487},{"style":499},[3488],{"type":57,"value":1894},{"type":51,"tag":311,"props":3490,"children":3492},{"class":313,"line":3491},48,[3493],{"type":51,"tag":311,"props":3494,"children":3495},{"style":499},[3496],{"type":57,"value":2708},{"type":51,"tag":311,"props":3498,"children":3500},{"class":313,"line":3499},49,[3501],{"type":51,"tag":311,"props":3502,"children":3503},{"style":499},[3504],{"type":57,"value":2552},{"type":51,"tag":311,"props":3506,"children":3508},{"class":313,"line":3507},50,[3509,3514,3518],{"type":51,"tag":311,"props":3510,"children":3511},{"style":505},[3512],{"type":57,"value":3513},"      borderRadius",{"type":51,"tag":311,"props":3515,"children":3516},{"style":499},[3517],{"type":57,"value":1876},{"type":51,"tag":311,"props":3519,"children":3520},{"style":499},[3521],{"type":57,"value":2367},{"type":51,"tag":311,"props":3523,"children":3525},{"class":313,"line":3524},51,[3526,3531,3535,3539,3544,3548],{"type":51,"tag":311,"props":3527,"children":3528},{"style":505},[3529],{"type":57,"value":3530},"        DEFAULT",{"type":51,"tag":311,"props":3532,"children":3533},{"style":499},[3534],{"type":57,"value":1876},{"type":51,"tag":311,"props":3536,"children":3537},{"style":499},[3538],{"type":57,"value":2407},{"type":51,"tag":311,"props":3540,"children":3541},{"style":324},[3542],{"type":57,"value":3543},"0.5rem",{"type":51,"tag":311,"props":3545,"children":3546},{"style":499},[3547],{"type":57,"value":2389},{"type":51,"tag":311,"props":3549,"children":3550},{"style":499},[3551],{"type":57,"value":1894},{"type":51,"tag":311,"props":3553,"children":3555},{"class":313,"line":3554},52,[3556,3561,3565,3569,3574,3578],{"type":51,"tag":311,"props":3557,"children":3558},{"style":505},[3559],{"type":57,"value":3560},"        lg",{"type":51,"tag":311,"props":3562,"children":3563},{"style":499},[3564],{"type":57,"value":1876},{"type":51,"tag":311,"props":3566,"children":3567},{"style":499},[3568],{"type":57,"value":2407},{"type":51,"tag":311,"props":3570,"children":3571},{"style":324},[3572],{"type":57,"value":3573},"0.75rem",{"type":51,"tag":311,"props":3575,"children":3576},{"style":499},[3577],{"type":57,"value":2389},{"type":51,"tag":311,"props":3579,"children":3580},{"style":499},[3581],{"type":57,"value":1894},{"type":51,"tag":311,"props":3583,"children":3585},{"class":313,"line":3584},53,[3586,3591,3595,3599,3604,3608],{"type":51,"tag":311,"props":3587,"children":3588},{"style":505},[3589],{"type":57,"value":3590},"        xl",{"type":51,"tag":311,"props":3592,"children":3593},{"style":499},[3594],{"type":57,"value":1876},{"type":51,"tag":311,"props":3596,"children":3597},{"style":499},[3598],{"type":57,"value":2407},{"type":51,"tag":311,"props":3600,"children":3601},{"style":324},[3602],{"type":57,"value":3603},"1rem",{"type":51,"tag":311,"props":3605,"children":3606},{"style":499},[3607],{"type":57,"value":2389},{"type":51,"tag":311,"props":3609,"children":3610},{"style":499},[3611],{"type":57,"value":1894},{"type":51,"tag":311,"props":3613,"children":3615},{"class":313,"line":3614},54,[3616],{"type":51,"tag":311,"props":3617,"children":3618},{"style":499},[3619],{"type":57,"value":2552},{"type":51,"tag":311,"props":3621,"children":3623},{"class":313,"line":3622},55,[3624,3629,3633],{"type":51,"tag":311,"props":3625,"children":3626},{"style":505},[3627],{"type":57,"value":3628},"      boxShadow",{"type":51,"tag":311,"props":3630,"children":3631},{"style":499},[3632],{"type":57,"value":1876},{"type":51,"tag":311,"props":3634,"children":3635},{"style":499},[3636],{"type":57,"value":2367},{"type":51,"tag":311,"props":3638,"children":3640},{"class":313,"line":3639},56,[3641,3646,3650,3654,3659,3663],{"type":51,"tag":311,"props":3642,"children":3643},{"style":505},[3644],{"type":57,"value":3645},"        glow",{"type":51,"tag":311,"props":3647,"children":3648},{"style":499},[3649],{"type":57,"value":1876},{"type":51,"tag":311,"props":3651,"children":3652},{"style":499},[3653],{"type":57,"value":2407},{"type":51,"tag":311,"props":3655,"children":3656},{"style":324},[3657],{"type":57,"value":3658},"0 0 20px rgba(130, 81, 238, 0.3)",{"type":51,"tag":311,"props":3660,"children":3661},{"style":499},[3662],{"type":57,"value":2389},{"type":51,"tag":311,"props":3664,"children":3665},{"style":499},[3666],{"type":57,"value":1894},{"type":51,"tag":311,"props":3668,"children":3670},{"class":313,"line":3669},57,[3671,3676,3681,3685,3689,3693,3698,3702],{"type":51,"tag":311,"props":3672,"children":3673},{"style":499},[3674],{"type":57,"value":3675},"        '",{"type":51,"tag":311,"props":3677,"children":3678},{"style":505},[3679],{"type":57,"value":3680},"glow-lg",{"type":51,"tag":311,"props":3682,"children":3683},{"style":499},[3684],{"type":57,"value":2389},{"type":51,"tag":311,"props":3686,"children":3687},{"style":499},[3688],{"type":57,"value":1876},{"type":51,"tag":311,"props":3690,"children":3691},{"style":499},[3692],{"type":57,"value":2407},{"type":51,"tag":311,"props":3694,"children":3695},{"style":324},[3696],{"type":57,"value":3697},"0 0 40px rgba(130, 81, 238, 0.4)",{"type":51,"tag":311,"props":3699,"children":3700},{"style":499},[3701],{"type":57,"value":2389},{"type":51,"tag":311,"props":3703,"children":3704},{"style":499},[3705],{"type":57,"value":1894},{"type":51,"tag":311,"props":3707,"children":3709},{"class":313,"line":3708},58,[3710],{"type":51,"tag":311,"props":3711,"children":3712},{"style":499},[3713],{"type":57,"value":2552},{"type":51,"tag":311,"props":3715,"children":3717},{"class":313,"line":3716},59,[3718,3723,3727],{"type":51,"tag":311,"props":3719,"children":3720},{"style":505},[3721],{"type":57,"value":3722},"      backdropBlur",{"type":51,"tag":311,"props":3724,"children":3725},{"style":499},[3726],{"type":57,"value":1876},{"type":51,"tag":311,"props":3728,"children":3729},{"style":499},[3730],{"type":57,"value":2367},{"type":51,"tag":311,"props":3732,"children":3734},{"class":313,"line":3733},60,[3735,3740,3744,3748,3753,3757],{"type":51,"tag":311,"props":3736,"children":3737},{"style":505},[3738],{"type":57,"value":3739},"        xs",{"type":51,"tag":311,"props":3741,"children":3742},{"style":499},[3743],{"type":57,"value":1876},{"type":51,"tag":311,"props":3745,"children":3746},{"style":499},[3747],{"type":57,"value":2407},{"type":51,"tag":311,"props":3749,"children":3750},{"style":324},[3751],{"type":57,"value":3752},"2px",{"type":51,"tag":311,"props":3754,"children":3755},{"style":499},[3756],{"type":57,"value":2389},{"type":51,"tag":311,"props":3758,"children":3759},{"style":499},[3760],{"type":57,"value":1894},{"type":51,"tag":311,"props":3762,"children":3764},{"class":313,"line":3763},61,[3765],{"type":51,"tag":311,"props":3766,"children":3767},{"style":499},[3768],{"type":57,"value":2552},{"type":51,"tag":311,"props":3770,"children":3772},{"class":313,"line":3771},62,[3773,3778,3782],{"type":51,"tag":311,"props":3774,"children":3775},{"style":505},[3776],{"type":57,"value":3777},"      animation",{"type":51,"tag":311,"props":3779,"children":3780},{"style":499},[3781],{"type":57,"value":1876},{"type":51,"tag":311,"props":3783,"children":3784},{"style":499},[3785],{"type":57,"value":2367},{"type":51,"tag":311,"props":3787,"children":3789},{"class":313,"line":3788},63,[3790,3794,3799,3803,3807,3811,3816,3820],{"type":51,"tag":311,"props":3791,"children":3792},{"style":499},[3793],{"type":57,"value":3675},{"type":51,"tag":311,"props":3795,"children":3796},{"style":505},[3797],{"type":57,"value":3798},"fade-in",{"type":51,"tag":311,"props":3800,"children":3801},{"style":499},[3802],{"type":57,"value":2389},{"type":51,"tag":311,"props":3804,"children":3805},{"style":499},[3806],{"type":57,"value":1876},{"type":51,"tag":311,"props":3808,"children":3809},{"style":499},[3810],{"type":57,"value":2407},{"type":51,"tag":311,"props":3812,"children":3813},{"style":324},[3814],{"type":57,"value":3815},"fadeIn 0.3s ease-out",{"type":51,"tag":311,"props":3817,"children":3818},{"style":499},[3819],{"type":57,"value":2389},{"type":51,"tag":311,"props":3821,"children":3822},{"style":499},[3823],{"type":57,"value":1894},{"type":51,"tag":311,"props":3825,"children":3827},{"class":313,"line":3826},64,[3828,3832,3837,3841,3845,3849,3854,3858],{"type":51,"tag":311,"props":3829,"children":3830},{"style":499},[3831],{"type":57,"value":3675},{"type":51,"tag":311,"props":3833,"children":3834},{"style":505},[3835],{"type":57,"value":3836},"slide-up",{"type":51,"tag":311,"props":3838,"children":3839},{"style":499},[3840],{"type":57,"value":2389},{"type":51,"tag":311,"props":3842,"children":3843},{"style":499},[3844],{"type":57,"value":1876},{"type":51,"tag":311,"props":3846,"children":3847},{"style":499},[3848],{"type":57,"value":2407},{"type":51,"tag":311,"props":3850,"children":3851},{"style":324},[3852],{"type":57,"value":3853},"slideUp 0.3s ease-out",{"type":51,"tag":311,"props":3855,"children":3856},{"style":499},[3857],{"type":57,"value":2389},{"type":51,"tag":311,"props":3859,"children":3860},{"style":499},[3861],{"type":57,"value":1894},{"type":51,"tag":311,"props":3863,"children":3865},{"class":313,"line":3864},65,[3866,3870,3875,3879,3883,3887,3892,3896],{"type":51,"tag":311,"props":3867,"children":3868},{"style":499},[3869],{"type":57,"value":3675},{"type":51,"tag":311,"props":3871,"children":3872},{"style":505},[3873],{"type":57,"value":3874},"slide-down",{"type":51,"tag":311,"props":3876,"children":3877},{"style":499},[3878],{"type":57,"value":2389},{"type":51,"tag":311,"props":3880,"children":3881},{"style":499},[3882],{"type":57,"value":1876},{"type":51,"tag":311,"props":3884,"children":3885},{"style":499},[3886],{"type":57,"value":2407},{"type":51,"tag":311,"props":3888,"children":3889},{"style":324},[3890],{"type":57,"value":3891},"slideDown 0.3s ease-out",{"type":51,"tag":311,"props":3893,"children":3894},{"style":499},[3895],{"type":57,"value":2389},{"type":51,"tag":311,"props":3897,"children":3898},{"style":499},[3899],{"type":57,"value":1894},{"type":51,"tag":311,"props":3901,"children":3903},{"class":313,"line":3902},66,[3904],{"type":51,"tag":311,"props":3905,"children":3906},{"style":499},[3907],{"type":57,"value":2552},{"type":51,"tag":311,"props":3909,"children":3911},{"class":313,"line":3910},67,[3912,3917,3921],{"type":51,"tag":311,"props":3913,"children":3914},{"style":505},[3915],{"type":57,"value":3916},"      keyframes",{"type":51,"tag":311,"props":3918,"children":3919},{"style":499},[3920],{"type":57,"value":1876},{"type":51,"tag":311,"props":3922,"children":3923},{"style":499},[3924],{"type":57,"value":2367},{"type":51,"tag":311,"props":3926,"children":3928},{"class":313,"line":3927},68,[3929,3934,3938],{"type":51,"tag":311,"props":3930,"children":3931},{"style":505},[3932],{"type":57,"value":3933},"        fadeIn",{"type":51,"tag":311,"props":3935,"children":3936},{"style":499},[3937],{"type":57,"value":1876},{"type":51,"tag":311,"props":3939,"children":3940},{"style":499},[3941],{"type":57,"value":2367},{"type":51,"tag":311,"props":3943,"children":3945},{"class":313,"line":3944},69,[3946,3951,3956,3960,3964,3968,3973,3977,3981,3986,3990],{"type":51,"tag":311,"props":3947,"children":3948},{"style":499},[3949],{"type":57,"value":3950},"          '",{"type":51,"tag":311,"props":3952,"children":3953},{"style":505},[3954],{"type":57,"value":3955},"0%",{"type":51,"tag":311,"props":3957,"children":3958},{"style":499},[3959],{"type":57,"value":2389},{"type":51,"tag":311,"props":3961,"children":3962},{"style":499},[3963],{"type":57,"value":1876},{"type":51,"tag":311,"props":3965,"children":3966},{"style":499},[3967],{"type":57,"value":2333},{"type":51,"tag":311,"props":3969,"children":3970},{"style":505},[3971],{"type":57,"value":3972}," opacity",{"type":51,"tag":311,"props":3974,"children":3975},{"style":499},[3976],{"type":57,"value":1876},{"type":51,"tag":311,"props":3978,"children":3979},{"style":499},[3980],{"type":57,"value":2407},{"type":51,"tag":311,"props":3982,"children":3983},{"style":324},[3984],{"type":57,"value":3985},"0",{"type":51,"tag":311,"props":3987,"children":3988},{"style":499},[3989],{"type":57,"value":2389},{"type":51,"tag":311,"props":3991,"children":3992},{"style":499},[3993],{"type":57,"value":2066},{"type":51,"tag":311,"props":3995,"children":3997},{"class":313,"line":3996},70,[3998,4002,4007,4011,4015,4019,4023,4027,4031,4036,4040],{"type":51,"tag":311,"props":3999,"children":4000},{"style":499},[4001],{"type":57,"value":3950},{"type":51,"tag":311,"props":4003,"children":4004},{"style":505},[4005],{"type":57,"value":4006},"100%",{"type":51,"tag":311,"props":4008,"children":4009},{"style":499},[4010],{"type":57,"value":2389},{"type":51,"tag":311,"props":4012,"children":4013},{"style":499},[4014],{"type":57,"value":1876},{"type":51,"tag":311,"props":4016,"children":4017},{"style":499},[4018],{"type":57,"value":2333},{"type":51,"tag":311,"props":4020,"children":4021},{"style":505},[4022],{"type":57,"value":3972},{"type":51,"tag":311,"props":4024,"children":4025},{"style":499},[4026],{"type":57,"value":1876},{"type":51,"tag":311,"props":4028,"children":4029},{"style":499},[4030],{"type":57,"value":2407},{"type":51,"tag":311,"props":4032,"children":4033},{"style":324},[4034],{"type":57,"value":4035},"1",{"type":51,"tag":311,"props":4037,"children":4038},{"style":499},[4039],{"type":57,"value":2389},{"type":51,"tag":311,"props":4041,"children":4042},{"style":499},[4043],{"type":57,"value":2066},{"type":51,"tag":311,"props":4045,"children":4047},{"class":313,"line":4046},71,[4048],{"type":51,"tag":311,"props":4049,"children":4050},{"style":499},[4051],{"type":57,"value":2708},{"type":51,"tag":311,"props":4053,"children":4055},{"class":313,"line":4054},72,[4056,4061,4065],{"type":51,"tag":311,"props":4057,"children":4058},{"style":505},[4059],{"type":57,"value":4060},"        slideUp",{"type":51,"tag":311,"props":4062,"children":4063},{"style":499},[4064],{"type":57,"value":1876},{"type":51,"tag":311,"props":4066,"children":4067},{"style":499},[4068],{"type":57,"value":2367},{"type":51,"tag":311,"props":4070,"children":4072},{"class":313,"line":4071},73,[4073,4077,4081,4085,4089,4093,4097,4101,4105,4109,4113,4117,4122,4126,4130,4135,4139],{"type":51,"tag":311,"props":4074,"children":4075},{"style":499},[4076],{"type":57,"value":3950},{"type":51,"tag":311,"props":4078,"children":4079},{"style":505},[4080],{"type":57,"value":3955},{"type":51,"tag":311,"props":4082,"children":4083},{"style":499},[4084],{"type":57,"value":2389},{"type":51,"tag":311,"props":4086,"children":4087},{"style":499},[4088],{"type":57,"value":1876},{"type":51,"tag":311,"props":4090,"children":4091},{"style":499},[4092],{"type":57,"value":2333},{"type":51,"tag":311,"props":4094,"children":4095},{"style":505},[4096],{"type":57,"value":3972},{"type":51,"tag":311,"props":4098,"children":4099},{"style":499},[4100],{"type":57,"value":1876},{"type":51,"tag":311,"props":4102,"children":4103},{"style":499},[4104],{"type":57,"value":2407},{"type":51,"tag":311,"props":4106,"children":4107},{"style":324},[4108],{"type":57,"value":3985},{"type":51,"tag":311,"props":4110,"children":4111},{"style":499},[4112],{"type":57,"value":2389},{"type":51,"tag":311,"props":4114,"children":4115},{"style":499},[4116],{"type":57,"value":1998},{"type":51,"tag":311,"props":4118,"children":4119},{"style":505},[4120],{"type":57,"value":4121}," transform",{"type":51,"tag":311,"props":4123,"children":4124},{"style":499},[4125],{"type":57,"value":1876},{"type":51,"tag":311,"props":4127,"children":4128},{"style":499},[4129],{"type":57,"value":2407},{"type":51,"tag":311,"props":4131,"children":4132},{"style":324},[4133],{"type":57,"value":4134},"translateY(10px)",{"type":51,"tag":311,"props":4136,"children":4137},{"style":499},[4138],{"type":57,"value":2389},{"type":51,"tag":311,"props":4140,"children":4141},{"style":499},[4142],{"type":57,"value":2066},{"type":51,"tag":311,"props":4144,"children":4146},{"class":313,"line":4145},74,[4147,4151,4155,4159,4163,4167,4171,4175,4179,4183,4187,4191,4195,4199,4203,4208,4212],{"type":51,"tag":311,"props":4148,"children":4149},{"style":499},[4150],{"type":57,"value":3950},{"type":51,"tag":311,"props":4152,"children":4153},{"style":505},[4154],{"type":57,"value":4006},{"type":51,"tag":311,"props":4156,"children":4157},{"style":499},[4158],{"type":57,"value":2389},{"type":51,"tag":311,"props":4160,"children":4161},{"style":499},[4162],{"type":57,"value":1876},{"type":51,"tag":311,"props":4164,"children":4165},{"style":499},[4166],{"type":57,"value":2333},{"type":51,"tag":311,"props":4168,"children":4169},{"style":505},[4170],{"type":57,"value":3972},{"type":51,"tag":311,"props":4172,"children":4173},{"style":499},[4174],{"type":57,"value":1876},{"type":51,"tag":311,"props":4176,"children":4177},{"style":499},[4178],{"type":57,"value":2407},{"type":51,"tag":311,"props":4180,"children":4181},{"style":324},[4182],{"type":57,"value":4035},{"type":51,"tag":311,"props":4184,"children":4185},{"style":499},[4186],{"type":57,"value":2389},{"type":51,"tag":311,"props":4188,"children":4189},{"style":499},[4190],{"type":57,"value":1998},{"type":51,"tag":311,"props":4192,"children":4193},{"style":505},[4194],{"type":57,"value":4121},{"type":51,"tag":311,"props":4196,"children":4197},{"style":499},[4198],{"type":57,"value":1876},{"type":51,"tag":311,"props":4200,"children":4201},{"style":499},[4202],{"type":57,"value":2407},{"type":51,"tag":311,"props":4204,"children":4205},{"style":324},[4206],{"type":57,"value":4207},"translateY(0)",{"type":51,"tag":311,"props":4209,"children":4210},{"style":499},[4211],{"type":57,"value":2389},{"type":51,"tag":311,"props":4213,"children":4214},{"style":499},[4215],{"type":57,"value":2066},{"type":51,"tag":311,"props":4217,"children":4219},{"class":313,"line":4218},75,[4220],{"type":51,"tag":311,"props":4221,"children":4222},{"style":499},[4223],{"type":57,"value":2708},{"type":51,"tag":311,"props":4225,"children":4227},{"class":313,"line":4226},76,[4228,4233,4237],{"type":51,"tag":311,"props":4229,"children":4230},{"style":505},[4231],{"type":57,"value":4232},"        slideDown",{"type":51,"tag":311,"props":4234,"children":4235},{"style":499},[4236],{"type":57,"value":1876},{"type":51,"tag":311,"props":4238,"children":4239},{"style":499},[4240],{"type":57,"value":2367},{"type":51,"tag":311,"props":4242,"children":4244},{"class":313,"line":4243},77,[4245,4249,4253,4257,4261,4265,4269,4273,4277,4281,4285,4289,4293,4297,4301,4306,4310],{"type":51,"tag":311,"props":4246,"children":4247},{"style":499},[4248],{"type":57,"value":3950},{"type":51,"tag":311,"props":4250,"children":4251},{"style":505},[4252],{"type":57,"value":3955},{"type":51,"tag":311,"props":4254,"children":4255},{"style":499},[4256],{"type":57,"value":2389},{"type":51,"tag":311,"props":4258,"children":4259},{"style":499},[4260],{"type":57,"value":1876},{"type":51,"tag":311,"props":4262,"children":4263},{"style":499},[4264],{"type":57,"value":2333},{"type":51,"tag":311,"props":4266,"children":4267},{"style":505},[4268],{"type":57,"value":3972},{"type":51,"tag":311,"props":4270,"children":4271},{"style":499},[4272],{"type":57,"value":1876},{"type":51,"tag":311,"props":4274,"children":4275},{"style":499},[4276],{"type":57,"value":2407},{"type":51,"tag":311,"props":4278,"children":4279},{"style":324},[4280],{"type":57,"value":3985},{"type":51,"tag":311,"props":4282,"children":4283},{"style":499},[4284],{"type":57,"value":2389},{"type":51,"tag":311,"props":4286,"children":4287},{"style":499},[4288],{"type":57,"value":1998},{"type":51,"tag":311,"props":4290,"children":4291},{"style":505},[4292],{"type":57,"value":4121},{"type":51,"tag":311,"props":4294,"children":4295},{"style":499},[4296],{"type":57,"value":1876},{"type":51,"tag":311,"props":4298,"children":4299},{"style":499},[4300],{"type":57,"value":2407},{"type":51,"tag":311,"props":4302,"children":4303},{"style":324},[4304],{"type":57,"value":4305},"translateY(-10px)",{"type":51,"tag":311,"props":4307,"children":4308},{"style":499},[4309],{"type":57,"value":2389},{"type":51,"tag":311,"props":4311,"children":4312},{"style":499},[4313],{"type":57,"value":2066},{"type":51,"tag":311,"props":4315,"children":4317},{"class":313,"line":4316},78,[4318,4322,4326,4330,4334,4338,4342,4346,4350,4354,4358,4362,4366,4370,4374,4378,4382],{"type":51,"tag":311,"props":4319,"children":4320},{"style":499},[4321],{"type":57,"value":3950},{"type":51,"tag":311,"props":4323,"children":4324},{"style":505},[4325],{"type":57,"value":4006},{"type":51,"tag":311,"props":4327,"children":4328},{"style":499},[4329],{"type":57,"value":2389},{"type":51,"tag":311,"props":4331,"children":4332},{"style":499},[4333],{"type":57,"value":1876},{"type":51,"tag":311,"props":4335,"children":4336},{"style":499},[4337],{"type":57,"value":2333},{"type":51,"tag":311,"props":4339,"children":4340},{"style":505},[4341],{"type":57,"value":3972},{"type":51,"tag":311,"props":4343,"children":4344},{"style":499},[4345],{"type":57,"value":1876},{"type":51,"tag":311,"props":4347,"children":4348},{"style":499},[4349],{"type":57,"value":2407},{"type":51,"tag":311,"props":4351,"children":4352},{"style":324},[4353],{"type":57,"value":4035},{"type":51,"tag":311,"props":4355,"children":4356},{"style":499},[4357],{"type":57,"value":2389},{"type":51,"tag":311,"props":4359,"children":4360},{"style":499},[4361],{"type":57,"value":1998},{"type":51,"tag":311,"props":4363,"children":4364},{"style":505},[4365],{"type":57,"value":4121},{"type":51,"tag":311,"props":4367,"children":4368},{"style":499},[4369],{"type":57,"value":1876},{"type":51,"tag":311,"props":4371,"children":4372},{"style":499},[4373],{"type":57,"value":2407},{"type":51,"tag":311,"props":4375,"children":4376},{"style":324},[4377],{"type":57,"value":4207},{"type":51,"tag":311,"props":4379,"children":4380},{"style":499},[4381],{"type":57,"value":2389},{"type":51,"tag":311,"props":4383,"children":4384},{"style":499},[4385],{"type":57,"value":2066},{"type":51,"tag":311,"props":4387,"children":4389},{"class":313,"line":4388},79,[4390],{"type":51,"tag":311,"props":4391,"children":4392},{"style":499},[4393],{"type":57,"value":2708},{"type":51,"tag":311,"props":4395,"children":4397},{"class":313,"line":4396},80,[4398],{"type":51,"tag":311,"props":4399,"children":4400},{"style":499},[4401],{"type":57,"value":2552},{"type":51,"tag":311,"props":4403,"children":4405},{"class":313,"line":4404},81,[4406],{"type":51,"tag":311,"props":4407,"children":4408},{"style":692},[4409],{"type":57,"value":4410},"      \u002F\u002F Mobile: safe area insets for notched devices\n",{"type":51,"tag":311,"props":4412,"children":4414},{"class":313,"line":4413},82,[4415,4420,4424],{"type":51,"tag":311,"props":4416,"children":4417},{"style":505},[4418],{"type":57,"value":4419},"      spacing",{"type":51,"tag":311,"props":4421,"children":4422},{"style":499},[4423],{"type":57,"value":1876},{"type":51,"tag":311,"props":4425,"children":4426},{"style":499},[4427],{"type":57,"value":2367},{"type":51,"tag":311,"props":4429,"children":4431},{"class":313,"line":4430},83,[4432,4436,4441,4445,4449,4453,4458,4462],{"type":51,"tag":311,"props":4433,"children":4434},{"style":499},[4435],{"type":57,"value":3675},{"type":51,"tag":311,"props":4437,"children":4438},{"style":505},[4439],{"type":57,"value":4440},"safe-top",{"type":51,"tag":311,"props":4442,"children":4443},{"style":499},[4444],{"type":57,"value":2389},{"type":51,"tag":311,"props":4446,"children":4447},{"style":499},[4448],{"type":57,"value":1876},{"type":51,"tag":311,"props":4450,"children":4451},{"style":499},[4452],{"type":57,"value":2407},{"type":51,"tag":311,"props":4454,"children":4455},{"style":324},[4456],{"type":57,"value":4457},"env(safe-area-inset-top)",{"type":51,"tag":311,"props":4459,"children":4460},{"style":499},[4461],{"type":57,"value":2389},{"type":51,"tag":311,"props":4463,"children":4464},{"style":499},[4465],{"type":57,"value":1894},{"type":51,"tag":311,"props":4467,"children":4469},{"class":313,"line":4468},84,[4470,4474,4479,4483,4487,4491,4496,4500],{"type":51,"tag":311,"props":4471,"children":4472},{"style":499},[4473],{"type":57,"value":3675},{"type":51,"tag":311,"props":4475,"children":4476},{"style":505},[4477],{"type":57,"value":4478},"safe-bottom",{"type":51,"tag":311,"props":4480,"children":4481},{"style":499},[4482],{"type":57,"value":2389},{"type":51,"tag":311,"props":4484,"children":4485},{"style":499},[4486],{"type":57,"value":1876},{"type":51,"tag":311,"props":4488,"children":4489},{"style":499},[4490],{"type":57,"value":2407},{"type":51,"tag":311,"props":4492,"children":4493},{"style":324},[4494],{"type":57,"value":4495},"env(safe-area-inset-bottom)",{"type":51,"tag":311,"props":4497,"children":4498},{"style":499},[4499],{"type":57,"value":2389},{"type":51,"tag":311,"props":4501,"children":4502},{"style":499},[4503],{"type":57,"value":1894},{"type":51,"tag":311,"props":4505,"children":4507},{"class":313,"line":4506},85,[4508,4512,4517,4521,4525,4529,4534,4538],{"type":51,"tag":311,"props":4509,"children":4510},{"style":499},[4511],{"type":57,"value":3675},{"type":51,"tag":311,"props":4513,"children":4514},{"style":505},[4515],{"type":57,"value":4516},"safe-left",{"type":51,"tag":311,"props":4518,"children":4519},{"style":499},[4520],{"type":57,"value":2389},{"type":51,"tag":311,"props":4522,"children":4523},{"style":499},[4524],{"type":57,"value":1876},{"type":51,"tag":311,"props":4526,"children":4527},{"style":499},[4528],{"type":57,"value":2407},{"type":51,"tag":311,"props":4530,"children":4531},{"style":324},[4532],{"type":57,"value":4533},"env(safe-area-inset-left)",{"type":51,"tag":311,"props":4535,"children":4536},{"style":499},[4537],{"type":57,"value":2389},{"type":51,"tag":311,"props":4539,"children":4540},{"style":499},[4541],{"type":57,"value":1894},{"type":51,"tag":311,"props":4543,"children":4545},{"class":313,"line":4544},86,[4546,4550,4555,4559,4563,4567,4572,4576],{"type":51,"tag":311,"props":4547,"children":4548},{"style":499},[4549],{"type":57,"value":3675},{"type":51,"tag":311,"props":4551,"children":4552},{"style":505},[4553],{"type":57,"value":4554},"safe-right",{"type":51,"tag":311,"props":4556,"children":4557},{"style":499},[4558],{"type":57,"value":2389},{"type":51,"tag":311,"props":4560,"children":4561},{"style":499},[4562],{"type":57,"value":1876},{"type":51,"tag":311,"props":4564,"children":4565},{"style":499},[4566],{"type":57,"value":2407},{"type":51,"tag":311,"props":4568,"children":4569},{"style":324},[4570],{"type":57,"value":4571},"env(safe-area-inset-right)",{"type":51,"tag":311,"props":4573,"children":4574},{"style":499},[4575],{"type":57,"value":2389},{"type":51,"tag":311,"props":4577,"children":4578},{"style":499},[4579],{"type":57,"value":1894},{"type":51,"tag":311,"props":4581,"children":4583},{"class":313,"line":4582},87,[4584],{"type":51,"tag":311,"props":4585,"children":4586},{"style":499},[4587],{"type":57,"value":2552},{"type":51,"tag":311,"props":4589,"children":4591},{"class":313,"line":4590},88,[4592],{"type":51,"tag":311,"props":4593,"children":4594},{"style":692},[4595],{"type":57,"value":4596},"      \u002F\u002F Mobile: minimum touch target sizes (44px per Apple\u002FGoogle guidelines)\n",{"type":51,"tag":311,"props":4598,"children":4600},{"class":313,"line":4599},89,[4601,4606,4610],{"type":51,"tag":311,"props":4602,"children":4603},{"style":505},[4604],{"type":57,"value":4605},"      minHeight",{"type":51,"tag":311,"props":4607,"children":4608},{"style":499},[4609],{"type":57,"value":1876},{"type":51,"tag":311,"props":4611,"children":4612},{"style":499},[4613],{"type":57,"value":2367},{"type":51,"tag":311,"props":4615,"children":4617},{"class":313,"line":4616},90,[4618,4622,4627,4631,4635,4639,4644,4648],{"type":51,"tag":311,"props":4619,"children":4620},{"style":499},[4621],{"type":57,"value":3675},{"type":51,"tag":311,"props":4623,"children":4624},{"style":505},[4625],{"type":57,"value":4626},"touch",{"type":51,"tag":311,"props":4628,"children":4629},{"style":499},[4630],{"type":57,"value":2389},{"type":51,"tag":311,"props":4632,"children":4633},{"style":499},[4634],{"type":57,"value":1876},{"type":51,"tag":311,"props":4636,"children":4637},{"style":499},[4638],{"type":57,"value":2407},{"type":51,"tag":311,"props":4640,"children":4641},{"style":324},[4642],{"type":57,"value":4643},"44px",{"type":51,"tag":311,"props":4645,"children":4646},{"style":499},[4647],{"type":57,"value":2389},{"type":51,"tag":311,"props":4649,"children":4650},{"style":499},[4651],{"type":57,"value":1894},{"type":51,"tag":311,"props":4653,"children":4655},{"class":313,"line":4654},91,[4656],{"type":51,"tag":311,"props":4657,"children":4658},{"style":499},[4659],{"type":57,"value":2552},{"type":51,"tag":311,"props":4661,"children":4663},{"class":313,"line":4662},92,[4664,4669,4673],{"type":51,"tag":311,"props":4665,"children":4666},{"style":505},[4667],{"type":57,"value":4668},"      minWidth",{"type":51,"tag":311,"props":4670,"children":4671},{"style":499},[4672],{"type":57,"value":1876},{"type":51,"tag":311,"props":4674,"children":4675},{"style":499},[4676],{"type":57,"value":2367},{"type":51,"tag":311,"props":4678,"children":4680},{"class":313,"line":4679},93,[4681,4685,4689,4693,4697,4701,4705,4709],{"type":51,"tag":311,"props":4682,"children":4683},{"style":499},[4684],{"type":57,"value":3675},{"type":51,"tag":311,"props":4686,"children":4687},{"style":505},[4688],{"type":57,"value":4626},{"type":51,"tag":311,"props":4690,"children":4691},{"style":499},[4692],{"type":57,"value":2389},{"type":51,"tag":311,"props":4694,"children":4695},{"style":499},[4696],{"type":57,"value":1876},{"type":51,"tag":311,"props":4698,"children":4699},{"style":499},[4700],{"type":57,"value":2407},{"type":51,"tag":311,"props":4702,"children":4703},{"style":324},[4704],{"type":57,"value":4643},{"type":51,"tag":311,"props":4706,"children":4707},{"style":499},[4708],{"type":57,"value":2389},{"type":51,"tag":311,"props":4710,"children":4711},{"style":499},[4712],{"type":57,"value":1894},{"type":51,"tag":311,"props":4714,"children":4716},{"class":313,"line":4715},94,[4717],{"type":51,"tag":311,"props":4718,"children":4719},{"style":499},[4720],{"type":57,"value":2552},{"type":51,"tag":311,"props":4722,"children":4724},{"class":313,"line":4723},95,[4725],{"type":51,"tag":311,"props":4726,"children":4727},{"style":499},[4728],{"type":57,"value":4729},"    },\n",{"type":51,"tag":311,"props":4731,"children":4733},{"class":313,"line":4732},96,[4734],{"type":51,"tag":311,"props":4735,"children":4736},{"style":499},[4737],{"type":57,"value":4738},"  },\n",{"type":51,"tag":311,"props":4740,"children":4742},{"class":313,"line":4741},97,[4743,4748,4752,4757],{"type":51,"tag":311,"props":4744,"children":4745},{"style":505},[4746],{"type":57,"value":4747},"  plugins",{"type":51,"tag":311,"props":4749,"children":4750},{"style":499},[4751],{"type":57,"value":1876},{"type":51,"tag":311,"props":4753,"children":4754},{"style":682},[4755],{"type":57,"value":4756}," []",{"type":51,"tag":311,"props":4758,"children":4759},{"style":499},[4760],{"type":57,"value":1894},{"type":51,"tag":311,"props":4762,"children":4764},{"class":313,"line":4763},98,[4765],{"type":51,"tag":311,"props":4766,"children":4767},{"style":499},[4768],{"type":57,"value":4769},"};\n",{"type":51,"tag":474,"props":4771,"children":4773},{"id":4772},"postcssconfigjs",[4774],{"type":57,"value":4775},"postcss.config.js",{"type":51,"tag":300,"props":4777,"children":4779},{"className":2303,"code":4778,"language":2305,"meta":305,"style":305},"export default {\n  plugins: {\n    tailwindcss: {},\n    autoprefixer: {},\n  },\n};\n",[4780],{"type":51,"tag":126,"props":4781,"children":4782},{"__ignoreMap":305},[4783,4798,4813,4830,4846,4853],{"type":51,"tag":311,"props":4784,"children":4785},{"class":313,"line":314},[4786,4790,4794],{"type":51,"tag":311,"props":4787,"children":4788},{"style":2320},[4789],{"type":57,"value":2357},{"type":51,"tag":311,"props":4791,"children":4792},{"style":2320},[4793],{"type":57,"value":2362},{"type":51,"tag":311,"props":4795,"children":4796},{"style":499},[4797],{"type":57,"value":2367},{"type":51,"tag":311,"props":4799,"children":4800},{"class":313,"line":355},[4801,4805,4809],{"type":51,"tag":311,"props":4802,"children":4803},{"style":505},[4804],{"type":57,"value":4747},{"type":51,"tag":311,"props":4806,"children":4807},{"style":499},[4808],{"type":57,"value":1876},{"type":51,"tag":311,"props":4810,"children":4811},{"style":499},[4812],{"type":57,"value":2367},{"type":51,"tag":311,"props":4814,"children":4815},{"class":313,"line":370},[4816,4821,4825],{"type":51,"tag":311,"props":4817,"children":4818},{"style":505},[4819],{"type":57,"value":4820},"    tailwindcss",{"type":51,"tag":311,"props":4822,"children":4823},{"style":499},[4824],{"type":57,"value":1876},{"type":51,"tag":311,"props":4826,"children":4827},{"style":499},[4828],{"type":57,"value":4829}," {},\n",{"type":51,"tag":311,"props":4831,"children":4832},{"class":313,"line":398},[4833,4838,4842],{"type":51,"tag":311,"props":4834,"children":4835},{"style":505},[4836],{"type":57,"value":4837},"    autoprefixer",{"type":51,"tag":311,"props":4839,"children":4840},{"style":499},[4841],{"type":57,"value":1876},{"type":51,"tag":311,"props":4843,"children":4844},{"style":499},[4845],{"type":57,"value":4829},{"type":51,"tag":311,"props":4847,"children":4848},{"class":313,"line":430},[4849],{"type":51,"tag":311,"props":4850,"children":4851},{"style":499},[4852],{"type":57,"value":4738},{"type":51,"tag":311,"props":4854,"children":4855},{"class":313,"line":678},[4856],{"type":51,"tag":311,"props":4857,"children":4858},{"style":499},[4859],{"type":57,"value":4769},{"type":51,"tag":474,"props":4861,"children":4863},{"id":4862},"srcstylesglobalscss",[4864],{"type":57,"value":4865},"src\u002Fstyles\u002Fglobals.css",{"type":51,"tag":300,"props":4867,"children":4871},{"className":4868,"code":4869,"language":4870,"meta":305,"style":305},"language-css shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","@tailwind base;\n@tailwind components;\n@tailwind utilities;\n\n\u002F* Font faces *\u002F\n@font-face {\n  font-family: 'Segoe UI';\n  src: url('..\u002Fassets\u002Ffonts\u002FSegoe UI.ttf') format('truetype');\n  font-weight: 400;\n  font-style: normal;\n  font-display: swap;\n}\n\n@font-face {\n  font-family: 'Segoe UI';\n  src: url('..\u002Fassets\u002Ffonts\u002FSegoe UI Bold.ttf') format('truetype');\n  font-weight: 700;\n  font-style: normal;\n  font-display: swap;\n}\n\n@font-face {\n  font-family: 'Segoe UI';\n  src: url('..\u002Fassets\u002Ffonts\u002FSegoe UI Italic.ttf') format('truetype');\n  font-weight: 400;\n  font-style: italic;\n  font-display: swap;\n}\n\n@font-face {\n  font-family: 'Segoe UI';\n  src: url('..\u002Fassets\u002Ffonts\u002FSegoe UI Bold Italic.ttf') format('truetype');\n  font-weight: 700;\n  font-style: italic;\n  font-display: swap;\n}\n\n\u002F* CSS Custom Properties *\u002F\n:root {\n  \u002F* Brand colors *\u002F\n  --color-brand: #8251EE;\n  --color-brand-hover: #9366F5;\n  --color-brand-light: #A37EF5;\n  --color-brand-subtle: rgba(130, 81, 238, 0.15);\n\n  \u002F* Neutral backgrounds *\u002F\n  --color-bg-1: hsl(240, 6%, 10%);\n  --color-bg-2: hsl(240, 5%, 12%);\n  --color-bg-3: hsl(240, 5%, 14%);\n  --color-bg-4: hsl(240, 4%, 18%);\n  --color-bg-5: hsl(240, 4%, 22%);\n  --color-bg-6: hsl(240, 4%, 26%);\n\n  \u002F* Text colors *\u002F\n  --color-text-primary: #FFFFFF;\n  --color-text-secondary: #A1A1AA;\n  --color-text-muted: #71717A;\n\n  \u002F* Border colors *\u002F\n  --color-border-subtle: hsla(0, 0%, 100%, 0.08);\n  --color-border-default: hsla(0, 0%, 100%, 0.12);\n  --color-border-strong: hsla(0, 0%, 100%, 0.20);\n\n  \u002F* Status colors *\u002F\n  --color-success: #10B981;\n  --color-warning: #F59E0B;\n  --color-error: #EF4444;\n  --color-info: #3B82F6;\n\n  \u002F* Spacing *\u002F\n  --spacing-xs: 0.25rem;\n  --spacing-sm: 0.5rem;\n  --spacing-md: 1rem;\n  --spacing-lg: 1.5rem;\n  --spacing-xl: 2rem;\n  --spacing-2xl: 3rem;\n\n  \u002F* Border radius *\u002F\n  --radius-sm: 0.375rem;\n  --radius-md: 0.5rem;\n  --radius-lg: 0.75rem;\n  --radius-xl: 1rem;\n\n  \u002F* Transitions *\u002F\n  --transition-fast: 150ms ease;\n  --transition-normal: 200ms ease;\n  --transition-slow: 300ms ease;\n}\n\n\u002F* Base styles *\u002F\nhtml {\n  color-scheme: dark;\n}\n\nbody {\n  @apply bg-neutral-bg1 text-text-primary font-sans antialiased;\n  min-height: 100vh;\n}\n\n\u002F* Focus styles *\u002F\n*:focus-visible {\n  @apply outline-none ring-2 ring-brand ring-offset-2 ring-offset-neutral-bg1;\n}\n\n\u002F* Scrollbar styling *\u002F\n::-webkit-scrollbar {\n  width: 8px;\n  height: 8px;\n}\n\n::-webkit-scrollbar-track {\n  @apply bg-neutral-bg2;\n}\n\n::-webkit-scrollbar-thumb {\n  @apply bg-neutral-bg5 rounded-full;\n}\n\n::-webkit-scrollbar-thumb:hover {\n  @apply bg-neutral-bg6;\n}\n\n\u002F* Glass utility classes *\u002F\n@layer components {\n  .glass {\n    @apply backdrop-blur-md bg-white\u002F5 border border-white\u002F10;\n  }\n\n  .glass-card {\n    @apply backdrop-blur-md bg-white\u002F5 border border-white\u002F10 rounded-xl;\n  }\n\n  .glass-panel {\n    @apply backdrop-blur-lg bg-black\u002F40 border border-white\u002F5;\n  }\n\n  .glass-overlay {\n    @apply backdrop-blur-sm bg-black\u002F60;\n  }\n\n  .glass-input {\n    @apply backdrop-blur-sm bg-white\u002F5 border border-white\u002F10 focus:border-brand focus:bg-white\u002F10;\n  }\n}\n\n\u002F* Animation utilities *\u002F\n@layer utilities {\n  .animate-in {\n    animation: fadeIn 0.3s ease-out, slideUp 0.3s ease-out;\n  }\n}\n","css",[4872],{"type":51,"tag":126,"props":4873,"children":4874},{"__ignoreMap":305},[4875,4893,4909,4925,4934,4942,4954,4983,5050,5072,5093,5114,5121,5128,5139,5166,5226,5246,5265,5284,5291,5298,5309,5336,5396,5415,5435,5454,5461,5468,5479,5506,5566,5585,5604,5623,5630,5637,5645,5660,5668,5694,5719,5744,5801,5808,5816,5864,5910,5955,6001,6046,6091,6098,6106,6131,6156,6181,6188,6196,6252,6305,6358,6365,6373,6398,6423,6448,6473,6480,6488,6509,6530,6551,6572,6593,6614,6621,6629,6650,6670,6691,6711,6718,6726,6752,6777,6802,6809,6816,6824,6835,6856,6863,6870,6881,6893,6914,6921,6929,6938,6960,6973,6981,6989,6998,7016,7038,7059,7067,7075,7092,7105,7113,7121,7138,7151,7159,7167,7192,7205,7213,7221,7230,7248,7266,7289,7298,7306,7323,7344,7352,7360,7377,7399,7407,7415,7432,7445,7453,7461,7478,7514,7522,7530,7538,7547,7564,7581,7630,7638],{"type":51,"tag":311,"props":4876,"children":4877},{"class":313,"line":314},[4878,4883,4888],{"type":51,"tag":311,"props":4879,"children":4880},{"style":2320},[4881],{"type":57,"value":4882},"@tailwind",{"type":51,"tag":311,"props":4884,"children":4885},{"style":682},[4886],{"type":57,"value":4887}," base",{"type":51,"tag":311,"props":4889,"children":4890},{"style":499},[4891],{"type":57,"value":4892},";\n",{"type":51,"tag":311,"props":4894,"children":4895},{"class":313,"line":355},[4896,4900,4905],{"type":51,"tag":311,"props":4897,"children":4898},{"style":2320},[4899],{"type":57,"value":4882},{"type":51,"tag":311,"props":4901,"children":4902},{"style":682},[4903],{"type":57,"value":4904}," components",{"type":51,"tag":311,"props":4906,"children":4907},{"style":499},[4908],{"type":57,"value":4892},{"type":51,"tag":311,"props":4910,"children":4911},{"class":313,"line":370},[4912,4916,4921],{"type":51,"tag":311,"props":4913,"children":4914},{"style":2320},[4915],{"type":57,"value":4882},{"type":51,"tag":311,"props":4917,"children":4918},{"style":682},[4919],{"type":57,"value":4920}," utilities",{"type":51,"tag":311,"props":4922,"children":4923},{"style":499},[4924],{"type":57,"value":4892},{"type":51,"tag":311,"props":4926,"children":4927},{"class":313,"line":398},[4928],{"type":51,"tag":311,"props":4929,"children":4931},{"emptyLinePlaceholder":4930},true,[4932],{"type":57,"value":4933},"\n",{"type":51,"tag":311,"props":4935,"children":4936},{"class":313,"line":430},[4937],{"type":51,"tag":311,"props":4938,"children":4939},{"style":692},[4940],{"type":57,"value":4941},"\u002F* Font faces *\u002F\n",{"type":51,"tag":311,"props":4943,"children":4944},{"class":313,"line":678},[4945,4950],{"type":51,"tag":311,"props":4946,"children":4947},{"style":2320},[4948],{"type":57,"value":4949},"@font-face",{"type":51,"tag":311,"props":4951,"children":4952},{"style":499},[4953],{"type":57,"value":2367},{"type":51,"tag":311,"props":4955,"children":4956},{"class":313,"line":688},[4957,4963,4967,4971,4975,4979],{"type":51,"tag":311,"props":4958,"children":4960},{"style":4959},"--shiki-light:#8796B0;--shiki-default:#B2CCD6;--shiki-dark:#B2CCD6",[4961],{"type":57,"value":4962},"  font-family",{"type":51,"tag":311,"props":4964,"children":4965},{"style":499},[4966],{"type":57,"value":1876},{"type":51,"tag":311,"props":4968,"children":4969},{"style":499},[4970],{"type":57,"value":2407},{"type":51,"tag":311,"props":4972,"children":4973},{"style":324},[4974],{"type":57,"value":2498},{"type":51,"tag":311,"props":4976,"children":4977},{"style":499},[4978],{"type":57,"value":2389},{"type":51,"tag":311,"props":4980,"children":4981},{"style":499},[4982],{"type":57,"value":4892},{"type":51,"tag":311,"props":4984,"children":4985},{"class":313,"line":698},[4986,4991,4995,5000,5005,5009,5014,5018,5023,5028,5032,5036,5041,5045],{"type":51,"tag":311,"props":4987,"children":4988},{"style":4959},[4989],{"type":57,"value":4990},"  src",{"type":51,"tag":311,"props":4992,"children":4993},{"style":499},[4994],{"type":57,"value":1876},{"type":51,"tag":311,"props":4996,"children":4997},{"style":359},[4998],{"type":57,"value":4999}," url",{"type":51,"tag":311,"props":5001,"children":5002},{"style":499},[5003],{"type":57,"value":5004},"(",{"type":51,"tag":311,"props":5006,"children":5007},{"style":499},[5008],{"type":57,"value":2389},{"type":51,"tag":311,"props":5010,"children":5011},{"style":324},[5012],{"type":57,"value":5013},"..\u002Fassets\u002Ffonts\u002FSegoe UI.ttf",{"type":51,"tag":311,"props":5015,"children":5016},{"style":499},[5017],{"type":57,"value":2389},{"type":51,"tag":311,"props":5019,"children":5020},{"style":499},[5021],{"type":57,"value":5022},")",{"type":51,"tag":311,"props":5024,"children":5025},{"style":359},[5026],{"type":57,"value":5027}," format",{"type":51,"tag":311,"props":5029,"children":5030},{"style":499},[5031],{"type":57,"value":5004},{"type":51,"tag":311,"props":5033,"children":5034},{"style":499},[5035],{"type":57,"value":2389},{"type":51,"tag":311,"props":5037,"children":5038},{"style":324},[5039],{"type":57,"value":5040},"truetype",{"type":51,"tag":311,"props":5042,"children":5043},{"style":499},[5044],{"type":57,"value":2389},{"type":51,"tag":311,"props":5046,"children":5047},{"style":499},[5048],{"type":57,"value":5049},");\n",{"type":51,"tag":311,"props":5051,"children":5052},{"class":313,"line":781},[5053,5058,5062,5068],{"type":51,"tag":311,"props":5054,"children":5055},{"style":4959},[5056],{"type":57,"value":5057},"  font-weight",{"type":51,"tag":311,"props":5059,"children":5060},{"style":499},[5061],{"type":57,"value":1876},{"type":51,"tag":311,"props":5063,"children":5065},{"style":5064},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[5066],{"type":57,"value":5067}," 400",{"type":51,"tag":311,"props":5069,"children":5070},{"style":499},[5071],{"type":57,"value":4892},{"type":51,"tag":311,"props":5073,"children":5074},{"class":313,"line":860},[5075,5080,5084,5089],{"type":51,"tag":311,"props":5076,"children":5077},{"style":4959},[5078],{"type":57,"value":5079},"  font-style",{"type":51,"tag":311,"props":5081,"children":5082},{"style":499},[5083],{"type":57,"value":1876},{"type":51,"tag":311,"props":5085,"children":5086},{"style":682},[5087],{"type":57,"value":5088}," normal",{"type":51,"tag":311,"props":5090,"children":5091},{"style":499},[5092],{"type":57,"value":4892},{"type":51,"tag":311,"props":5094,"children":5095},{"class":313,"line":918},[5096,5101,5105,5110],{"type":51,"tag":311,"props":5097,"children":5098},{"style":4959},[5099],{"type":57,"value":5100},"  font-display",{"type":51,"tag":311,"props":5102,"children":5103},{"style":499},[5104],{"type":57,"value":1876},{"type":51,"tag":311,"props":5106,"children":5107},{"style":682},[5108],{"type":57,"value":5109}," swap",{"type":51,"tag":311,"props":5111,"children":5112},{"style":499},[5113],{"type":57,"value":4892},{"type":51,"tag":311,"props":5115,"children":5116},{"class":313,"line":976},[5117],{"type":51,"tag":311,"props":5118,"children":5119},{"style":499},[5120],{"type":57,"value":2294},{"type":51,"tag":311,"props":5122,"children":5123},{"class":313,"line":984},[5124],{"type":51,"tag":311,"props":5125,"children":5126},{"emptyLinePlaceholder":4930},[5127],{"type":57,"value":4933},{"type":51,"tag":311,"props":5129,"children":5130},{"class":313,"line":993},[5131,5135],{"type":51,"tag":311,"props":5132,"children":5133},{"style":2320},[5134],{"type":57,"value":4949},{"type":51,"tag":311,"props":5136,"children":5137},{"style":499},[5138],{"type":57,"value":2367},{"type":51,"tag":311,"props":5140,"children":5141},{"class":313,"line":1051},[5142,5146,5150,5154,5158,5162],{"type":51,"tag":311,"props":5143,"children":5144},{"style":4959},[5145],{"type":57,"value":4962},{"type":51,"tag":311,"props":5147,"children":5148},{"style":499},[5149],{"type":57,"value":1876},{"type":51,"tag":311,"props":5151,"children":5152},{"style":499},[5153],{"type":57,"value":2407},{"type":51,"tag":311,"props":5155,"children":5156},{"style":324},[5157],{"type":57,"value":2498},{"type":51,"tag":311,"props":5159,"children":5160},{"style":499},[5161],{"type":57,"value":2389},{"type":51,"tag":311,"props":5163,"children":5164},{"style":499},[5165],{"type":57,"value":4892},{"type":51,"tag":311,"props":5167,"children":5168},{"class":313,"line":1059},[5169,5173,5177,5181,5185,5189,5194,5198,5202,5206,5210,5214,5218,5222],{"type":51,"tag":311,"props":5170,"children":5171},{"style":4959},[5172],{"type":57,"value":4990},{"type":51,"tag":311,"props":5174,"children":5175},{"style":499},[5176],{"type":57,"value":1876},{"type":51,"tag":311,"props":5178,"children":5179},{"style":359},[5180],{"type":57,"value":4999},{"type":51,"tag":311,"props":5182,"children":5183},{"style":499},[5184],{"type":57,"value":5004},{"type":51,"tag":311,"props":5186,"children":5187},{"style":499},[5188],{"type":57,"value":2389},{"type":51,"tag":311,"props":5190,"children":5191},{"style":324},[5192],{"type":57,"value":5193},"..\u002Fassets\u002Ffonts\u002FSegoe UI Bold.ttf",{"type":51,"tag":311,"props":5195,"children":5196},{"style":499},[5197],{"type":57,"value":2389},{"type":51,"tag":311,"props":5199,"children":5200},{"style":499},[5201],{"type":57,"value":5022},{"type":51,"tag":311,"props":5203,"children":5204},{"style":359},[5205],{"type":57,"value":5027},{"type":51,"tag":311,"props":5207,"children":5208},{"style":499},[5209],{"type":57,"value":5004},{"type":51,"tag":311,"props":5211,"children":5212},{"style":499},[5213],{"type":57,"value":2389},{"type":51,"tag":311,"props":5215,"children":5216},{"style":324},[5217],{"type":57,"value":5040},{"type":51,"tag":311,"props":5219,"children":5220},{"style":499},[5221],{"type":57,"value":2389},{"type":51,"tag":311,"props":5223,"children":5224},{"style":499},[5225],{"type":57,"value":5049},{"type":51,"tag":311,"props":5227,"children":5228},{"class":313,"line":1068},[5229,5233,5237,5242],{"type":51,"tag":311,"props":5230,"children":5231},{"style":4959},[5232],{"type":57,"value":5057},{"type":51,"tag":311,"props":5234,"children":5235},{"style":499},[5236],{"type":57,"value":1876},{"type":51,"tag":311,"props":5238,"children":5239},{"style":5064},[5240],{"type":57,"value":5241}," 700",{"type":51,"tag":311,"props":5243,"children":5244},{"style":499},[5245],{"type":57,"value":4892},{"type":51,"tag":311,"props":5247,"children":5248},{"class":313,"line":1127},[5249,5253,5257,5261],{"type":51,"tag":311,"props":5250,"children":5251},{"style":4959},[5252],{"type":57,"value":5079},{"type":51,"tag":311,"props":5254,"children":5255},{"style":499},[5256],{"type":57,"value":1876},{"type":51,"tag":311,"props":5258,"children":5259},{"style":682},[5260],{"type":57,"value":5088},{"type":51,"tag":311,"props":5262,"children":5263},{"style":499},[5264],{"type":57,"value":4892},{"type":51,"tag":311,"props":5266,"children":5267},{"class":313,"line":1185},[5268,5272,5276,5280],{"type":51,"tag":311,"props":5269,"children":5270},{"style":4959},[5271],{"type":57,"value":5100},{"type":51,"tag":311,"props":5273,"children":5274},{"style":499},[5275],{"type":57,"value":1876},{"type":51,"tag":311,"props":5277,"children":5278},{"style":682},[5279],{"type":57,"value":5109},{"type":51,"tag":311,"props":5281,"children":5282},{"style":499},[5283],{"type":57,"value":4892},{"type":51,"tag":311,"props":5285,"children":5286},{"class":313,"line":1243},[5287],{"type":51,"tag":311,"props":5288,"children":5289},{"style":499},[5290],{"type":57,"value":2294},{"type":51,"tag":311,"props":5292,"children":5293},{"class":313,"line":1301},[5294],{"type":51,"tag":311,"props":5295,"children":5296},{"emptyLinePlaceholder":4930},[5297],{"type":57,"value":4933},{"type":51,"tag":311,"props":5299,"children":5300},{"class":313,"line":1359},[5301,5305],{"type":51,"tag":311,"props":5302,"children":5303},{"style":2320},[5304],{"type":57,"value":4949},{"type":51,"tag":311,"props":5306,"children":5307},{"style":499},[5308],{"type":57,"value":2367},{"type":51,"tag":311,"props":5310,"children":5311},{"class":313,"line":1367},[5312,5316,5320,5324,5328,5332],{"type":51,"tag":311,"props":5313,"children":5314},{"style":4959},[5315],{"type":57,"value":4962},{"type":51,"tag":311,"props":5317,"children":5318},{"style":499},[5319],{"type":57,"value":1876},{"type":51,"tag":311,"props":5321,"children":5322},{"style":499},[5323],{"type":57,"value":2407},{"type":51,"tag":311,"props":5325,"children":5326},{"style":324},[5327],{"type":57,"value":2498},{"type":51,"tag":311,"props":5329,"children":5330},{"style":499},[5331],{"type":57,"value":2389},{"type":51,"tag":311,"props":5333,"children":5334},{"style":499},[5335],{"type":57,"value":4892},{"type":51,"tag":311,"props":5337,"children":5338},{"class":313,"line":1376},[5339,5343,5347,5351,5355,5359,5364,5368,5372,5376,5380,5384,5388,5392],{"type":51,"tag":311,"props":5340,"children":5341},{"style":4959},[5342],{"type":57,"value":4990},{"type":51,"tag":311,"props":5344,"children":5345},{"style":499},[5346],{"type":57,"value":1876},{"type":51,"tag":311,"props":5348,"children":5349},{"style":359},[5350],{"type":57,"value":4999},{"type":51,"tag":311,"props":5352,"children":5353},{"style":499},[5354],{"type":57,"value":5004},{"type":51,"tag":311,"props":5356,"children":5357},{"style":499},[5358],{"type":57,"value":2389},{"type":51,"tag":311,"props":5360,"children":5361},{"style":324},[5362],{"type":57,"value":5363},"..\u002Fassets\u002Ffonts\u002FSegoe UI Italic.ttf",{"type":51,"tag":311,"props":5365,"children":5366},{"style":499},[5367],{"type":57,"value":2389},{"type":51,"tag":311,"props":5369,"children":5370},{"style":499},[5371],{"type":57,"value":5022},{"type":51,"tag":311,"props":5373,"children":5374},{"style":359},[5375],{"type":57,"value":5027},{"type":51,"tag":311,"props":5377,"children":5378},{"style":499},[5379],{"type":57,"value":5004},{"type":51,"tag":311,"props":5381,"children":5382},{"style":499},[5383],{"type":57,"value":2389},{"type":51,"tag":311,"props":5385,"children":5386},{"style":324},[5387],{"type":57,"value":5040},{"type":51,"tag":311,"props":5389,"children":5390},{"style":499},[5391],{"type":57,"value":2389},{"type":51,"tag":311,"props":5393,"children":5394},{"style":499},[5395],{"type":57,"value":5049},{"type":51,"tag":311,"props":5397,"children":5398},{"class":313,"line":1434},[5399,5403,5407,5411],{"type":51,"tag":311,"props":5400,"children":5401},{"style":4959},[5402],{"type":57,"value":5057},{"type":51,"tag":311,"props":5404,"children":5405},{"style":499},[5406],{"type":57,"value":1876},{"type":51,"tag":311,"props":5408,"children":5409},{"style":5064},[5410],{"type":57,"value":5067},{"type":51,"tag":311,"props":5412,"children":5413},{"style":499},[5414],{"type":57,"value":4892},{"type":51,"tag":311,"props":5416,"children":5417},{"class":313,"line":1491},[5418,5422,5426,5431],{"type":51,"tag":311,"props":5419,"children":5420},{"style":4959},[5421],{"type":57,"value":5079},{"type":51,"tag":311,"props":5423,"children":5424},{"style":499},[5425],{"type":57,"value":1876},{"type":51,"tag":311,"props":5427,"children":5428},{"style":682},[5429],{"type":57,"value":5430}," italic",{"type":51,"tag":311,"props":5432,"children":5433},{"style":499},[5434],{"type":57,"value":4892},{"type":51,"tag":311,"props":5436,"children":5437},{"class":313,"line":1548},[5438,5442,5446,5450],{"type":51,"tag":311,"props":5439,"children":5440},{"style":4959},[5441],{"type":57,"value":5100},{"type":51,"tag":311,"props":5443,"children":5444},{"style":499},[5445],{"type":57,"value":1876},{"type":51,"tag":311,"props":5447,"children":5448},{"style":682},[5449],{"type":57,"value":5109},{"type":51,"tag":311,"props":5451,"children":5452},{"style":499},[5453],{"type":57,"value":4892},{"type":51,"tag":311,"props":5455,"children":5456},{"class":313,"line":1605},[5457],{"type":51,"tag":311,"props":5458,"children":5459},{"style":499},[5460],{"type":57,"value":2294},{"type":51,"tag":311,"props":5462,"children":5463},{"class":313,"line":1613},[5464],{"type":51,"tag":311,"props":5465,"children":5466},{"emptyLinePlaceholder":4930},[5467],{"type":57,"value":4933},{"type":51,"tag":311,"props":5469,"children":5470},{"class":313,"line":1648},[5471,5475],{"type":51,"tag":311,"props":5472,"children":5473},{"style":2320},[5474],{"type":57,"value":4949},{"type":51,"tag":311,"props":5476,"children":5477},{"style":499},[5478],{"type":57,"value":2367},{"type":51,"tag":311,"props":5480,"children":5481},{"class":313,"line":1665},[5482,5486,5490,5494,5498,5502],{"type":51,"tag":311,"props":5483,"children":5484},{"style":4959},[5485],{"type":57,"value":4962},{"type":51,"tag":311,"props":5487,"children":5488},{"style":499},[5489],{"type":57,"value":1876},{"type":51,"tag":311,"props":5491,"children":5492},{"style":499},[5493],{"type":57,"value":2407},{"type":51,"tag":311,"props":5495,"children":5496},{"style":324},[5497],{"type":57,"value":2498},{"type":51,"tag":311,"props":5499,"children":5500},{"style":499},[5501],{"type":57,"value":2389},{"type":51,"tag":311,"props":5503,"children":5504},{"style":499},[5505],{"type":57,"value":4892},{"type":51,"tag":311,"props":5507,"children":5508},{"class":313,"line":1682},[5509,5513,5517,5521,5525,5529,5534,5538,5542,5546,5550,5554,5558,5562],{"type":51,"tag":311,"props":5510,"children":5511},{"style":4959},[5512],{"type":57,"value":4990},{"type":51,"tag":311,"props":5514,"children":5515},{"style":499},[5516],{"type":57,"value":1876},{"type":51,"tag":311,"props":5518,"children":5519},{"style":359},[5520],{"type":57,"value":4999},{"type":51,"tag":311,"props":5522,"children":5523},{"style":499},[5524],{"type":57,"value":5004},{"type":51,"tag":311,"props":5526,"children":5527},{"style":499},[5528],{"type":57,"value":2389},{"type":51,"tag":311,"props":5530,"children":5531},{"style":324},[5532],{"type":57,"value":5533},"..\u002Fassets\u002Ffonts\u002FSegoe UI Bold Italic.ttf",{"type":51,"tag":311,"props":5535,"children":5536},{"style":499},[5537],{"type":57,"value":2389},{"type":51,"tag":311,"props":5539,"children":5540},{"style":499},[5541],{"type":57,"value":5022},{"type":51,"tag":311,"props":5543,"children":5544},{"style":359},[5545],{"type":57,"value":5027},{"type":51,"tag":311,"props":5547,"children":5548},{"style":499},[5549],{"type":57,"value":5004},{"type":51,"tag":311,"props":5551,"children":5552},{"style":499},[5553],{"type":57,"value":2389},{"type":51,"tag":311,"props":5555,"children":5556},{"style":324},[5557],{"type":57,"value":5040},{"type":51,"tag":311,"props":5559,"children":5560},{"style":499},[5561],{"type":57,"value":2389},{"type":51,"tag":311,"props":5563,"children":5564},{"style":499},[5565],{"type":57,"value":5049},{"type":51,"tag":311,"props":5567,"children":5568},{"class":313,"line":1729},[5569,5573,5577,5581],{"type":51,"tag":311,"props":5570,"children":5571},{"style":4959},[5572],{"type":57,"value":5057},{"type":51,"tag":311,"props":5574,"children":5575},{"style":499},[5576],{"type":57,"value":1876},{"type":51,"tag":311,"props":5578,"children":5579},{"style":5064},[5580],{"type":57,"value":5241},{"type":51,"tag":311,"props":5582,"children":5583},{"style":499},[5584],{"type":57,"value":4892},{"type":51,"tag":311,"props":5586,"children":5587},{"class":313,"line":1797},[5588,5592,5596,5600],{"type":51,"tag":311,"props":5589,"children":5590},{"style":4959},[5591],{"type":57,"value":5079},{"type":51,"tag":311,"props":5593,"children":5594},{"style":499},[5595],{"type":57,"value":1876},{"type":51,"tag":311,"props":5597,"children":5598},{"style":682},[5599],{"type":57,"value":5430},{"type":51,"tag":311,"props":5601,"children":5602},{"style":499},[5603],{"type":57,"value":4892},{"type":51,"tag":311,"props":5605,"children":5606},{"class":313,"line":1813},[5607,5611,5615,5619],{"type":51,"tag":311,"props":5608,"children":5609},{"style":4959},[5610],{"type":57,"value":5100},{"type":51,"tag":311,"props":5612,"children":5613},{"style":499},[5614],{"type":57,"value":1876},{"type":51,"tag":311,"props":5616,"children":5617},{"style":682},[5618],{"type":57,"value":5109},{"type":51,"tag":311,"props":5620,"children":5621},{"style":499},[5622],{"type":57,"value":4892},{"type":51,"tag":311,"props":5624,"children":5625},{"class":313,"line":3171},[5626],{"type":51,"tag":311,"props":5627,"children":5628},{"style":499},[5629],{"type":57,"value":2294},{"type":51,"tag":311,"props":5631,"children":5632},{"class":313,"line":3201},[5633],{"type":51,"tag":311,"props":5634,"children":5635},{"emptyLinePlaceholder":4930},[5636],{"type":57,"value":4933},{"type":51,"tag":311,"props":5638,"children":5639},{"class":313,"line":3231},[5640],{"type":51,"tag":311,"props":5641,"children":5642},{"style":692},[5643],{"type":57,"value":5644},"\u002F* CSS Custom Properties *\u002F\n",{"type":51,"tag":311,"props":5646,"children":5647},{"class":313,"line":3261},[5648,5652,5656],{"type":51,"tag":311,"props":5649,"children":5650},{"style":499},[5651],{"type":57,"value":1876},{"type":51,"tag":311,"props":5653,"children":5654},{"style":511},[5655],{"type":57,"value":48},{"type":51,"tag":311,"props":5657,"children":5658},{"style":499},[5659],{"type":57,"value":2367},{"type":51,"tag":311,"props":5661,"children":5662},{"class":313,"line":3269},[5663],{"type":51,"tag":311,"props":5664,"children":5665},{"style":692},[5666],{"type":57,"value":5667},"  \u002F* Brand colors *\u002F\n",{"type":51,"tag":311,"props":5669,"children":5670},{"class":313,"line":3286},[5671,5676,5680,5685,5690],{"type":51,"tag":311,"props":5672,"children":5673},{"style":682},[5674],{"type":57,"value":5675},"  --color-brand",{"type":51,"tag":311,"props":5677,"children":5678},{"style":499},[5679],{"type":57,"value":1876},{"type":51,"tag":311,"props":5681,"children":5682},{"style":499},[5683],{"type":57,"value":5684}," #",{"type":51,"tag":311,"props":5686,"children":5687},{"style":682},[5688],{"type":57,"value":5689},"8251EE",{"type":51,"tag":311,"props":5691,"children":5692},{"style":499},[5693],{"type":57,"value":4892},{"type":51,"tag":311,"props":5695,"children":5696},{"class":313,"line":3315},[5697,5702,5706,5710,5715],{"type":51,"tag":311,"props":5698,"children":5699},{"style":682},[5700],{"type":57,"value":5701},"  --color-brand-hover",{"type":51,"tag":311,"props":5703,"children":5704},{"style":499},[5705],{"type":57,"value":1876},{"type":51,"tag":311,"props":5707,"children":5708},{"style":499},[5709],{"type":57,"value":5684},{"type":51,"tag":311,"props":5711,"children":5712},{"style":682},[5713],{"type":57,"value":5714},"9366F5",{"type":51,"tag":311,"props":5716,"children":5717},{"style":499},[5718],{"type":57,"value":4892},{"type":51,"tag":311,"props":5720,"children":5721},{"class":313,"line":3344},[5722,5727,5731,5735,5740],{"type":51,"tag":311,"props":5723,"children":5724},{"style":682},[5725],{"type":57,"value":5726},"  --color-brand-light",{"type":51,"tag":311,"props":5728,"children":5729},{"style":499},[5730],{"type":57,"value":1876},{"type":51,"tag":311,"props":5732,"children":5733},{"style":499},[5734],{"type":57,"value":5684},{"type":51,"tag":311,"props":5736,"children":5737},{"style":682},[5738],{"type":57,"value":5739},"A37EF5",{"type":51,"tag":311,"props":5741,"children":5742},{"style":499},[5743],{"type":57,"value":4892},{"type":51,"tag":311,"props":5745,"children":5746},{"class":313,"line":3373},[5747,5752,5756,5761,5765,5770,5774,5779,5783,5788,5792,5797],{"type":51,"tag":311,"props":5748,"children":5749},{"style":682},[5750],{"type":57,"value":5751},"  --color-brand-subtle",{"type":51,"tag":311,"props":5753,"children":5754},{"style":499},[5755],{"type":57,"value":1876},{"type":51,"tag":311,"props":5757,"children":5758},{"style":359},[5759],{"type":57,"value":5760}," rgba",{"type":51,"tag":311,"props":5762,"children":5763},{"style":499},[5764],{"type":57,"value":5004},{"type":51,"tag":311,"props":5766,"children":5767},{"style":5064},[5768],{"type":57,"value":5769},"130",{"type":51,"tag":311,"props":5771,"children":5772},{"style":499},[5773],{"type":57,"value":1998},{"type":51,"tag":311,"props":5775,"children":5776},{"style":5064},[5777],{"type":57,"value":5778}," 81",{"type":51,"tag":311,"props":5780,"children":5781},{"style":499},[5782],{"type":57,"value":1998},{"type":51,"tag":311,"props":5784,"children":5785},{"style":5064},[5786],{"type":57,"value":5787}," 238",{"type":51,"tag":311,"props":5789,"children":5790},{"style":499},[5791],{"type":57,"value":1998},{"type":51,"tag":311,"props":5793,"children":5794},{"style":5064},[5795],{"type":57,"value":5796}," 0.15",{"type":51,"tag":311,"props":5798,"children":5799},{"style":499},[5800],{"type":57,"value":5049},{"type":51,"tag":311,"props":5802,"children":5803},{"class":313,"line":3402},[5804],{"type":51,"tag":311,"props":5805,"children":5806},{"emptyLinePlaceholder":4930},[5807],{"type":57,"value":4933},{"type":51,"tag":311,"props":5809,"children":5810},{"class":313,"line":3431},[5811],{"type":51,"tag":311,"props":5812,"children":5813},{"style":692},[5814],{"type":57,"value":5815},"  \u002F* Neutral backgrounds *\u002F\n",{"type":51,"tag":311,"props":5817,"children":5818},{"class":313,"line":3461},[5819,5824,5828,5833,5837,5842,5846,5851,5855,5860],{"type":51,"tag":311,"props":5820,"children":5821},{"style":682},[5822],{"type":57,"value":5823},"  --color-bg-1",{"type":51,"tag":311,"props":5825,"children":5826},{"style":499},[5827],{"type":57,"value":1876},{"type":51,"tag":311,"props":5829,"children":5830},{"style":359},[5831],{"type":57,"value":5832}," hsl",{"type":51,"tag":311,"props":5834,"children":5835},{"style":499},[5836],{"type":57,"value":5004},{"type":51,"tag":311,"props":5838,"children":5839},{"style":5064},[5840],{"type":57,"value":5841},"240",{"type":51,"tag":311,"props":5843,"children":5844},{"style":499},[5845],{"type":57,"value":1998},{"type":51,"tag":311,"props":5847,"children":5848},{"style":5064},[5849],{"type":57,"value":5850}," 6%",{"type":51,"tag":311,"props":5852,"children":5853},{"style":499},[5854],{"type":57,"value":1998},{"type":51,"tag":311,"props":5856,"children":5857},{"style":5064},[5858],{"type":57,"value":5859}," 10%",{"type":51,"tag":311,"props":5861,"children":5862},{"style":499},[5863],{"type":57,"value":5049},{"type":51,"tag":311,"props":5865,"children":5866},{"class":313,"line":3491},[5867,5872,5876,5880,5884,5888,5892,5897,5901,5906],{"type":51,"tag":311,"props":5868,"children":5869},{"style":682},[5870],{"type":57,"value":5871},"  --color-bg-2",{"type":51,"tag":311,"props":5873,"children":5874},{"style":499},[5875],{"type":57,"value":1876},{"type":51,"tag":311,"props":5877,"children":5878},{"style":359},[5879],{"type":57,"value":5832},{"type":51,"tag":311,"props":5881,"children":5882},{"style":499},[5883],{"type":57,"value":5004},{"type":51,"tag":311,"props":5885,"children":5886},{"style":5064},[5887],{"type":57,"value":5841},{"type":51,"tag":311,"props":5889,"children":5890},{"style":499},[5891],{"type":57,"value":1998},{"type":51,"tag":311,"props":5893,"children":5894},{"style":5064},[5895],{"type":57,"value":5896}," 5%",{"type":51,"tag":311,"props":5898,"children":5899},{"style":499},[5900],{"type":57,"value":1998},{"type":51,"tag":311,"props":5902,"children":5903},{"style":5064},[5904],{"type":57,"value":5905}," 12%",{"type":51,"tag":311,"props":5907,"children":5908},{"style":499},[5909],{"type":57,"value":5049},{"type":51,"tag":311,"props":5911,"children":5912},{"class":313,"line":3499},[5913,5918,5922,5926,5930,5934,5938,5942,5946,5951],{"type":51,"tag":311,"props":5914,"children":5915},{"style":682},[5916],{"type":57,"value":5917},"  --color-bg-3",{"type":51,"tag":311,"props":5919,"children":5920},{"style":499},[5921],{"type":57,"value":1876},{"type":51,"tag":311,"props":5923,"children":5924},{"style":359},[5925],{"type":57,"value":5832},{"type":51,"tag":311,"props":5927,"children":5928},{"style":499},[5929],{"type":57,"value":5004},{"type":51,"tag":311,"props":5931,"children":5932},{"style":5064},[5933],{"type":57,"value":5841},{"type":51,"tag":311,"props":5935,"children":5936},{"style":499},[5937],{"type":57,"value":1998},{"type":51,"tag":311,"props":5939,"children":5940},{"style":5064},[5941],{"type":57,"value":5896},{"type":51,"tag":311,"props":5943,"children":5944},{"style":499},[5945],{"type":57,"value":1998},{"type":51,"tag":311,"props":5947,"children":5948},{"style":5064},[5949],{"type":57,"value":5950}," 14%",{"type":51,"tag":311,"props":5952,"children":5953},{"style":499},[5954],{"type":57,"value":5049},{"type":51,"tag":311,"props":5956,"children":5957},{"class":313,"line":3507},[5958,5963,5967,5971,5975,5979,5983,5988,5992,5997],{"type":51,"tag":311,"props":5959,"children":5960},{"style":682},[5961],{"type":57,"value":5962},"  --color-bg-4",{"type":51,"tag":311,"props":5964,"children":5965},{"style":499},[5966],{"type":57,"value":1876},{"type":51,"tag":311,"props":5968,"children":5969},{"style":359},[5970],{"type":57,"value":5832},{"type":51,"tag":311,"props":5972,"children":5973},{"style":499},[5974],{"type":57,"value":5004},{"type":51,"tag":311,"props":5976,"children":5977},{"style":5064},[5978],{"type":57,"value":5841},{"type":51,"tag":311,"props":5980,"children":5981},{"style":499},[5982],{"type":57,"value":1998},{"type":51,"tag":311,"props":5984,"children":5985},{"style":5064},[5986],{"type":57,"value":5987}," 4%",{"type":51,"tag":311,"props":5989,"children":5990},{"style":499},[5991],{"type":57,"value":1998},{"type":51,"tag":311,"props":5993,"children":5994},{"style":5064},[5995],{"type":57,"value":5996}," 18%",{"type":51,"tag":311,"props":5998,"children":5999},{"style":499},[6000],{"type":57,"value":5049},{"type":51,"tag":311,"props":6002,"children":6003},{"class":313,"line":3524},[6004,6009,6013,6017,6021,6025,6029,6033,6037,6042],{"type":51,"tag":311,"props":6005,"children":6006},{"style":682},[6007],{"type":57,"value":6008},"  --color-bg-5",{"type":51,"tag":311,"props":6010,"children":6011},{"style":499},[6012],{"type":57,"value":1876},{"type":51,"tag":311,"props":6014,"children":6015},{"style":359},[6016],{"type":57,"value":5832},{"type":51,"tag":311,"props":6018,"children":6019},{"style":499},[6020],{"type":57,"value":5004},{"type":51,"tag":311,"props":6022,"children":6023},{"style":5064},[6024],{"type":57,"value":5841},{"type":51,"tag":311,"props":6026,"children":6027},{"style":499},[6028],{"type":57,"value":1998},{"type":51,"tag":311,"props":6030,"children":6031},{"style":5064},[6032],{"type":57,"value":5987},{"type":51,"tag":311,"props":6034,"children":6035},{"style":499},[6036],{"type":57,"value":1998},{"type":51,"tag":311,"props":6038,"children":6039},{"style":5064},[6040],{"type":57,"value":6041}," 22%",{"type":51,"tag":311,"props":6043,"children":6044},{"style":499},[6045],{"type":57,"value":5049},{"type":51,"tag":311,"props":6047,"children":6048},{"class":313,"line":3554},[6049,6054,6058,6062,6066,6070,6074,6078,6082,6087],{"type":51,"tag":311,"props":6050,"children":6051},{"style":682},[6052],{"type":57,"value":6053},"  --color-bg-6",{"type":51,"tag":311,"props":6055,"children":6056},{"style":499},[6057],{"type":57,"value":1876},{"type":51,"tag":311,"props":6059,"children":6060},{"style":359},[6061],{"type":57,"value":5832},{"type":51,"tag":311,"props":6063,"children":6064},{"style":499},[6065],{"type":57,"value":5004},{"type":51,"tag":311,"props":6067,"children":6068},{"style":5064},[6069],{"type":57,"value":5841},{"type":51,"tag":311,"props":6071,"children":6072},{"style":499},[6073],{"type":57,"value":1998},{"type":51,"tag":311,"props":6075,"children":6076},{"style":5064},[6077],{"type":57,"value":5987},{"type":51,"tag":311,"props":6079,"children":6080},{"style":499},[6081],{"type":57,"value":1998},{"type":51,"tag":311,"props":6083,"children":6084},{"style":5064},[6085],{"type":57,"value":6086}," 26%",{"type":51,"tag":311,"props":6088,"children":6089},{"style":499},[6090],{"type":57,"value":5049},{"type":51,"tag":311,"props":6092,"children":6093},{"class":313,"line":3584},[6094],{"type":51,"tag":311,"props":6095,"children":6096},{"emptyLinePlaceholder":4930},[6097],{"type":57,"value":4933},{"type":51,"tag":311,"props":6099,"children":6100},{"class":313,"line":3614},[6101],{"type":51,"tag":311,"props":6102,"children":6103},{"style":692},[6104],{"type":57,"value":6105},"  \u002F* Text colors *\u002F\n",{"type":51,"tag":311,"props":6107,"children":6108},{"class":313,"line":3622},[6109,6114,6118,6122,6127],{"type":51,"tag":311,"props":6110,"children":6111},{"style":682},[6112],{"type":57,"value":6113},"  --color-text-primary",{"type":51,"tag":311,"props":6115,"children":6116},{"style":499},[6117],{"type":57,"value":1876},{"type":51,"tag":311,"props":6119,"children":6120},{"style":499},[6121],{"type":57,"value":5684},{"type":51,"tag":311,"props":6123,"children":6124},{"style":682},[6125],{"type":57,"value":6126},"FFFFFF",{"type":51,"tag":311,"props":6128,"children":6129},{"style":499},[6130],{"type":57,"value":4892},{"type":51,"tag":311,"props":6132,"children":6133},{"class":313,"line":3639},[6134,6139,6143,6147,6152],{"type":51,"tag":311,"props":6135,"children":6136},{"style":682},[6137],{"type":57,"value":6138},"  --color-text-secondary",{"type":51,"tag":311,"props":6140,"children":6141},{"style":499},[6142],{"type":57,"value":1876},{"type":51,"tag":311,"props":6144,"children":6145},{"style":499},[6146],{"type":57,"value":5684},{"type":51,"tag":311,"props":6148,"children":6149},{"style":682},[6150],{"type":57,"value":6151},"A1A1AA",{"type":51,"tag":311,"props":6153,"children":6154},{"style":499},[6155],{"type":57,"value":4892},{"type":51,"tag":311,"props":6157,"children":6158},{"class":313,"line":3669},[6159,6164,6168,6172,6177],{"type":51,"tag":311,"props":6160,"children":6161},{"style":682},[6162],{"type":57,"value":6163},"  --color-text-muted",{"type":51,"tag":311,"props":6165,"children":6166},{"style":499},[6167],{"type":57,"value":1876},{"type":51,"tag":311,"props":6169,"children":6170},{"style":499},[6171],{"type":57,"value":5684},{"type":51,"tag":311,"props":6173,"children":6174},{"style":682},[6175],{"type":57,"value":6176},"71717A",{"type":51,"tag":311,"props":6178,"children":6179},{"style":499},[6180],{"type":57,"value":4892},{"type":51,"tag":311,"props":6182,"children":6183},{"class":313,"line":3708},[6184],{"type":51,"tag":311,"props":6185,"children":6186},{"emptyLinePlaceholder":4930},[6187],{"type":57,"value":4933},{"type":51,"tag":311,"props":6189,"children":6190},{"class":313,"line":3716},[6191],{"type":51,"tag":311,"props":6192,"children":6193},{"style":692},[6194],{"type":57,"value":6195},"  \u002F* Border colors *\u002F\n",{"type":51,"tag":311,"props":6197,"children":6198},{"class":313,"line":3733},[6199,6204,6208,6213,6217,6221,6225,6230,6234,6239,6243,6248],{"type":51,"tag":311,"props":6200,"children":6201},{"style":682},[6202],{"type":57,"value":6203},"  --color-border-subtle",{"type":51,"tag":311,"props":6205,"children":6206},{"style":499},[6207],{"type":57,"value":1876},{"type":51,"tag":311,"props":6209,"children":6210},{"style":359},[6211],{"type":57,"value":6212}," hsla",{"type":51,"tag":311,"props":6214,"children":6215},{"style":499},[6216],{"type":57,"value":5004},{"type":51,"tag":311,"props":6218,"children":6219},{"style":5064},[6220],{"type":57,"value":3985},{"type":51,"tag":311,"props":6222,"children":6223},{"style":499},[6224],{"type":57,"value":1998},{"type":51,"tag":311,"props":6226,"children":6227},{"style":5064},[6228],{"type":57,"value":6229}," 0%",{"type":51,"tag":311,"props":6231,"children":6232},{"style":499},[6233],{"type":57,"value":1998},{"type":51,"tag":311,"props":6235,"children":6236},{"style":5064},[6237],{"type":57,"value":6238}," 100%",{"type":51,"tag":311,"props":6240,"children":6241},{"style":499},[6242],{"type":57,"value":1998},{"type":51,"tag":311,"props":6244,"children":6245},{"style":5064},[6246],{"type":57,"value":6247}," 0.08",{"type":51,"tag":311,"props":6249,"children":6250},{"style":499},[6251],{"type":57,"value":5049},{"type":51,"tag":311,"props":6253,"children":6254},{"class":313,"line":3763},[6255,6260,6264,6268,6272,6276,6280,6284,6288,6292,6296,6301],{"type":51,"tag":311,"props":6256,"children":6257},{"style":682},[6258],{"type":57,"value":6259},"  --color-border-default",{"type":51,"tag":311,"props":6261,"children":6262},{"style":499},[6263],{"type":57,"value":1876},{"type":51,"tag":311,"props":6265,"children":6266},{"style":359},[6267],{"type":57,"value":6212},{"type":51,"tag":311,"props":6269,"children":6270},{"style":499},[6271],{"type":57,"value":5004},{"type":51,"tag":311,"props":6273,"children":6274},{"style":5064},[6275],{"type":57,"value":3985},{"type":51,"tag":311,"props":6277,"children":6278},{"style":499},[6279],{"type":57,"value":1998},{"type":51,"tag":311,"props":6281,"children":6282},{"style":5064},[6283],{"type":57,"value":6229},{"type":51,"tag":311,"props":6285,"children":6286},{"style":499},[6287],{"type":57,"value":1998},{"type":51,"tag":311,"props":6289,"children":6290},{"style":5064},[6291],{"type":57,"value":6238},{"type":51,"tag":311,"props":6293,"children":6294},{"style":499},[6295],{"type":57,"value":1998},{"type":51,"tag":311,"props":6297,"children":6298},{"style":5064},[6299],{"type":57,"value":6300}," 0.12",{"type":51,"tag":311,"props":6302,"children":6303},{"style":499},[6304],{"type":57,"value":5049},{"type":51,"tag":311,"props":6306,"children":6307},{"class":313,"line":3771},[6308,6313,6317,6321,6325,6329,6333,6337,6341,6345,6349,6354],{"type":51,"tag":311,"props":6309,"children":6310},{"style":682},[6311],{"type":57,"value":6312},"  --color-border-strong",{"type":51,"tag":311,"props":6314,"children":6315},{"style":499},[6316],{"type":57,"value":1876},{"type":51,"tag":311,"props":6318,"children":6319},{"style":359},[6320],{"type":57,"value":6212},{"type":51,"tag":311,"props":6322,"children":6323},{"style":499},[6324],{"type":57,"value":5004},{"type":51,"tag":311,"props":6326,"children":6327},{"style":5064},[6328],{"type":57,"value":3985},{"type":51,"tag":311,"props":6330,"children":6331},{"style":499},[6332],{"type":57,"value":1998},{"type":51,"tag":311,"props":6334,"children":6335},{"style":5064},[6336],{"type":57,"value":6229},{"type":51,"tag":311,"props":6338,"children":6339},{"style":499},[6340],{"type":57,"value":1998},{"type":51,"tag":311,"props":6342,"children":6343},{"style":5064},[6344],{"type":57,"value":6238},{"type":51,"tag":311,"props":6346,"children":6347},{"style":499},[6348],{"type":57,"value":1998},{"type":51,"tag":311,"props":6350,"children":6351},{"style":5064},[6352],{"type":57,"value":6353}," 0.20",{"type":51,"tag":311,"props":6355,"children":6356},{"style":499},[6357],{"type":57,"value":5049},{"type":51,"tag":311,"props":6359,"children":6360},{"class":313,"line":3788},[6361],{"type":51,"tag":311,"props":6362,"children":6363},{"emptyLinePlaceholder":4930},[6364],{"type":57,"value":4933},{"type":51,"tag":311,"props":6366,"children":6367},{"class":313,"line":3826},[6368],{"type":51,"tag":311,"props":6369,"children":6370},{"style":692},[6371],{"type":57,"value":6372},"  \u002F* Status colors *\u002F\n",{"type":51,"tag":311,"props":6374,"children":6375},{"class":313,"line":3864},[6376,6381,6385,6389,6394],{"type":51,"tag":311,"props":6377,"children":6378},{"style":682},[6379],{"type":57,"value":6380},"  --color-success",{"type":51,"tag":311,"props":6382,"children":6383},{"style":499},[6384],{"type":57,"value":1876},{"type":51,"tag":311,"props":6386,"children":6387},{"style":499},[6388],{"type":57,"value":5684},{"type":51,"tag":311,"props":6390,"children":6391},{"style":682},[6392],{"type":57,"value":6393},"10B981",{"type":51,"tag":311,"props":6395,"children":6396},{"style":499},[6397],{"type":57,"value":4892},{"type":51,"tag":311,"props":6399,"children":6400},{"class":313,"line":3902},[6401,6406,6410,6414,6419],{"type":51,"tag":311,"props":6402,"children":6403},{"style":682},[6404],{"type":57,"value":6405},"  --color-warning",{"type":51,"tag":311,"props":6407,"children":6408},{"style":499},[6409],{"type":57,"value":1876},{"type":51,"tag":311,"props":6411,"children":6412},{"style":499},[6413],{"type":57,"value":5684},{"type":51,"tag":311,"props":6415,"children":6416},{"style":682},[6417],{"type":57,"value":6418},"F59E0B",{"type":51,"tag":311,"props":6420,"children":6421},{"style":499},[6422],{"type":57,"value":4892},{"type":51,"tag":311,"props":6424,"children":6425},{"class":313,"line":3910},[6426,6431,6435,6439,6444],{"type":51,"tag":311,"props":6427,"children":6428},{"style":682},[6429],{"type":57,"value":6430},"  --color-error",{"type":51,"tag":311,"props":6432,"children":6433},{"style":499},[6434],{"type":57,"value":1876},{"type":51,"tag":311,"props":6436,"children":6437},{"style":499},[6438],{"type":57,"value":5684},{"type":51,"tag":311,"props":6440,"children":6441},{"style":682},[6442],{"type":57,"value":6443},"EF4444",{"type":51,"tag":311,"props":6445,"children":6446},{"style":499},[6447],{"type":57,"value":4892},{"type":51,"tag":311,"props":6449,"children":6450},{"class":313,"line":3927},[6451,6456,6460,6464,6469],{"type":51,"tag":311,"props":6452,"children":6453},{"style":682},[6454],{"type":57,"value":6455},"  --color-info",{"type":51,"tag":311,"props":6457,"children":6458},{"style":499},[6459],{"type":57,"value":1876},{"type":51,"tag":311,"props":6461,"children":6462},{"style":499},[6463],{"type":57,"value":5684},{"type":51,"tag":311,"props":6465,"children":6466},{"style":682},[6467],{"type":57,"value":6468},"3B82F6",{"type":51,"tag":311,"props":6470,"children":6471},{"style":499},[6472],{"type":57,"value":4892},{"type":51,"tag":311,"props":6474,"children":6475},{"class":313,"line":3944},[6476],{"type":51,"tag":311,"props":6477,"children":6478},{"emptyLinePlaceholder":4930},[6479],{"type":57,"value":4933},{"type":51,"tag":311,"props":6481,"children":6482},{"class":313,"line":3996},[6483],{"type":51,"tag":311,"props":6484,"children":6485},{"style":692},[6486],{"type":57,"value":6487},"  \u002F* Spacing *\u002F\n",{"type":51,"tag":311,"props":6489,"children":6490},{"class":313,"line":4046},[6491,6496,6500,6505],{"type":51,"tag":311,"props":6492,"children":6493},{"style":682},[6494],{"type":57,"value":6495},"  --spacing-xs",{"type":51,"tag":311,"props":6497,"children":6498},{"style":499},[6499],{"type":57,"value":1876},{"type":51,"tag":311,"props":6501,"children":6502},{"style":5064},[6503],{"type":57,"value":6504}," 0.25rem",{"type":51,"tag":311,"props":6506,"children":6507},{"style":499},[6508],{"type":57,"value":4892},{"type":51,"tag":311,"props":6510,"children":6511},{"class":313,"line":4054},[6512,6517,6521,6526],{"type":51,"tag":311,"props":6513,"children":6514},{"style":682},[6515],{"type":57,"value":6516},"  --spacing-sm",{"type":51,"tag":311,"props":6518,"children":6519},{"style":499},[6520],{"type":57,"value":1876},{"type":51,"tag":311,"props":6522,"children":6523},{"style":5064},[6524],{"type":57,"value":6525}," 0.5rem",{"type":51,"tag":311,"props":6527,"children":6528},{"style":499},[6529],{"type":57,"value":4892},{"type":51,"tag":311,"props":6531,"children":6532},{"class":313,"line":4071},[6533,6538,6542,6547],{"type":51,"tag":311,"props":6534,"children":6535},{"style":682},[6536],{"type":57,"value":6537},"  --spacing-md",{"type":51,"tag":311,"props":6539,"children":6540},{"style":499},[6541],{"type":57,"value":1876},{"type":51,"tag":311,"props":6543,"children":6544},{"style":5064},[6545],{"type":57,"value":6546}," 1rem",{"type":51,"tag":311,"props":6548,"children":6549},{"style":499},[6550],{"type":57,"value":4892},{"type":51,"tag":311,"props":6552,"children":6553},{"class":313,"line":4145},[6554,6559,6563,6568],{"type":51,"tag":311,"props":6555,"children":6556},{"style":682},[6557],{"type":57,"value":6558},"  --spacing-lg",{"type":51,"tag":311,"props":6560,"children":6561},{"style":499},[6562],{"type":57,"value":1876},{"type":51,"tag":311,"props":6564,"children":6565},{"style":5064},[6566],{"type":57,"value":6567}," 1.5rem",{"type":51,"tag":311,"props":6569,"children":6570},{"style":499},[6571],{"type":57,"value":4892},{"type":51,"tag":311,"props":6573,"children":6574},{"class":313,"line":4218},[6575,6580,6584,6589],{"type":51,"tag":311,"props":6576,"children":6577},{"style":682},[6578],{"type":57,"value":6579},"  --spacing-xl",{"type":51,"tag":311,"props":6581,"children":6582},{"style":499},[6583],{"type":57,"value":1876},{"type":51,"tag":311,"props":6585,"children":6586},{"style":5064},[6587],{"type":57,"value":6588}," 2rem",{"type":51,"tag":311,"props":6590,"children":6591},{"style":499},[6592],{"type":57,"value":4892},{"type":51,"tag":311,"props":6594,"children":6595},{"class":313,"line":4226},[6596,6601,6605,6610],{"type":51,"tag":311,"props":6597,"children":6598},{"style":682},[6599],{"type":57,"value":6600},"  --spacing-2xl",{"type":51,"tag":311,"props":6602,"children":6603},{"style":499},[6604],{"type":57,"value":1876},{"type":51,"tag":311,"props":6606,"children":6607},{"style":5064},[6608],{"type":57,"value":6609}," 3rem",{"type":51,"tag":311,"props":6611,"children":6612},{"style":499},[6613],{"type":57,"value":4892},{"type":51,"tag":311,"props":6615,"children":6616},{"class":313,"line":4243},[6617],{"type":51,"tag":311,"props":6618,"children":6619},{"emptyLinePlaceholder":4930},[6620],{"type":57,"value":4933},{"type":51,"tag":311,"props":6622,"children":6623},{"class":313,"line":4316},[6624],{"type":51,"tag":311,"props":6625,"children":6626},{"style":692},[6627],{"type":57,"value":6628},"  \u002F* Border radius *\u002F\n",{"type":51,"tag":311,"props":6630,"children":6631},{"class":313,"line":4388},[6632,6637,6641,6646],{"type":51,"tag":311,"props":6633,"children":6634},{"style":682},[6635],{"type":57,"value":6636},"  --radius-sm",{"type":51,"tag":311,"props":6638,"children":6639},{"style":499},[6640],{"type":57,"value":1876},{"type":51,"tag":311,"props":6642,"children":6643},{"style":5064},[6644],{"type":57,"value":6645}," 0.375rem",{"type":51,"tag":311,"props":6647,"children":6648},{"style":499},[6649],{"type":57,"value":4892},{"type":51,"tag":311,"props":6651,"children":6652},{"class":313,"line":4396},[6653,6658,6662,6666],{"type":51,"tag":311,"props":6654,"children":6655},{"style":682},[6656],{"type":57,"value":6657},"  --radius-md",{"type":51,"tag":311,"props":6659,"children":6660},{"style":499},[6661],{"type":57,"value":1876},{"type":51,"tag":311,"props":6663,"children":6664},{"style":5064},[6665],{"type":57,"value":6525},{"type":51,"tag":311,"props":6667,"children":6668},{"style":499},[6669],{"type":57,"value":4892},{"type":51,"tag":311,"props":6671,"children":6672},{"class":313,"line":4404},[6673,6678,6682,6687],{"type":51,"tag":311,"props":6674,"children":6675},{"style":682},[6676],{"type":57,"value":6677},"  --radius-lg",{"type":51,"tag":311,"props":6679,"children":6680},{"style":499},[6681],{"type":57,"value":1876},{"type":51,"tag":311,"props":6683,"children":6684},{"style":5064},[6685],{"type":57,"value":6686}," 0.75rem",{"type":51,"tag":311,"props":6688,"children":6689},{"style":499},[6690],{"type":57,"value":4892},{"type":51,"tag":311,"props":6692,"children":6693},{"class":313,"line":4413},[6694,6699,6703,6707],{"type":51,"tag":311,"props":6695,"children":6696},{"style":682},[6697],{"type":57,"value":6698},"  --radius-xl",{"type":51,"tag":311,"props":6700,"children":6701},{"style":499},[6702],{"type":57,"value":1876},{"type":51,"tag":311,"props":6704,"children":6705},{"style":5064},[6706],{"type":57,"value":6546},{"type":51,"tag":311,"props":6708,"children":6709},{"style":499},[6710],{"type":57,"value":4892},{"type":51,"tag":311,"props":6712,"children":6713},{"class":313,"line":4430},[6714],{"type":51,"tag":311,"props":6715,"children":6716},{"emptyLinePlaceholder":4930},[6717],{"type":57,"value":4933},{"type":51,"tag":311,"props":6719,"children":6720},{"class":313,"line":4468},[6721],{"type":51,"tag":311,"props":6722,"children":6723},{"style":692},[6724],{"type":57,"value":6725},"  \u002F* Transitions *\u002F\n",{"type":51,"tag":311,"props":6727,"children":6728},{"class":313,"line":4506},[6729,6734,6738,6743,6748],{"type":51,"tag":311,"props":6730,"children":6731},{"style":682},[6732],{"type":57,"value":6733},"  --transition-fast",{"type":51,"tag":311,"props":6735,"children":6736},{"style":499},[6737],{"type":57,"value":1876},{"type":51,"tag":311,"props":6739,"children":6740},{"style":5064},[6741],{"type":57,"value":6742}," 150ms",{"type":51,"tag":311,"props":6744,"children":6745},{"style":682},[6746],{"type":57,"value":6747}," ease",{"type":51,"tag":311,"props":6749,"children":6750},{"style":499},[6751],{"type":57,"value":4892},{"type":51,"tag":311,"props":6753,"children":6754},{"class":313,"line":4544},[6755,6760,6764,6769,6773],{"type":51,"tag":311,"props":6756,"children":6757},{"style":682},[6758],{"type":57,"value":6759},"  --transition-normal",{"type":51,"tag":311,"props":6761,"children":6762},{"style":499},[6763],{"type":57,"value":1876},{"type":51,"tag":311,"props":6765,"children":6766},{"style":5064},[6767],{"type":57,"value":6768}," 200ms",{"type":51,"tag":311,"props":6770,"children":6771},{"style":682},[6772],{"type":57,"value":6747},{"type":51,"tag":311,"props":6774,"children":6775},{"style":499},[6776],{"type":57,"value":4892},{"type":51,"tag":311,"props":6778,"children":6779},{"class":313,"line":4582},[6780,6785,6789,6794,6798],{"type":51,"tag":311,"props":6781,"children":6782},{"style":682},[6783],{"type":57,"value":6784},"  --transition-slow",{"type":51,"tag":311,"props":6786,"children":6787},{"style":499},[6788],{"type":57,"value":1876},{"type":51,"tag":311,"props":6790,"children":6791},{"style":5064},[6792],{"type":57,"value":6793}," 300ms",{"type":51,"tag":311,"props":6795,"children":6796},{"style":682},[6797],{"type":57,"value":6747},{"type":51,"tag":311,"props":6799,"children":6800},{"style":499},[6801],{"type":57,"value":4892},{"type":51,"tag":311,"props":6803,"children":6804},{"class":313,"line":4590},[6805],{"type":51,"tag":311,"props":6806,"children":6807},{"style":499},[6808],{"type":57,"value":2294},{"type":51,"tag":311,"props":6810,"children":6811},{"class":313,"line":4599},[6812],{"type":51,"tag":311,"props":6813,"children":6814},{"emptyLinePlaceholder":4930},[6815],{"type":57,"value":4933},{"type":51,"tag":311,"props":6817,"children":6818},{"class":313,"line":4616},[6819],{"type":51,"tag":311,"props":6820,"children":6821},{"style":692},[6822],{"type":57,"value":6823},"\u002F* Base styles *\u002F\n",{"type":51,"tag":311,"props":6825,"children":6826},{"class":313,"line":4654},[6827,6831],{"type":51,"tag":311,"props":6828,"children":6829},{"style":318},[6830],{"type":57,"value":489},{"type":51,"tag":311,"props":6832,"children":6833},{"style":499},[6834],{"type":57,"value":2367},{"type":51,"tag":311,"props":6836,"children":6837},{"class":313,"line":4662},[6838,6843,6847,6852],{"type":51,"tag":311,"props":6839,"children":6840},{"style":4959},[6841],{"type":57,"value":6842},"  color-scheme",{"type":51,"tag":311,"props":6844,"children":6845},{"style":499},[6846],{"type":57,"value":1876},{"type":51,"tag":311,"props":6848,"children":6849},{"style":682},[6850],{"type":57,"value":6851}," dark",{"type":51,"tag":311,"props":6853,"children":6854},{"style":499},[6855],{"type":57,"value":4892},{"type":51,"tag":311,"props":6857,"children":6858},{"class":313,"line":4679},[6859],{"type":51,"tag":311,"props":6860,"children":6861},{"style":499},[6862],{"type":57,"value":2294},{"type":51,"tag":311,"props":6864,"children":6865},{"class":313,"line":4715},[6866],{"type":51,"tag":311,"props":6867,"children":6868},{"emptyLinePlaceholder":4930},[6869],{"type":57,"value":4933},{"type":51,"tag":311,"props":6871,"children":6872},{"class":313,"line":4723},[6873,6877],{"type":51,"tag":311,"props":6874,"children":6875},{"style":318},[6876],{"type":57,"value":1675},{"type":51,"tag":311,"props":6878,"children":6879},{"style":499},[6880],{"type":57,"value":2367},{"type":51,"tag":311,"props":6882,"children":6883},{"class":313,"line":4732},[6884,6889],{"type":51,"tag":311,"props":6885,"children":6886},{"style":682},[6887],{"type":57,"value":6888},"  @apply bg-neutral-bg1 text-text-primary font-sans antialiased",{"type":51,"tag":311,"props":6890,"children":6891},{"style":499},[6892],{"type":57,"value":4892},{"type":51,"tag":311,"props":6894,"children":6895},{"class":313,"line":4741},[6896,6901,6905,6910],{"type":51,"tag":311,"props":6897,"children":6898},{"style":4959},[6899],{"type":57,"value":6900},"  min-height",{"type":51,"tag":311,"props":6902,"children":6903},{"style":499},[6904],{"type":57,"value":1876},{"type":51,"tag":311,"props":6906,"children":6907},{"style":5064},[6908],{"type":57,"value":6909}," 100vh",{"type":51,"tag":311,"props":6911,"children":6912},{"style":499},[6913],{"type":57,"value":4892},{"type":51,"tag":311,"props":6915,"children":6916},{"class":313,"line":4763},[6917],{"type":51,"tag":311,"props":6918,"children":6919},{"style":499},[6920],{"type":57,"value":2294},{"type":51,"tag":311,"props":6922,"children":6924},{"class":313,"line":6923},99,[6925],{"type":51,"tag":311,"props":6926,"children":6927},{"emptyLinePlaceholder":4930},[6928],{"type":57,"value":4933},{"type":51,"tag":311,"props":6930,"children":6932},{"class":313,"line":6931},100,[6933],{"type":51,"tag":311,"props":6934,"children":6935},{"style":692},[6936],{"type":57,"value":6937},"\u002F* Focus styles *\u002F\n",{"type":51,"tag":311,"props":6939,"children":6941},{"class":313,"line":6940},101,[6942,6947,6951,6956],{"type":51,"tag":311,"props":6943,"children":6944},{"style":318},[6945],{"type":57,"value":6946},"*",{"type":51,"tag":311,"props":6948,"children":6949},{"style":499},[6950],{"type":57,"value":1876},{"type":51,"tag":311,"props":6952,"children":6953},{"style":511},[6954],{"type":57,"value":6955},"focus-visible",{"type":51,"tag":311,"props":6957,"children":6958},{"style":499},[6959],{"type":57,"value":2367},{"type":51,"tag":311,"props":6961,"children":6963},{"class":313,"line":6962},102,[6964,6969],{"type":51,"tag":311,"props":6965,"children":6966},{"style":682},[6967],{"type":57,"value":6968},"  @apply outline-none ring-2 ring-brand ring-offset-2 ring-offset-neutral-bg1",{"type":51,"tag":311,"props":6970,"children":6971},{"style":499},[6972],{"type":57,"value":4892},{"type":51,"tag":311,"props":6974,"children":6976},{"class":313,"line":6975},103,[6977],{"type":51,"tag":311,"props":6978,"children":6979},{"style":499},[6980],{"type":57,"value":2294},{"type":51,"tag":311,"props":6982,"children":6984},{"class":313,"line":6983},104,[6985],{"type":51,"tag":311,"props":6986,"children":6987},{"emptyLinePlaceholder":4930},[6988],{"type":57,"value":4933},{"type":51,"tag":311,"props":6990,"children":6992},{"class":313,"line":6991},105,[6993],{"type":51,"tag":311,"props":6994,"children":6995},{"style":692},[6996],{"type":57,"value":6997},"\u002F* Scrollbar styling *\u002F\n",{"type":51,"tag":311,"props":6999,"children":7001},{"class":313,"line":7000},106,[7002,7007,7012],{"type":51,"tag":311,"props":7003,"children":7004},{"style":499},[7005],{"type":57,"value":7006},"::",{"type":51,"tag":311,"props":7008,"children":7009},{"style":511},[7010],{"type":57,"value":7011},"-webkit-scrollbar",{"type":51,"tag":311,"props":7013,"children":7014},{"style":499},[7015],{"type":57,"value":2367},{"type":51,"tag":311,"props":7017,"children":7019},{"class":313,"line":7018},107,[7020,7025,7029,7034],{"type":51,"tag":311,"props":7021,"children":7022},{"style":4959},[7023],{"type":57,"value":7024},"  width",{"type":51,"tag":311,"props":7026,"children":7027},{"style":499},[7028],{"type":57,"value":1876},{"type":51,"tag":311,"props":7030,"children":7031},{"style":5064},[7032],{"type":57,"value":7033}," 8px",{"type":51,"tag":311,"props":7035,"children":7036},{"style":499},[7037],{"type":57,"value":4892},{"type":51,"tag":311,"props":7039,"children":7041},{"class":313,"line":7040},108,[7042,7047,7051,7055],{"type":51,"tag":311,"props":7043,"children":7044},{"style":4959},[7045],{"type":57,"value":7046},"  height",{"type":51,"tag":311,"props":7048,"children":7049},{"style":499},[7050],{"type":57,"value":1876},{"type":51,"tag":311,"props":7052,"children":7053},{"style":5064},[7054],{"type":57,"value":7033},{"type":51,"tag":311,"props":7056,"children":7057},{"style":499},[7058],{"type":57,"value":4892},{"type":51,"tag":311,"props":7060,"children":7062},{"class":313,"line":7061},109,[7063],{"type":51,"tag":311,"props":7064,"children":7065},{"style":499},[7066],{"type":57,"value":2294},{"type":51,"tag":311,"props":7068,"children":7070},{"class":313,"line":7069},110,[7071],{"type":51,"tag":311,"props":7072,"children":7073},{"emptyLinePlaceholder":4930},[7074],{"type":57,"value":4933},{"type":51,"tag":311,"props":7076,"children":7078},{"class":313,"line":7077},111,[7079,7083,7088],{"type":51,"tag":311,"props":7080,"children":7081},{"style":499},[7082],{"type":57,"value":7006},{"type":51,"tag":311,"props":7084,"children":7085},{"style":511},[7086],{"type":57,"value":7087},"-webkit-scrollbar-track",{"type":51,"tag":311,"props":7089,"children":7090},{"style":499},[7091],{"type":57,"value":2367},{"type":51,"tag":311,"props":7093,"children":7095},{"class":313,"line":7094},112,[7096,7101],{"type":51,"tag":311,"props":7097,"children":7098},{"style":682},[7099],{"type":57,"value":7100},"  @apply bg-neutral-bg2",{"type":51,"tag":311,"props":7102,"children":7103},{"style":499},[7104],{"type":57,"value":4892},{"type":51,"tag":311,"props":7106,"children":7108},{"class":313,"line":7107},113,[7109],{"type":51,"tag":311,"props":7110,"children":7111},{"style":499},[7112],{"type":57,"value":2294},{"type":51,"tag":311,"props":7114,"children":7116},{"class":313,"line":7115},114,[7117],{"type":51,"tag":311,"props":7118,"children":7119},{"emptyLinePlaceholder":4930},[7120],{"type":57,"value":4933},{"type":51,"tag":311,"props":7122,"children":7124},{"class":313,"line":7123},115,[7125,7129,7134],{"type":51,"tag":311,"props":7126,"children":7127},{"style":499},[7128],{"type":57,"value":7006},{"type":51,"tag":311,"props":7130,"children":7131},{"style":511},[7132],{"type":57,"value":7133},"-webkit-scrollbar-thumb",{"type":51,"tag":311,"props":7135,"children":7136},{"style":499},[7137],{"type":57,"value":2367},{"type":51,"tag":311,"props":7139,"children":7141},{"class":313,"line":7140},116,[7142,7147],{"type":51,"tag":311,"props":7143,"children":7144},{"style":682},[7145],{"type":57,"value":7146},"  @apply bg-neutral-bg5 rounded-full",{"type":51,"tag":311,"props":7148,"children":7149},{"style":499},[7150],{"type":57,"value":4892},{"type":51,"tag":311,"props":7152,"children":7154},{"class":313,"line":7153},117,[7155],{"type":51,"tag":311,"props":7156,"children":7157},{"style":499},[7158],{"type":57,"value":2294},{"type":51,"tag":311,"props":7160,"children":7162},{"class":313,"line":7161},118,[7163],{"type":51,"tag":311,"props":7164,"children":7165},{"emptyLinePlaceholder":4930},[7166],{"type":57,"value":4933},{"type":51,"tag":311,"props":7168,"children":7170},{"class":313,"line":7169},119,[7171,7175,7179,7183,7188],{"type":51,"tag":311,"props":7172,"children":7173},{"style":499},[7174],{"type":57,"value":7006},{"type":51,"tag":311,"props":7176,"children":7177},{"style":511},[7178],{"type":57,"value":7133},{"type":51,"tag":311,"props":7180,"children":7181},{"style":499},[7182],{"type":57,"value":1876},{"type":51,"tag":311,"props":7184,"children":7185},{"style":511},[7186],{"type":57,"value":7187},"hover",{"type":51,"tag":311,"props":7189,"children":7190},{"style":499},[7191],{"type":57,"value":2367},{"type":51,"tag":311,"props":7193,"children":7195},{"class":313,"line":7194},120,[7196,7201],{"type":51,"tag":311,"props":7197,"children":7198},{"style":682},[7199],{"type":57,"value":7200},"  @apply bg-neutral-bg6",{"type":51,"tag":311,"props":7202,"children":7203},{"style":499},[7204],{"type":57,"value":4892},{"type":51,"tag":311,"props":7206,"children":7208},{"class":313,"line":7207},121,[7209],{"type":51,"tag":311,"props":7210,"children":7211},{"style":499},[7212],{"type":57,"value":2294},{"type":51,"tag":311,"props":7214,"children":7216},{"class":313,"line":7215},122,[7217],{"type":51,"tag":311,"props":7218,"children":7219},{"emptyLinePlaceholder":4930},[7220],{"type":57,"value":4933},{"type":51,"tag":311,"props":7222,"children":7224},{"class":313,"line":7223},123,[7225],{"type":51,"tag":311,"props":7226,"children":7227},{"style":692},[7228],{"type":57,"value":7229},"\u002F* Glass utility classes *\u002F\n",{"type":51,"tag":311,"props":7231,"children":7233},{"class":313,"line":7232},124,[7234,7239,7244],{"type":51,"tag":311,"props":7235,"children":7236},{"style":2320},[7237],{"type":57,"value":7238},"@layer",{"type":51,"tag":311,"props":7240,"children":7241},{"style":682},[7242],{"type":57,"value":7243}," components ",{"type":51,"tag":311,"props":7245,"children":7246},{"style":499},[7247],{"type":57,"value":1854},{"type":51,"tag":311,"props":7249,"children":7251},{"class":313,"line":7250},125,[7252,7257,7262],{"type":51,"tag":311,"props":7253,"children":7254},{"style":499},[7255],{"type":57,"value":7256},"  .",{"type":51,"tag":311,"props":7258,"children":7259},{"style":318},[7260],{"type":57,"value":7261},"glass",{"type":51,"tag":311,"props":7263,"children":7264},{"style":499},[7265],{"type":57,"value":2367},{"type":51,"tag":311,"props":7267,"children":7269},{"class":313,"line":7268},126,[7270,7275,7280,7285],{"type":51,"tag":311,"props":7271,"children":7272},{"style":682},[7273],{"type":57,"value":7274},"    @apply backdrop-blur-md bg-white\u002F5 ",{"type":51,"tag":311,"props":7276,"children":7277},{"style":4959},[7278],{"type":57,"value":7279},"border",{"type":51,"tag":311,"props":7281,"children":7282},{"style":682},[7283],{"type":57,"value":7284}," border-white\u002F10",{"type":51,"tag":311,"props":7286,"children":7287},{"style":499},[7288],{"type":57,"value":4892},{"type":51,"tag":311,"props":7290,"children":7292},{"class":313,"line":7291},127,[7293],{"type":51,"tag":311,"props":7294,"children":7295},{"style":499},[7296],{"type":57,"value":7297},"  }\n",{"type":51,"tag":311,"props":7299,"children":7301},{"class":313,"line":7300},128,[7302],{"type":51,"tag":311,"props":7303,"children":7304},{"emptyLinePlaceholder":4930},[7305],{"type":57,"value":4933},{"type":51,"tag":311,"props":7307,"children":7309},{"class":313,"line":7308},129,[7310,7314,7319],{"type":51,"tag":311,"props":7311,"children":7312},{"style":499},[7313],{"type":57,"value":7256},{"type":51,"tag":311,"props":7315,"children":7316},{"style":318},[7317],{"type":57,"value":7318},"glass-card",{"type":51,"tag":311,"props":7320,"children":7321},{"style":499},[7322],{"type":57,"value":2367},{"type":51,"tag":311,"props":7324,"children":7326},{"class":313,"line":7325},130,[7327,7331,7335,7340],{"type":51,"tag":311,"props":7328,"children":7329},{"style":682},[7330],{"type":57,"value":7274},{"type":51,"tag":311,"props":7332,"children":7333},{"style":4959},[7334],{"type":57,"value":7279},{"type":51,"tag":311,"props":7336,"children":7337},{"style":682},[7338],{"type":57,"value":7339}," border-white\u002F10 rounded-xl",{"type":51,"tag":311,"props":7341,"children":7342},{"style":499},[7343],{"type":57,"value":4892},{"type":51,"tag":311,"props":7345,"children":7347},{"class":313,"line":7346},131,[7348],{"type":51,"tag":311,"props":7349,"children":7350},{"style":499},[7351],{"type":57,"value":7297},{"type":51,"tag":311,"props":7353,"children":7355},{"class":313,"line":7354},132,[7356],{"type":51,"tag":311,"props":7357,"children":7358},{"emptyLinePlaceholder":4930},[7359],{"type":57,"value":4933},{"type":51,"tag":311,"props":7361,"children":7363},{"class":313,"line":7362},133,[7364,7368,7373],{"type":51,"tag":311,"props":7365,"children":7366},{"style":499},[7367],{"type":57,"value":7256},{"type":51,"tag":311,"props":7369,"children":7370},{"style":318},[7371],{"type":57,"value":7372},"glass-panel",{"type":51,"tag":311,"props":7374,"children":7375},{"style":499},[7376],{"type":57,"value":2367},{"type":51,"tag":311,"props":7378,"children":7380},{"class":313,"line":7379},134,[7381,7386,7390,7395],{"type":51,"tag":311,"props":7382,"children":7383},{"style":682},[7384],{"type":57,"value":7385},"    @apply backdrop-blur-lg bg-black\u002F40 ",{"type":51,"tag":311,"props":7387,"children":7388},{"style":4959},[7389],{"type":57,"value":7279},{"type":51,"tag":311,"props":7391,"children":7392},{"style":682},[7393],{"type":57,"value":7394}," border-white\u002F5",{"type":51,"tag":311,"props":7396,"children":7397},{"style":499},[7398],{"type":57,"value":4892},{"type":51,"tag":311,"props":7400,"children":7402},{"class":313,"line":7401},135,[7403],{"type":51,"tag":311,"props":7404,"children":7405},{"style":499},[7406],{"type":57,"value":7297},{"type":51,"tag":311,"props":7408,"children":7410},{"class":313,"line":7409},136,[7411],{"type":51,"tag":311,"props":7412,"children":7413},{"emptyLinePlaceholder":4930},[7414],{"type":57,"value":4933},{"type":51,"tag":311,"props":7416,"children":7418},{"class":313,"line":7417},137,[7419,7423,7428],{"type":51,"tag":311,"props":7420,"children":7421},{"style":499},[7422],{"type":57,"value":7256},{"type":51,"tag":311,"props":7424,"children":7425},{"style":318},[7426],{"type":57,"value":7427},"glass-overlay",{"type":51,"tag":311,"props":7429,"children":7430},{"style":499},[7431],{"type":57,"value":2367},{"type":51,"tag":311,"props":7433,"children":7435},{"class":313,"line":7434},138,[7436,7441],{"type":51,"tag":311,"props":7437,"children":7438},{"style":682},[7439],{"type":57,"value":7440},"    @apply backdrop-blur-sm bg-black\u002F60",{"type":51,"tag":311,"props":7442,"children":7443},{"style":499},[7444],{"type":57,"value":4892},{"type":51,"tag":311,"props":7446,"children":7448},{"class":313,"line":7447},139,[7449],{"type":51,"tag":311,"props":7450,"children":7451},{"style":499},[7452],{"type":57,"value":7297},{"type":51,"tag":311,"props":7454,"children":7456},{"class":313,"line":7455},140,[7457],{"type":51,"tag":311,"props":7458,"children":7459},{"emptyLinePlaceholder":4930},[7460],{"type":57,"value":4933},{"type":51,"tag":311,"props":7462,"children":7464},{"class":313,"line":7463},141,[7465,7469,7474],{"type":51,"tag":311,"props":7466,"children":7467},{"style":499},[7468],{"type":57,"value":7256},{"type":51,"tag":311,"props":7470,"children":7471},{"style":318},[7472],{"type":57,"value":7473},"glass-input",{"type":51,"tag":311,"props":7475,"children":7476},{"style":499},[7477],{"type":57,"value":2367},{"type":51,"tag":311,"props":7479,"children":7481},{"class":313,"line":7480},142,[7482,7487,7491,7496,7500,7505,7510],{"type":51,"tag":311,"props":7483,"children":7484},{"style":682},[7485],{"type":57,"value":7486},"    @apply backdrop-blur-sm bg-white\u002F5 ",{"type":51,"tag":311,"props":7488,"children":7489},{"style":4959},[7490],{"type":57,"value":7279},{"type":51,"tag":311,"props":7492,"children":7493},{"style":682},[7494],{"type":57,"value":7495}," border-white\u002F10 focus",{"type":51,"tag":311,"props":7497,"children":7498},{"style":499},[7499],{"type":57,"value":1876},{"type":51,"tag":311,"props":7501,"children":7502},{"style":682},[7503],{"type":57,"value":7504},"border-brand focus:bg-white\u002F",{"type":51,"tag":311,"props":7506,"children":7507},{"style":5064},[7508],{"type":57,"value":7509},"10",{"type":51,"tag":311,"props":7511,"children":7512},{"style":499},[7513],{"type":57,"value":4892},{"type":51,"tag":311,"props":7515,"children":7517},{"class":313,"line":7516},143,[7518],{"type":51,"tag":311,"props":7519,"children":7520},{"style":499},[7521],{"type":57,"value":7297},{"type":51,"tag":311,"props":7523,"children":7525},{"class":313,"line":7524},144,[7526],{"type":51,"tag":311,"props":7527,"children":7528},{"style":499},[7529],{"type":57,"value":2294},{"type":51,"tag":311,"props":7531,"children":7533},{"class":313,"line":7532},145,[7534],{"type":51,"tag":311,"props":7535,"children":7536},{"emptyLinePlaceholder":4930},[7537],{"type":57,"value":4933},{"type":51,"tag":311,"props":7539,"children":7541},{"class":313,"line":7540},146,[7542],{"type":51,"tag":311,"props":7543,"children":7544},{"style":692},[7545],{"type":57,"value":7546},"\u002F* Animation utilities *\u002F\n",{"type":51,"tag":311,"props":7548,"children":7550},{"class":313,"line":7549},147,[7551,7555,7560],{"type":51,"tag":311,"props":7552,"children":7553},{"style":2320},[7554],{"type":57,"value":7238},{"type":51,"tag":311,"props":7556,"children":7557},{"style":682},[7558],{"type":57,"value":7559}," utilities ",{"type":51,"tag":311,"props":7561,"children":7562},{"style":499},[7563],{"type":57,"value":1854},{"type":51,"tag":311,"props":7565,"children":7567},{"class":313,"line":7566},148,[7568,7572,7577],{"type":51,"tag":311,"props":7569,"children":7570},{"style":499},[7571],{"type":57,"value":7256},{"type":51,"tag":311,"props":7573,"children":7574},{"style":318},[7575],{"type":57,"value":7576},"animate-in",{"type":51,"tag":311,"props":7578,"children":7579},{"style":499},[7580],{"type":57,"value":2367},{"type":51,"tag":311,"props":7582,"children":7584},{"class":313,"line":7583},149,[7585,7590,7594,7599,7604,7609,7613,7618,7622,7626],{"type":51,"tag":311,"props":7586,"children":7587},{"style":4959},[7588],{"type":57,"value":7589},"    animation",{"type":51,"tag":311,"props":7591,"children":7592},{"style":499},[7593],{"type":57,"value":1876},{"type":51,"tag":311,"props":7595,"children":7596},{"style":682},[7597],{"type":57,"value":7598}," fadeIn ",{"type":51,"tag":311,"props":7600,"children":7601},{"style":5064},[7602],{"type":57,"value":7603},"0.3s",{"type":51,"tag":311,"props":7605,"children":7606},{"style":682},[7607],{"type":57,"value":7608}," ease-out",{"type":51,"tag":311,"props":7610,"children":7611},{"style":499},[7612],{"type":57,"value":1998},{"type":51,"tag":311,"props":7614,"children":7615},{"style":682},[7616],{"type":57,"value":7617}," slideUp ",{"type":51,"tag":311,"props":7619,"children":7620},{"style":5064},[7621],{"type":57,"value":7603},{"type":51,"tag":311,"props":7623,"children":7624},{"style":682},[7625],{"type":57,"value":7608},{"type":51,"tag":311,"props":7627,"children":7628},{"style":499},[7629],{"type":57,"value":4892},{"type":51,"tag":311,"props":7631,"children":7633},{"class":313,"line":7632},150,[7634],{"type":51,"tag":311,"props":7635,"children":7636},{"style":499},[7637],{"type":57,"value":7297},{"type":51,"tag":311,"props":7639,"children":7641},{"class":313,"line":7640},151,[7642],{"type":51,"tag":311,"props":7643,"children":7644},{"style":499},[7645],{"type":57,"value":2294},{"type":51,"tag":474,"props":7647,"children":7649},{"id":7648},"srcmaintsx",[7650],{"type":57,"value":7651},"src\u002Fmain.tsx",{"type":51,"tag":300,"props":7653,"children":7657},{"className":7654,"code":7655,"language":7656,"meta":305,"style":305},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import React from 'react';\nimport ReactDOM from 'react-dom\u002Fclient';\nimport { BrowserRouter } from 'react-router-dom';\nimport App from '.\u002FApp';\nimport '.\u002Fstyles\u002Fglobals.css';\n\nReactDOM.createRoot(document.getElementById('root')!).render(\n  \u003CReact.StrictMode>\n    \u003CBrowserRouter>\n      \u003CApp \u002F>\n    \u003C\u002FBrowserRouter>\n  \u003C\u002FReact.StrictMode>\n);\n","tsx",[7658],{"type":51,"tag":126,"props":7659,"children":7660},{"__ignoreMap":305},[7661,7695,7728,7770,7803,7827,7834,7909,7925,7941,7957,7973,7988],{"type":51,"tag":311,"props":7662,"children":7663},{"class":313,"line":314},[7664,7669,7674,7679,7683,7687,7691],{"type":51,"tag":311,"props":7665,"children":7666},{"style":2320},[7667],{"type":57,"value":7668},"import",{"type":51,"tag":311,"props":7670,"children":7671},{"style":682},[7672],{"type":57,"value":7673}," React ",{"type":51,"tag":311,"props":7675,"children":7676},{"style":2320},[7677],{"type":57,"value":7678},"from",{"type":51,"tag":311,"props":7680,"children":7681},{"style":499},[7682],{"type":57,"value":2407},{"type":51,"tag":311,"props":7684,"children":7685},{"style":324},[7686],{"type":57,"value":14},{"type":51,"tag":311,"props":7688,"children":7689},{"style":499},[7690],{"type":57,"value":2389},{"type":51,"tag":311,"props":7692,"children":7693},{"style":499},[7694],{"type":57,"value":4892},{"type":51,"tag":311,"props":7696,"children":7697},{"class":313,"line":355},[7698,7702,7707,7711,7715,7720,7724],{"type":51,"tag":311,"props":7699,"children":7700},{"style":2320},[7701],{"type":57,"value":7668},{"type":51,"tag":311,"props":7703,"children":7704},{"style":682},[7705],{"type":57,"value":7706}," ReactDOM ",{"type":51,"tag":311,"props":7708,"children":7709},{"style":2320},[7710],{"type":57,"value":7678},{"type":51,"tag":311,"props":7712,"children":7713},{"style":499},[7714],{"type":57,"value":2407},{"type":51,"tag":311,"props":7716,"children":7717},{"style":324},[7718],{"type":57,"value":7719},"react-dom\u002Fclient",{"type":51,"tag":311,"props":7721,"children":7722},{"style":499},[7723],{"type":57,"value":2389},{"type":51,"tag":311,"props":7725,"children":7726},{"style":499},[7727],{"type":57,"value":4892},{"type":51,"tag":311,"props":7729,"children":7730},{"class":313,"line":370},[7731,7735,7739,7744,7749,7754,7758,7762,7766],{"type":51,"tag":311,"props":7732,"children":7733},{"style":2320},[7734],{"type":57,"value":7668},{"type":51,"tag":311,"props":7736,"children":7737},{"style":499},[7738],{"type":57,"value":2333},{"type":51,"tag":311,"props":7740,"children":7741},{"style":682},[7742],{"type":57,"value":7743}," BrowserRouter",{"type":51,"tag":311,"props":7745,"children":7746},{"style":499},[7747],{"type":57,"value":7748}," }",{"type":51,"tag":311,"props":7750,"children":7751},{"style":2320},[7752],{"type":57,"value":7753}," from",{"type":51,"tag":311,"props":7755,"children":7756},{"style":499},[7757],{"type":57,"value":2407},{"type":51,"tag":311,"props":7759,"children":7760},{"style":324},[7761],{"type":57,"value":173},{"type":51,"tag":311,"props":7763,"children":7764},{"style":499},[7765],{"type":57,"value":2389},{"type":51,"tag":311,"props":7767,"children":7768},{"style":499},[7769],{"type":57,"value":4892},{"type":51,"tag":311,"props":7771,"children":7772},{"class":313,"line":398},[7773,7777,7782,7786,7790,7795,7799],{"type":51,"tag":311,"props":7774,"children":7775},{"style":2320},[7776],{"type":57,"value":7668},{"type":51,"tag":311,"props":7778,"children":7779},{"style":682},[7780],{"type":57,"value":7781}," App ",{"type":51,"tag":311,"props":7783,"children":7784},{"style":2320},[7785],{"type":57,"value":7678},{"type":51,"tag":311,"props":7787,"children":7788},{"style":499},[7789],{"type":57,"value":2407},{"type":51,"tag":311,"props":7791,"children":7792},{"style":324},[7793],{"type":57,"value":7794},".\u002FApp",{"type":51,"tag":311,"props":7796,"children":7797},{"style":499},[7798],{"type":57,"value":2389},{"type":51,"tag":311,"props":7800,"children":7801},{"style":499},[7802],{"type":57,"value":4892},{"type":51,"tag":311,"props":7804,"children":7805},{"class":313,"line":430},[7806,7810,7814,7819,7823],{"type":51,"tag":311,"props":7807,"children":7808},{"style":2320},[7809],{"type":57,"value":7668},{"type":51,"tag":311,"props":7811,"children":7812},{"style":499},[7813],{"type":57,"value":2407},{"type":51,"tag":311,"props":7815,"children":7816},{"style":324},[7817],{"type":57,"value":7818},".\u002Fstyles\u002Fglobals.css",{"type":51,"tag":311,"props":7820,"children":7821},{"style":499},[7822],{"type":57,"value":2389},{"type":51,"tag":311,"props":7824,"children":7825},{"style":499},[7826],{"type":57,"value":4892},{"type":51,"tag":311,"props":7828,"children":7829},{"class":313,"line":678},[7830],{"type":51,"tag":311,"props":7831,"children":7832},{"emptyLinePlaceholder":4930},[7833],{"type":57,"value":4933},{"type":51,"tag":311,"props":7835,"children":7836},{"class":313,"line":688},[7837,7842,7847,7852,7857,7861,7866,7870,7874,7878,7882,7886,7891,7895,7899,7904],{"type":51,"tag":311,"props":7838,"children":7839},{"style":682},[7840],{"type":57,"value":7841},"ReactDOM",{"type":51,"tag":311,"props":7843,"children":7844},{"style":499},[7845],{"type":57,"value":7846},".",{"type":51,"tag":311,"props":7848,"children":7849},{"style":359},[7850],{"type":57,"value":7851},"createRoot",{"type":51,"tag":311,"props":7853,"children":7854},{"style":682},[7855],{"type":57,"value":7856},"(document",{"type":51,"tag":311,"props":7858,"children":7859},{"style":499},[7860],{"type":57,"value":7846},{"type":51,"tag":311,"props":7862,"children":7863},{"style":359},[7864],{"type":57,"value":7865},"getElementById",{"type":51,"tag":311,"props":7867,"children":7868},{"style":682},[7869],{"type":57,"value":5004},{"type":51,"tag":311,"props":7871,"children":7872},{"style":499},[7873],{"type":57,"value":2389},{"type":51,"tag":311,"props":7875,"children":7876},{"style":324},[7877],{"type":57,"value":48},{"type":51,"tag":311,"props":7879,"children":7880},{"style":499},[7881],{"type":57,"value":2389},{"type":51,"tag":311,"props":7883,"children":7884},{"style":682},[7885],{"type":57,"value":5022},{"type":51,"tag":311,"props":7887,"children":7888},{"style":499},[7889],{"type":57,"value":7890},"!",{"type":51,"tag":311,"props":7892,"children":7893},{"style":682},[7894],{"type":57,"value":5022},{"type":51,"tag":311,"props":7896,"children":7897},{"style":499},[7898],{"type":57,"value":7846},{"type":51,"tag":311,"props":7900,"children":7901},{"style":359},[7902],{"type":57,"value":7903},"render",{"type":51,"tag":311,"props":7905,"children":7906},{"style":682},[7907],{"type":57,"value":7908},"(\n",{"type":51,"tag":311,"props":7910,"children":7911},{"class":313,"line":698},[7912,7916,7921],{"type":51,"tag":311,"props":7913,"children":7914},{"style":499},[7915],{"type":57,"value":567},{"type":51,"tag":311,"props":7917,"children":7918},{"style":318},[7919],{"type":57,"value":7920},"React.StrictMode",{"type":51,"tag":311,"props":7922,"children":7923},{"style":499},[7924],{"type":57,"value":519},{"type":51,"tag":311,"props":7926,"children":7927},{"class":313,"line":781},[7928,7932,7937],{"type":51,"tag":311,"props":7929,"children":7930},{"style":499},[7931],{"type":57,"value":584},{"type":51,"tag":311,"props":7933,"children":7934},{"style":318},[7935],{"type":57,"value":7936},"BrowserRouter",{"type":51,"tag":311,"props":7938,"children":7939},{"style":499},[7940],{"type":57,"value":519},{"type":51,"tag":311,"props":7942,"children":7943},{"class":313,"line":860},[7944,7949,7953],{"type":51,"tag":311,"props":7945,"children":7946},{"style":499},[7947],{"type":57,"value":7948},"      \u003C",{"type":51,"tag":311,"props":7950,"children":7951},{"style":318},[7952],{"type":57,"value":1923},{"type":51,"tag":311,"props":7954,"children":7955},{"style":499},[7956],{"type":57,"value":616},{"type":51,"tag":311,"props":7958,"children":7959},{"class":313,"line":918},[7960,7965,7969],{"type":51,"tag":311,"props":7961,"children":7962},{"style":499},[7963],{"type":57,"value":7964},"    \u003C\u002F",{"type":51,"tag":311,"props":7966,"children":7967},{"style":318},[7968],{"type":57,"value":7936},{"type":51,"tag":311,"props":7970,"children":7971},{"style":499},[7972],{"type":57,"value":519},{"type":51,"tag":311,"props":7974,"children":7975},{"class":313,"line":976},[7976,7980,7984],{"type":51,"tag":311,"props":7977,"children":7978},{"style":499},[7979],{"type":57,"value":1654},{"type":51,"tag":311,"props":7981,"children":7982},{"style":318},[7983],{"type":57,"value":7920},{"type":51,"tag":311,"props":7985,"children":7986},{"style":499},[7987],{"type":57,"value":519},{"type":51,"tag":311,"props":7989,"children":7990},{"class":313,"line":984},[7991,7995],{"type":51,"tag":311,"props":7992,"children":7993},{"style":682},[7994],{"type":57,"value":5022},{"type":51,"tag":311,"props":7996,"children":7997},{"style":499},[7998],{"type":57,"value":4892},{"type":51,"tag":474,"props":8000,"children":8002},{"id":8001},"srcapptsx",[8003],{"type":57,"value":8004},"src\u002FApp.tsx",{"type":51,"tag":300,"props":8006,"children":8008},{"className":7654,"code":8007,"language":7656,"meta":305,"style":305},"import { Routes, Route } from 'react-router-dom';\nimport { AnimatePresence } from 'framer-motion';\nimport { AppShell } from '.\u002Fcomponents\u002Flayout\u002FAppShell';\nimport { Dashboard } from '.\u002Fpages\u002FDashboard';\nimport { Settings } from '.\u002Fpages\u002FSettings';\n\nexport default function App() {\n  return (\n    \u003CAppShell>\n      \u003CAnimatePresence mode=\"wait\">\n        \u003CRoutes>\n          \u003CRoute path=\"\u002F\" element={\u003CDashboard \u002F>} \u002F>\n          \u003CRoute path=\"\u002Fsettings\" element={\u003CSettings \u002F>} \u002F>\n        \u003C\u002FRoutes>\n      \u003C\u002FAnimatePresence>\n    \u003C\u002FAppShell>\n  );\n}\n",[8009],{"type":51,"tag":126,"props":8010,"children":8011},{"__ignoreMap":305},[8012,8061,8101,8142,8183,8224,8231,8261,8274,8290,8328,8345,8400,8449,8465,8481,8496,8508],{"type":51,"tag":311,"props":8013,"children":8014},{"class":313,"line":314},[8015,8019,8023,8028,8032,8037,8041,8045,8049,8053,8057],{"type":51,"tag":311,"props":8016,"children":8017},{"style":2320},[8018],{"type":57,"value":7668},{"type":51,"tag":311,"props":8020,"children":8021},{"style":499},[8022],{"type":57,"value":2333},{"type":51,"tag":311,"props":8024,"children":8025},{"style":682},[8026],{"type":57,"value":8027}," Routes",{"type":51,"tag":311,"props":8029,"children":8030},{"style":499},[8031],{"type":57,"value":1998},{"type":51,"tag":311,"props":8033,"children":8034},{"style":682},[8035],{"type":57,"value":8036}," Route",{"type":51,"tag":311,"props":8038,"children":8039},{"style":499},[8040],{"type":57,"value":7748},{"type":51,"tag":311,"props":8042,"children":8043},{"style":2320},[8044],{"type":57,"value":7753},{"type":51,"tag":311,"props":8046,"children":8047},{"style":499},[8048],{"type":57,"value":2407},{"type":51,"tag":311,"props":8050,"children":8051},{"style":324},[8052],{"type":57,"value":173},{"type":51,"tag":311,"props":8054,"children":8055},{"style":499},[8056],{"type":57,"value":2389},{"type":51,"tag":311,"props":8058,"children":8059},{"style":499},[8060],{"type":57,"value":4892},{"type":51,"tag":311,"props":8062,"children":8063},{"class":313,"line":355},[8064,8068,8072,8077,8081,8085,8089,8093,8097],{"type":51,"tag":311,"props":8065,"children":8066},{"style":2320},[8067],{"type":57,"value":7668},{"type":51,"tag":311,"props":8069,"children":8070},{"style":499},[8071],{"type":57,"value":2333},{"type":51,"tag":311,"props":8073,"children":8074},{"style":682},[8075],{"type":57,"value":8076}," AnimatePresence",{"type":51,"tag":311,"props":8078,"children":8079},{"style":499},[8080],{"type":57,"value":7748},{"type":51,"tag":311,"props":8082,"children":8083},{"style":2320},[8084],{"type":57,"value":7753},{"type":51,"tag":311,"props":8086,"children":8087},{"style":499},[8088],{"type":57,"value":2407},{"type":51,"tag":311,"props":8090,"children":8091},{"style":324},[8092],{"type":57,"value":195},{"type":51,"tag":311,"props":8094,"children":8095},{"style":499},[8096],{"type":57,"value":2389},{"type":51,"tag":311,"props":8098,"children":8099},{"style":499},[8100],{"type":57,"value":4892},{"type":51,"tag":311,"props":8102,"children":8103},{"class":313,"line":370},[8104,8108,8112,8117,8121,8125,8129,8134,8138],{"type":51,"tag":311,"props":8105,"children":8106},{"style":2320},[8107],{"type":57,"value":7668},{"type":51,"tag":311,"props":8109,"children":8110},{"style":499},[8111],{"type":57,"value":2333},{"type":51,"tag":311,"props":8113,"children":8114},{"style":682},[8115],{"type":57,"value":8116}," AppShell",{"type":51,"tag":311,"props":8118,"children":8119},{"style":499},[8120],{"type":57,"value":7748},{"type":51,"tag":311,"props":8122,"children":8123},{"style":2320},[8124],{"type":57,"value":7753},{"type":51,"tag":311,"props":8126,"children":8127},{"style":499},[8128],{"type":57,"value":2407},{"type":51,"tag":311,"props":8130,"children":8131},{"style":324},[8132],{"type":57,"value":8133},".\u002Fcomponents\u002Flayout\u002FAppShell",{"type":51,"tag":311,"props":8135,"children":8136},{"style":499},[8137],{"type":57,"value":2389},{"type":51,"tag":311,"props":8139,"children":8140},{"style":499},[8141],{"type":57,"value":4892},{"type":51,"tag":311,"props":8143,"children":8144},{"class":313,"line":398},[8145,8149,8153,8158,8162,8166,8170,8175,8179],{"type":51,"tag":311,"props":8146,"children":8147},{"style":2320},[8148],{"type":57,"value":7668},{"type":51,"tag":311,"props":8150,"children":8151},{"style":499},[8152],{"type":57,"value":2333},{"type":51,"tag":311,"props":8154,"children":8155},{"style":682},[8156],{"type":57,"value":8157}," Dashboard",{"type":51,"tag":311,"props":8159,"children":8160},{"style":499},[8161],{"type":57,"value":7748},{"type":51,"tag":311,"props":8163,"children":8164},{"style":2320},[8165],{"type":57,"value":7753},{"type":51,"tag":311,"props":8167,"children":8168},{"style":499},[8169],{"type":57,"value":2407},{"type":51,"tag":311,"props":8171,"children":8172},{"style":324},[8173],{"type":57,"value":8174},".\u002Fpages\u002FDashboard",{"type":51,"tag":311,"props":8176,"children":8177},{"style":499},[8178],{"type":57,"value":2389},{"type":51,"tag":311,"props":8180,"children":8181},{"style":499},[8182],{"type":57,"value":4892},{"type":51,"tag":311,"props":8184,"children":8185},{"class":313,"line":430},[8186,8190,8194,8199,8203,8207,8211,8216,8220],{"type":51,"tag":311,"props":8187,"children":8188},{"style":2320},[8189],{"type":57,"value":7668},{"type":51,"tag":311,"props":8191,"children":8192},{"style":499},[8193],{"type":57,"value":2333},{"type":51,"tag":311,"props":8195,"children":8196},{"style":682},[8197],{"type":57,"value":8198}," Settings",{"type":51,"tag":311,"props":8200,"children":8201},{"style":499},[8202],{"type":57,"value":7748},{"type":51,"tag":311,"props":8204,"children":8205},{"style":2320},[8206],{"type":57,"value":7753},{"type":51,"tag":311,"props":8208,"children":8209},{"style":499},[8210],{"type":57,"value":2407},{"type":51,"tag":311,"props":8212,"children":8213},{"style":324},[8214],{"type":57,"value":8215},".\u002Fpages\u002FSettings",{"type":51,"tag":311,"props":8217,"children":8218},{"style":499},[8219],{"type":57,"value":2389},{"type":51,"tag":311,"props":8221,"children":8222},{"style":499},[8223],{"type":57,"value":4892},{"type":51,"tag":311,"props":8225,"children":8226},{"class":313,"line":678},[8227],{"type":51,"tag":311,"props":8228,"children":8229},{"emptyLinePlaceholder":4930},[8230],{"type":57,"value":4933},{"type":51,"tag":311,"props":8232,"children":8233},{"class":313,"line":688},[8234,8238,8242,8247,8252,8257],{"type":51,"tag":311,"props":8235,"children":8236},{"style":2320},[8237],{"type":57,"value":2357},{"type":51,"tag":311,"props":8239,"children":8240},{"style":2320},[8241],{"type":57,"value":2362},{"type":51,"tag":311,"props":8243,"children":8244},{"style":511},[8245],{"type":57,"value":8246}," function",{"type":51,"tag":311,"props":8248,"children":8249},{"style":359},[8250],{"type":57,"value":8251}," App",{"type":51,"tag":311,"props":8253,"children":8254},{"style":499},[8255],{"type":57,"value":8256},"()",{"type":51,"tag":311,"props":8258,"children":8259},{"style":499},[8260],{"type":57,"value":2367},{"type":51,"tag":311,"props":8262,"children":8263},{"class":313,"line":698},[8264,8269],{"type":51,"tag":311,"props":8265,"children":8266},{"style":2320},[8267],{"type":57,"value":8268},"  return",{"type":51,"tag":311,"props":8270,"children":8271},{"style":505},[8272],{"type":57,"value":8273}," (\n",{"type":51,"tag":311,"props":8275,"children":8276},{"class":313,"line":781},[8277,8281,8286],{"type":51,"tag":311,"props":8278,"children":8279},{"style":499},[8280],{"type":57,"value":584},{"type":51,"tag":311,"props":8282,"children":8283},{"style":318},[8284],{"type":57,"value":8285},"AppShell",{"type":51,"tag":311,"props":8287,"children":8288},{"style":499},[8289],{"type":57,"value":519},{"type":51,"tag":311,"props":8291,"children":8292},{"class":313,"line":860},[8293,8297,8302,8307,8311,8315,8320,8324],{"type":51,"tag":311,"props":8294,"children":8295},{"style":499},[8296],{"type":57,"value":7948},{"type":51,"tag":311,"props":8298,"children":8299},{"style":318},[8300],{"type":57,"value":8301},"AnimatePresence",{"type":51,"tag":311,"props":8303,"children":8304},{"style":511},[8305],{"type":57,"value":8306}," mode",{"type":51,"tag":311,"props":8308,"children":8309},{"style":499},[8310],{"type":57,"value":541},{"type":51,"tag":311,"props":8312,"children":8313},{"style":499},[8314],{"type":57,"value":546},{"type":51,"tag":311,"props":8316,"children":8317},{"style":324},[8318],{"type":57,"value":8319},"wait",{"type":51,"tag":311,"props":8321,"children":8322},{"style":499},[8323],{"type":57,"value":546},{"type":51,"tag":311,"props":8325,"children":8326},{"style":499},[8327],{"type":57,"value":519},{"type":51,"tag":311,"props":8329,"children":8330},{"class":313,"line":918},[8331,8336,8341],{"type":51,"tag":311,"props":8332,"children":8333},{"style":499},[8334],{"type":57,"value":8335},"        \u003C",{"type":51,"tag":311,"props":8337,"children":8338},{"style":318},[8339],{"type":57,"value":8340},"Routes",{"type":51,"tag":311,"props":8342,"children":8343},{"style":499},[8344],{"type":57,"value":519},{"type":51,"tag":311,"props":8346,"children":8347},{"class":313,"line":976},[8348,8353,8358,8363,8367,8371,8376,8380,8385,8390,8395],{"type":51,"tag":311,"props":8349,"children":8350},{"style":499},[8351],{"type":57,"value":8352},"          \u003C",{"type":51,"tag":311,"props":8354,"children":8355},{"style":318},[8356],{"type":57,"value":8357},"Route",{"type":51,"tag":311,"props":8359,"children":8360},{"style":511},[8361],{"type":57,"value":8362}," path",{"type":51,"tag":311,"props":8364,"children":8365},{"style":499},[8366],{"type":57,"value":541},{"type":51,"tag":311,"props":8368,"children":8369},{"style":499},[8370],{"type":57,"value":546},{"type":51,"tag":311,"props":8372,"children":8373},{"style":324},[8374],{"type":57,"value":8375},"\u002F",{"type":51,"tag":311,"props":8377,"children":8378},{"style":499},[8379],{"type":57,"value":546},{"type":51,"tag":311,"props":8381,"children":8382},{"style":511},[8383],{"type":57,"value":8384}," element",{"type":51,"tag":311,"props":8386,"children":8387},{"style":499},[8388],{"type":57,"value":8389},"={\u003C",{"type":51,"tag":311,"props":8391,"children":8392},{"style":318},[8393],{"type":57,"value":8394},"Dashboard",{"type":51,"tag":311,"props":8396,"children":8397},{"style":499},[8398],{"type":57,"value":8399}," \u002F>} \u002F>\n",{"type":51,"tag":311,"props":8401,"children":8402},{"class":313,"line":984},[8403,8407,8411,8415,8419,8423,8428,8432,8436,8440,8445],{"type":51,"tag":311,"props":8404,"children":8405},{"style":499},[8406],{"type":57,"value":8352},{"type":51,"tag":311,"props":8408,"children":8409},{"style":318},[8410],{"type":57,"value":8357},{"type":51,"tag":311,"props":8412,"children":8413},{"style":511},[8414],{"type":57,"value":8362},{"type":51,"tag":311,"props":8416,"children":8417},{"style":499},[8418],{"type":57,"value":541},{"type":51,"tag":311,"props":8420,"children":8421},{"style":499},[8422],{"type":57,"value":546},{"type":51,"tag":311,"props":8424,"children":8425},{"style":324},[8426],{"type":57,"value":8427},"\u002Fsettings",{"type":51,"tag":311,"props":8429,"children":8430},{"style":499},[8431],{"type":57,"value":546},{"type":51,"tag":311,"props":8433,"children":8434},{"style":511},[8435],{"type":57,"value":8384},{"type":51,"tag":311,"props":8437,"children":8438},{"style":499},[8439],{"type":57,"value":8389},{"type":51,"tag":311,"props":8441,"children":8442},{"style":318},[8443],{"type":57,"value":8444},"Settings",{"type":51,"tag":311,"props":8446,"children":8447},{"style":499},[8448],{"type":57,"value":8399},{"type":51,"tag":311,"props":8450,"children":8451},{"class":313,"line":993},[8452,8457,8461],{"type":51,"tag":311,"props":8453,"children":8454},{"style":499},[8455],{"type":57,"value":8456},"        \u003C\u002F",{"type":51,"tag":311,"props":8458,"children":8459},{"style":318},[8460],{"type":57,"value":8340},{"type":51,"tag":311,"props":8462,"children":8463},{"style":499},[8464],{"type":57,"value":519},{"type":51,"tag":311,"props":8466,"children":8467},{"class":313,"line":1051},[8468,8473,8477],{"type":51,"tag":311,"props":8469,"children":8470},{"style":499},[8471],{"type":57,"value":8472},"      \u003C\u002F",{"type":51,"tag":311,"props":8474,"children":8475},{"style":318},[8476],{"type":57,"value":8301},{"type":51,"tag":311,"props":8478,"children":8479},{"style":499},[8480],{"type":57,"value":519},{"type":51,"tag":311,"props":8482,"children":8483},{"class":313,"line":1059},[8484,8488,8492],{"type":51,"tag":311,"props":8485,"children":8486},{"style":499},[8487],{"type":57,"value":7964},{"type":51,"tag":311,"props":8489,"children":8490},{"style":318},[8491],{"type":57,"value":8285},{"type":51,"tag":311,"props":8493,"children":8494},{"style":499},[8495],{"type":57,"value":519},{"type":51,"tag":311,"props":8497,"children":8498},{"class":313,"line":1068},[8499,8504],{"type":51,"tag":311,"props":8500,"children":8501},{"style":505},[8502],{"type":57,"value":8503},"  )",{"type":51,"tag":311,"props":8505,"children":8506},{"style":499},[8507],{"type":57,"value":4892},{"type":51,"tag":311,"props":8509,"children":8510},{"class":313,"line":1127},[8511],{"type":51,"tag":311,"props":8512,"children":8513},{"style":499},[8514],{"type":57,"value":2294},{"type":51,"tag":80,"props":8516,"children":8518},{"id":8517},"animation-patterns",[8519],{"type":57,"value":8520},"Animation Patterns",{"type":51,"tag":474,"props":8522,"children":8524},{"id":8523},"framer-motion-variants",[8525],{"type":57,"value":8526},"Framer Motion Variants",{"type":51,"tag":300,"props":8528,"children":8530},{"className":7654,"code":8529,"language":7656,"meta":305,"style":305},"\u002F\u002F Fade in on mount\nexport const fadeIn = {\n  initial: { opacity: 0 },\n  animate: { opacity: 1 },\n  exit: { opacity: 0 },\n  transition: { duration: 0.2 },\n};\n\n\u002F\u002F Slide up on mount\nexport const slideUp = {\n  initial: { opacity: 0, y: 20 },\n  animate: { opacity: 1, y: 0 },\n  exit: { opacity: 0, y: 20 },\n  transition: { duration: 0.3, ease: 'easeOut' },\n};\n\n\u002F\u002F Scale on hover (for buttons\u002Fcards)\nexport const scaleOnHover = {\n  whileHover: { scale: 1.02 },\n  whileTap: { scale: 0.98 },\n  transition: { type: 'spring', stiffness: 400, damping: 17 },\n};\n\n\u002F\u002F Stagger children\nexport const staggerContainer = {\n  hidden: { opacity: 0 },\n  visible: {\n    opacity: 1,\n    transition: {\n      staggerChildren: 0.05,\n      delayChildren: 0.1,\n    },\n  },\n};\n\nexport const staggerItem = {\n  hidden: { opacity: 0, y: 10 },\n  visible: {\n    opacity: 1,\n    y: 0,\n    transition: { duration: 0.2, ease: 'easeOut' },\n  },\n};\n",[8531],{"type":51,"tag":126,"props":8532,"children":8533},{"__ignoreMap":305},[8534,8542,8566,8599,8632,8664,8698,8705,8712,8720,8743,8792,8839,8886,8943,8950,8957,8965,8989,9023,9056,9131,9138,9145,9153,9177,9209,9225,9245,9261,9282,9303,9310,9317,9324,9331,9355,9403,9418,9437,9457,9512,9519],{"type":51,"tag":311,"props":8535,"children":8536},{"class":313,"line":314},[8537],{"type":51,"tag":311,"props":8538,"children":8539},{"style":692},[8540],{"type":57,"value":8541},"\u002F\u002F Fade in on mount\n",{"type":51,"tag":311,"props":8543,"children":8544},{"class":313,"line":355},[8545,8549,8554,8558,8562],{"type":51,"tag":311,"props":8546,"children":8547},{"style":2320},[8548],{"type":57,"value":2357},{"type":51,"tag":311,"props":8550,"children":8551},{"style":511},[8552],{"type":57,"value":8553}," const",{"type":51,"tag":311,"props":8555,"children":8556},{"style":682},[8557],{"type":57,"value":7598},{"type":51,"tag":311,"props":8559,"children":8560},{"style":499},[8561],{"type":57,"value":541},{"type":51,"tag":311,"props":8563,"children":8564},{"style":499},[8565],{"type":57,"value":2367},{"type":51,"tag":311,"props":8567,"children":8568},{"class":313,"line":370},[8569,8574,8578,8582,8586,8590,8595],{"type":51,"tag":311,"props":8570,"children":8571},{"style":505},[8572],{"type":57,"value":8573},"  initial",{"type":51,"tag":311,"props":8575,"children":8576},{"style":499},[8577],{"type":57,"value":1876},{"type":51,"tag":311,"props":8579,"children":8580},{"style":499},[8581],{"type":57,"value":2333},{"type":51,"tag":311,"props":8583,"children":8584},{"style":505},[8585],{"type":57,"value":3972},{"type":51,"tag":311,"props":8587,"children":8588},{"style":499},[8589],{"type":57,"value":1876},{"type":51,"tag":311,"props":8591,"children":8592},{"style":5064},[8593],{"type":57,"value":8594}," 0",{"type":51,"tag":311,"props":8596,"children":8597},{"style":499},[8598],{"type":57,"value":2066},{"type":51,"tag":311,"props":8600,"children":8601},{"class":313,"line":398},[8602,8607,8611,8615,8619,8623,8628],{"type":51,"tag":311,"props":8603,"children":8604},{"style":505},[8605],{"type":57,"value":8606},"  animate",{"type":51,"tag":311,"props":8608,"children":8609},{"style":499},[8610],{"type":57,"value":1876},{"type":51,"tag":311,"props":8612,"children":8613},{"style":499},[8614],{"type":57,"value":2333},{"type":51,"tag":311,"props":8616,"children":8617},{"style":505},[8618],{"type":57,"value":3972},{"type":51,"tag":311,"props":8620,"children":8621},{"style":499},[8622],{"type":57,"value":1876},{"type":51,"tag":311,"props":8624,"children":8625},{"style":5064},[8626],{"type":57,"value":8627}," 1",{"type":51,"tag":311,"props":8629,"children":8630},{"style":499},[8631],{"type":57,"value":2066},{"type":51,"tag":311,"props":8633,"children":8634},{"class":313,"line":430},[8635,8640,8644,8648,8652,8656,8660],{"type":51,"tag":311,"props":8636,"children":8637},{"style":505},[8638],{"type":57,"value":8639},"  exit",{"type":51,"tag":311,"props":8641,"children":8642},{"style":499},[8643],{"type":57,"value":1876},{"type":51,"tag":311,"props":8645,"children":8646},{"style":499},[8647],{"type":57,"value":2333},{"type":51,"tag":311,"props":8649,"children":8650},{"style":505},[8651],{"type":57,"value":3972},{"type":51,"tag":311,"props":8653,"children":8654},{"style":499},[8655],{"type":57,"value":1876},{"type":51,"tag":311,"props":8657,"children":8658},{"style":5064},[8659],{"type":57,"value":8594},{"type":51,"tag":311,"props":8661,"children":8662},{"style":499},[8663],{"type":57,"value":2066},{"type":51,"tag":311,"props":8665,"children":8666},{"class":313,"line":678},[8667,8672,8676,8680,8685,8689,8694],{"type":51,"tag":311,"props":8668,"children":8669},{"style":505},[8670],{"type":57,"value":8671},"  transition",{"type":51,"tag":311,"props":8673,"children":8674},{"style":499},[8675],{"type":57,"value":1876},{"type":51,"tag":311,"props":8677,"children":8678},{"style":499},[8679],{"type":57,"value":2333},{"type":51,"tag":311,"props":8681,"children":8682},{"style":505},[8683],{"type":57,"value":8684}," duration",{"type":51,"tag":311,"props":8686,"children":8687},{"style":499},[8688],{"type":57,"value":1876},{"type":51,"tag":311,"props":8690,"children":8691},{"style":5064},[8692],{"type":57,"value":8693}," 0.2",{"type":51,"tag":311,"props":8695,"children":8696},{"style":499},[8697],{"type":57,"value":2066},{"type":51,"tag":311,"props":8699,"children":8700},{"class":313,"line":688},[8701],{"type":51,"tag":311,"props":8702,"children":8703},{"style":499},[8704],{"type":57,"value":4769},{"type":51,"tag":311,"props":8706,"children":8707},{"class":313,"line":698},[8708],{"type":51,"tag":311,"props":8709,"children":8710},{"emptyLinePlaceholder":4930},[8711],{"type":57,"value":4933},{"type":51,"tag":311,"props":8713,"children":8714},{"class":313,"line":781},[8715],{"type":51,"tag":311,"props":8716,"children":8717},{"style":692},[8718],{"type":57,"value":8719},"\u002F\u002F Slide up on mount\n",{"type":51,"tag":311,"props":8721,"children":8722},{"class":313,"line":860},[8723,8727,8731,8735,8739],{"type":51,"tag":311,"props":8724,"children":8725},{"style":2320},[8726],{"type":57,"value":2357},{"type":51,"tag":311,"props":8728,"children":8729},{"style":511},[8730],{"type":57,"value":8553},{"type":51,"tag":311,"props":8732,"children":8733},{"style":682},[8734],{"type":57,"value":7617},{"type":51,"tag":311,"props":8736,"children":8737},{"style":499},[8738],{"type":57,"value":541},{"type":51,"tag":311,"props":8740,"children":8741},{"style":499},[8742],{"type":57,"value":2367},{"type":51,"tag":311,"props":8744,"children":8745},{"class":313,"line":918},[8746,8750,8754,8758,8762,8766,8770,8774,8779,8783,8788],{"type":51,"tag":311,"props":8747,"children":8748},{"style":505},[8749],{"type":57,"value":8573},{"type":51,"tag":311,"props":8751,"children":8752},{"style":499},[8753],{"type":57,"value":1876},{"type":51,"tag":311,"props":8755,"children":8756},{"style":499},[8757],{"type":57,"value":2333},{"type":51,"tag":311,"props":8759,"children":8760},{"style":505},[8761],{"type":57,"value":3972},{"type":51,"tag":311,"props":8763,"children":8764},{"style":499},[8765],{"type":57,"value":1876},{"type":51,"tag":311,"props":8767,"children":8768},{"style":5064},[8769],{"type":57,"value":8594},{"type":51,"tag":311,"props":8771,"children":8772},{"style":499},[8773],{"type":57,"value":1998},{"type":51,"tag":311,"props":8775,"children":8776},{"style":505},[8777],{"type":57,"value":8778}," y",{"type":51,"tag":311,"props":8780,"children":8781},{"style":499},[8782],{"type":57,"value":1876},{"type":51,"tag":311,"props":8784,"children":8785},{"style":5064},[8786],{"type":57,"value":8787}," 20",{"type":51,"tag":311,"props":8789,"children":8790},{"style":499},[8791],{"type":57,"value":2066},{"type":51,"tag":311,"props":8793,"children":8794},{"class":313,"line":976},[8795,8799,8803,8807,8811,8815,8819,8823,8827,8831,8835],{"type":51,"tag":311,"props":8796,"children":8797},{"style":505},[8798],{"type":57,"value":8606},{"type":51,"tag":311,"props":8800,"children":8801},{"style":499},[8802],{"type":57,"value":1876},{"type":51,"tag":311,"props":8804,"children":8805},{"style":499},[8806],{"type":57,"value":2333},{"type":51,"tag":311,"props":8808,"children":8809},{"style":505},[8810],{"type":57,"value":3972},{"type":51,"tag":311,"props":8812,"children":8813},{"style":499},[8814],{"type":57,"value":1876},{"type":51,"tag":311,"props":8816,"children":8817},{"style":5064},[8818],{"type":57,"value":8627},{"type":51,"tag":311,"props":8820,"children":8821},{"style":499},[8822],{"type":57,"value":1998},{"type":51,"tag":311,"props":8824,"children":8825},{"style":505},[8826],{"type":57,"value":8778},{"type":51,"tag":311,"props":8828,"children":8829},{"style":499},[8830],{"type":57,"value":1876},{"type":51,"tag":311,"props":8832,"children":8833},{"style":5064},[8834],{"type":57,"value":8594},{"type":51,"tag":311,"props":8836,"children":8837},{"style":499},[8838],{"type":57,"value":2066},{"type":51,"tag":311,"props":8840,"children":8841},{"class":313,"line":984},[8842,8846,8850,8854,8858,8862,8866,8870,8874,8878,8882],{"type":51,"tag":311,"props":8843,"children":8844},{"style":505},[8845],{"type":57,"value":8639},{"type":51,"tag":311,"props":8847,"children":8848},{"style":499},[8849],{"type":57,"value":1876},{"type":51,"tag":311,"props":8851,"children":8852},{"style":499},[8853],{"type":57,"value":2333},{"type":51,"tag":311,"props":8855,"children":8856},{"style":505},[8857],{"type":57,"value":3972},{"type":51,"tag":311,"props":8859,"children":8860},{"style":499},[8861],{"type":57,"value":1876},{"type":51,"tag":311,"props":8863,"children":8864},{"style":5064},[8865],{"type":57,"value":8594},{"type":51,"tag":311,"props":8867,"children":8868},{"style":499},[8869],{"type":57,"value":1998},{"type":51,"tag":311,"props":8871,"children":8872},{"style":505},[8873],{"type":57,"value":8778},{"type":51,"tag":311,"props":8875,"children":8876},{"style":499},[8877],{"type":57,"value":1876},{"type":51,"tag":311,"props":8879,"children":8880},{"style":5064},[8881],{"type":57,"value":8787},{"type":51,"tag":311,"props":8883,"children":8884},{"style":499},[8885],{"type":57,"value":2066},{"type":51,"tag":311,"props":8887,"children":8888},{"class":313,"line":993},[8889,8893,8897,8901,8905,8909,8914,8918,8922,8926,8930,8935,8939],{"type":51,"tag":311,"props":8890,"children":8891},{"style":505},[8892],{"type":57,"value":8671},{"type":51,"tag":311,"props":8894,"children":8895},{"style":499},[8896],{"type":57,"value":1876},{"type":51,"tag":311,"props":8898,"children":8899},{"style":499},[8900],{"type":57,"value":2333},{"type":51,"tag":311,"props":8902,"children":8903},{"style":505},[8904],{"type":57,"value":8684},{"type":51,"tag":311,"props":8906,"children":8907},{"style":499},[8908],{"type":57,"value":1876},{"type":51,"tag":311,"props":8910,"children":8911},{"style":5064},[8912],{"type":57,"value":8913}," 0.3",{"type":51,"tag":311,"props":8915,"children":8916},{"style":499},[8917],{"type":57,"value":1998},{"type":51,"tag":311,"props":8919,"children":8920},{"style":505},[8921],{"type":57,"value":6747},{"type":51,"tag":311,"props":8923,"children":8924},{"style":499},[8925],{"type":57,"value":1876},{"type":51,"tag":311,"props":8927,"children":8928},{"style":499},[8929],{"type":57,"value":2407},{"type":51,"tag":311,"props":8931,"children":8932},{"style":324},[8933],{"type":57,"value":8934},"easeOut",{"type":51,"tag":311,"props":8936,"children":8937},{"style":499},[8938],{"type":57,"value":2389},{"type":51,"tag":311,"props":8940,"children":8941},{"style":499},[8942],{"type":57,"value":2066},{"type":51,"tag":311,"props":8944,"children":8945},{"class":313,"line":1051},[8946],{"type":51,"tag":311,"props":8947,"children":8948},{"style":499},[8949],{"type":57,"value":4769},{"type":51,"tag":311,"props":8951,"children":8952},{"class":313,"line":1059},[8953],{"type":51,"tag":311,"props":8954,"children":8955},{"emptyLinePlaceholder":4930},[8956],{"type":57,"value":4933},{"type":51,"tag":311,"props":8958,"children":8959},{"class":313,"line":1068},[8960],{"type":51,"tag":311,"props":8961,"children":8962},{"style":692},[8963],{"type":57,"value":8964},"\u002F\u002F Scale on hover (for buttons\u002Fcards)\n",{"type":51,"tag":311,"props":8966,"children":8967},{"class":313,"line":1127},[8968,8972,8976,8981,8985],{"type":51,"tag":311,"props":8969,"children":8970},{"style":2320},[8971],{"type":57,"value":2357},{"type":51,"tag":311,"props":8973,"children":8974},{"style":511},[8975],{"type":57,"value":8553},{"type":51,"tag":311,"props":8977,"children":8978},{"style":682},[8979],{"type":57,"value":8980}," scaleOnHover ",{"type":51,"tag":311,"props":8982,"children":8983},{"style":499},[8984],{"type":57,"value":541},{"type":51,"tag":311,"props":8986,"children":8987},{"style":499},[8988],{"type":57,"value":2367},{"type":51,"tag":311,"props":8990,"children":8991},{"class":313,"line":1185},[8992,8997,9001,9005,9010,9014,9019],{"type":51,"tag":311,"props":8993,"children":8994},{"style":505},[8995],{"type":57,"value":8996},"  whileHover",{"type":51,"tag":311,"props":8998,"children":8999},{"style":499},[9000],{"type":57,"value":1876},{"type":51,"tag":311,"props":9002,"children":9003},{"style":499},[9004],{"type":57,"value":2333},{"type":51,"tag":311,"props":9006,"children":9007},{"style":505},[9008],{"type":57,"value":9009}," scale",{"type":51,"tag":311,"props":9011,"children":9012},{"style":499},[9013],{"type":57,"value":1876},{"type":51,"tag":311,"props":9015,"children":9016},{"style":5064},[9017],{"type":57,"value":9018}," 1.02",{"type":51,"tag":311,"props":9020,"children":9021},{"style":499},[9022],{"type":57,"value":2066},{"type":51,"tag":311,"props":9024,"children":9025},{"class":313,"line":1243},[9026,9031,9035,9039,9043,9047,9052],{"type":51,"tag":311,"props":9027,"children":9028},{"style":505},[9029],{"type":57,"value":9030},"  whileTap",{"type":51,"tag":311,"props":9032,"children":9033},{"style":499},[9034],{"type":57,"value":1876},{"type":51,"tag":311,"props":9036,"children":9037},{"style":499},[9038],{"type":57,"value":2333},{"type":51,"tag":311,"props":9040,"children":9041},{"style":505},[9042],{"type":57,"value":9009},{"type":51,"tag":311,"props":9044,"children":9045},{"style":499},[9046],{"type":57,"value":1876},{"type":51,"tag":311,"props":9048,"children":9049},{"style":5064},[9050],{"type":57,"value":9051}," 0.98",{"type":51,"tag":311,"props":9053,"children":9054},{"style":499},[9055],{"type":57,"value":2066},{"type":51,"tag":311,"props":9057,"children":9058},{"class":313,"line":1301},[9059,9063,9067,9071,9075,9079,9083,9088,9092,9096,9101,9105,9109,9113,9118,9122,9127],{"type":51,"tag":311,"props":9060,"children":9061},{"style":505},[9062],{"type":57,"value":8671},{"type":51,"tag":311,"props":9064,"children":9065},{"style":499},[9066],{"type":57,"value":1876},{"type":51,"tag":311,"props":9068,"children":9069},{"style":499},[9070],{"type":57,"value":2333},{"type":51,"tag":311,"props":9072,"children":9073},{"style":505},[9074],{"type":57,"value":836},{"type":51,"tag":311,"props":9076,"children":9077},{"style":499},[9078],{"type":57,"value":1876},{"type":51,"tag":311,"props":9080,"children":9081},{"style":499},[9082],{"type":57,"value":2407},{"type":51,"tag":311,"props":9084,"children":9085},{"style":324},[9086],{"type":57,"value":9087},"spring",{"type":51,"tag":311,"props":9089,"children":9090},{"style":499},[9091],{"type":57,"value":2389},{"type":51,"tag":311,"props":9093,"children":9094},{"style":499},[9095],{"type":57,"value":1998},{"type":51,"tag":311,"props":9097,"children":9098},{"style":505},[9099],{"type":57,"value":9100}," stiffness",{"type":51,"tag":311,"props":9102,"children":9103},{"style":499},[9104],{"type":57,"value":1876},{"type":51,"tag":311,"props":9106,"children":9107},{"style":5064},[9108],{"type":57,"value":5067},{"type":51,"tag":311,"props":9110,"children":9111},{"style":499},[9112],{"type":57,"value":1998},{"type":51,"tag":311,"props":9114,"children":9115},{"style":505},[9116],{"type":57,"value":9117}," damping",{"type":51,"tag":311,"props":9119,"children":9120},{"style":499},[9121],{"type":57,"value":1876},{"type":51,"tag":311,"props":9123,"children":9124},{"style":5064},[9125],{"type":57,"value":9126}," 17",{"type":51,"tag":311,"props":9128,"children":9129},{"style":499},[9130],{"type":57,"value":2066},{"type":51,"tag":311,"props":9132,"children":9133},{"class":313,"line":1359},[9134],{"type":51,"tag":311,"props":9135,"children":9136},{"style":499},[9137],{"type":57,"value":4769},{"type":51,"tag":311,"props":9139,"children":9140},{"class":313,"line":1367},[9141],{"type":51,"tag":311,"props":9142,"children":9143},{"emptyLinePlaceholder":4930},[9144],{"type":57,"value":4933},{"type":51,"tag":311,"props":9146,"children":9147},{"class":313,"line":1376},[9148],{"type":51,"tag":311,"props":9149,"children":9150},{"style":692},[9151],{"type":57,"value":9152},"\u002F\u002F Stagger children\n",{"type":51,"tag":311,"props":9154,"children":9155},{"class":313,"line":1434},[9156,9160,9164,9169,9173],{"type":51,"tag":311,"props":9157,"children":9158},{"style":2320},[9159],{"type":57,"value":2357},{"type":51,"tag":311,"props":9161,"children":9162},{"style":511},[9163],{"type":57,"value":8553},{"type":51,"tag":311,"props":9165,"children":9166},{"style":682},[9167],{"type":57,"value":9168}," staggerContainer ",{"type":51,"tag":311,"props":9170,"children":9171},{"style":499},[9172],{"type":57,"value":541},{"type":51,"tag":311,"props":9174,"children":9175},{"style":499},[9176],{"type":57,"value":2367},{"type":51,"tag":311,"props":9178,"children":9179},{"class":313,"line":1491},[9180,9185,9189,9193,9197,9201,9205],{"type":51,"tag":311,"props":9181,"children":9182},{"style":505},[9183],{"type":57,"value":9184},"  hidden",{"type":51,"tag":311,"props":9186,"children":9187},{"style":499},[9188],{"type":57,"value":1876},{"type":51,"tag":311,"props":9190,"children":9191},{"style":499},[9192],{"type":57,"value":2333},{"type":51,"tag":311,"props":9194,"children":9195},{"style":505},[9196],{"type":57,"value":3972},{"type":51,"tag":311,"props":9198,"children":9199},{"style":499},[9200],{"type":57,"value":1876},{"type":51,"tag":311,"props":9202,"children":9203},{"style":5064},[9204],{"type":57,"value":8594},{"type":51,"tag":311,"props":9206,"children":9207},{"style":499},[9208],{"type":57,"value":2066},{"type":51,"tag":311,"props":9210,"children":9211},{"class":313,"line":1548},[9212,9217,9221],{"type":51,"tag":311,"props":9213,"children":9214},{"style":505},[9215],{"type":57,"value":9216},"  visible",{"type":51,"tag":311,"props":9218,"children":9219},{"style":499},[9220],{"type":57,"value":1876},{"type":51,"tag":311,"props":9222,"children":9223},{"style":499},[9224],{"type":57,"value":2367},{"type":51,"tag":311,"props":9226,"children":9227},{"class":313,"line":1605},[9228,9233,9237,9241],{"type":51,"tag":311,"props":9229,"children":9230},{"style":505},[9231],{"type":57,"value":9232},"    opacity",{"type":51,"tag":311,"props":9234,"children":9235},{"style":499},[9236],{"type":57,"value":1876},{"type":51,"tag":311,"props":9238,"children":9239},{"style":5064},[9240],{"type":57,"value":8627},{"type":51,"tag":311,"props":9242,"children":9243},{"style":499},[9244],{"type":57,"value":1894},{"type":51,"tag":311,"props":9246,"children":9247},{"class":313,"line":1613},[9248,9253,9257],{"type":51,"tag":311,"props":9249,"children":9250},{"style":505},[9251],{"type":57,"value":9252},"    transition",{"type":51,"tag":311,"props":9254,"children":9255},{"style":499},[9256],{"type":57,"value":1876},{"type":51,"tag":311,"props":9258,"children":9259},{"style":499},[9260],{"type":57,"value":2367},{"type":51,"tag":311,"props":9262,"children":9263},{"class":313,"line":1648},[9264,9269,9273,9278],{"type":51,"tag":311,"props":9265,"children":9266},{"style":505},[9267],{"type":57,"value":9268},"      staggerChildren",{"type":51,"tag":311,"props":9270,"children":9271},{"style":499},[9272],{"type":57,"value":1876},{"type":51,"tag":311,"props":9274,"children":9275},{"style":5064},[9276],{"type":57,"value":9277}," 0.05",{"type":51,"tag":311,"props":9279,"children":9280},{"style":499},[9281],{"type":57,"value":1894},{"type":51,"tag":311,"props":9283,"children":9284},{"class":313,"line":1665},[9285,9290,9294,9299],{"type":51,"tag":311,"props":9286,"children":9287},{"style":505},[9288],{"type":57,"value":9289},"      delayChildren",{"type":51,"tag":311,"props":9291,"children":9292},{"style":499},[9293],{"type":57,"value":1876},{"type":51,"tag":311,"props":9295,"children":9296},{"style":5064},[9297],{"type":57,"value":9298}," 0.1",{"type":51,"tag":311,"props":9300,"children":9301},{"style":499},[9302],{"type":57,"value":1894},{"type":51,"tag":311,"props":9304,"children":9305},{"class":313,"line":1682},[9306],{"type":51,"tag":311,"props":9307,"children":9308},{"style":499},[9309],{"type":57,"value":4729},{"type":51,"tag":311,"props":9311,"children":9312},{"class":313,"line":1729},[9313],{"type":51,"tag":311,"props":9314,"children":9315},{"style":499},[9316],{"type":57,"value":4738},{"type":51,"tag":311,"props":9318,"children":9319},{"class":313,"line":1797},[9320],{"type":51,"tag":311,"props":9321,"children":9322},{"style":499},[9323],{"type":57,"value":4769},{"type":51,"tag":311,"props":9325,"children":9326},{"class":313,"line":1813},[9327],{"type":51,"tag":311,"props":9328,"children":9329},{"emptyLinePlaceholder":4930},[9330],{"type":57,"value":4933},{"type":51,"tag":311,"props":9332,"children":9333},{"class":313,"line":3171},[9334,9338,9342,9347,9351],{"type":51,"tag":311,"props":9335,"children":9336},{"style":2320},[9337],{"type":57,"value":2357},{"type":51,"tag":311,"props":9339,"children":9340},{"style":511},[9341],{"type":57,"value":8553},{"type":51,"tag":311,"props":9343,"children":9344},{"style":682},[9345],{"type":57,"value":9346}," staggerItem ",{"type":51,"tag":311,"props":9348,"children":9349},{"style":499},[9350],{"type":57,"value":541},{"type":51,"tag":311,"props":9352,"children":9353},{"style":499},[9354],{"type":57,"value":2367},{"type":51,"tag":311,"props":9356,"children":9357},{"class":313,"line":3201},[9358,9362,9366,9370,9374,9378,9382,9386,9390,9394,9399],{"type":51,"tag":311,"props":9359,"children":9360},{"style":505},[9361],{"type":57,"value":9184},{"type":51,"tag":311,"props":9363,"children":9364},{"style":499},[9365],{"type":57,"value":1876},{"type":51,"tag":311,"props":9367,"children":9368},{"style":499},[9369],{"type":57,"value":2333},{"type":51,"tag":311,"props":9371,"children":9372},{"style":505},[9373],{"type":57,"value":3972},{"type":51,"tag":311,"props":9375,"children":9376},{"style":499},[9377],{"type":57,"value":1876},{"type":51,"tag":311,"props":9379,"children":9380},{"style":5064},[9381],{"type":57,"value":8594},{"type":51,"tag":311,"props":9383,"children":9384},{"style":499},[9385],{"type":57,"value":1998},{"type":51,"tag":311,"props":9387,"children":9388},{"style":505},[9389],{"type":57,"value":8778},{"type":51,"tag":311,"props":9391,"children":9392},{"style":499},[9393],{"type":57,"value":1876},{"type":51,"tag":311,"props":9395,"children":9396},{"style":5064},[9397],{"type":57,"value":9398}," 10",{"type":51,"tag":311,"props":9400,"children":9401},{"style":499},[9402],{"type":57,"value":2066},{"type":51,"tag":311,"props":9404,"children":9405},{"class":313,"line":3231},[9406,9410,9414],{"type":51,"tag":311,"props":9407,"children":9408},{"style":505},[9409],{"type":57,"value":9216},{"type":51,"tag":311,"props":9411,"children":9412},{"style":499},[9413],{"type":57,"value":1876},{"type":51,"tag":311,"props":9415,"children":9416},{"style":499},[9417],{"type":57,"value":2367},{"type":51,"tag":311,"props":9419,"children":9420},{"class":313,"line":3261},[9421,9425,9429,9433],{"type":51,"tag":311,"props":9422,"children":9423},{"style":505},[9424],{"type":57,"value":9232},{"type":51,"tag":311,"props":9426,"children":9427},{"style":499},[9428],{"type":57,"value":1876},{"type":51,"tag":311,"props":9430,"children":9431},{"style":5064},[9432],{"type":57,"value":8627},{"type":51,"tag":311,"props":9434,"children":9435},{"style":499},[9436],{"type":57,"value":1894},{"type":51,"tag":311,"props":9438,"children":9439},{"class":313,"line":3269},[9440,9445,9449,9453],{"type":51,"tag":311,"props":9441,"children":9442},{"style":505},[9443],{"type":57,"value":9444},"    y",{"type":51,"tag":311,"props":9446,"children":9447},{"style":499},[9448],{"type":57,"value":1876},{"type":51,"tag":311,"props":9450,"children":9451},{"style":5064},[9452],{"type":57,"value":8594},{"type":51,"tag":311,"props":9454,"children":9455},{"style":499},[9456],{"type":57,"value":1894},{"type":51,"tag":311,"props":9458,"children":9459},{"class":313,"line":3286},[9460,9464,9468,9472,9476,9480,9484,9488,9492,9496,9500,9504,9508],{"type":51,"tag":311,"props":9461,"children":9462},{"style":505},[9463],{"type":57,"value":9252},{"type":51,"tag":311,"props":9465,"children":9466},{"style":499},[9467],{"type":57,"value":1876},{"type":51,"tag":311,"props":9469,"children":9470},{"style":499},[9471],{"type":57,"value":2333},{"type":51,"tag":311,"props":9473,"children":9474},{"style":505},[9475],{"type":57,"value":8684},{"type":51,"tag":311,"props":9477,"children":9478},{"style":499},[9479],{"type":57,"value":1876},{"type":51,"tag":311,"props":9481,"children":9482},{"style":5064},[9483],{"type":57,"value":8693},{"type":51,"tag":311,"props":9485,"children":9486},{"style":499},[9487],{"type":57,"value":1998},{"type":51,"tag":311,"props":9489,"children":9490},{"style":505},[9491],{"type":57,"value":6747},{"type":51,"tag":311,"props":9493,"children":9494},{"style":499},[9495],{"type":57,"value":1876},{"type":51,"tag":311,"props":9497,"children":9498},{"style":499},[9499],{"type":57,"value":2407},{"type":51,"tag":311,"props":9501,"children":9502},{"style":324},[9503],{"type":57,"value":8934},{"type":51,"tag":311,"props":9505,"children":9506},{"style":499},[9507],{"type":57,"value":2389},{"type":51,"tag":311,"props":9509,"children":9510},{"style":499},[9511],{"type":57,"value":2066},{"type":51,"tag":311,"props":9513,"children":9514},{"class":313,"line":3315},[9515],{"type":51,"tag":311,"props":9516,"children":9517},{"style":499},[9518],{"type":57,"value":4738},{"type":51,"tag":311,"props":9520,"children":9521},{"class":313,"line":3344},[9522],{"type":51,"tag":311,"props":9523,"children":9524},{"style":499},[9525],{"type":57,"value":4769},{"type":51,"tag":474,"props":9527,"children":9529},{"id":9528},"page-transition-wrapper",[9530],{"type":57,"value":9531},"Page Transition Wrapper",{"type":51,"tag":300,"props":9533,"children":9535},{"className":7654,"code":9534,"language":7656,"meta":305,"style":305},"import { motion } from 'framer-motion';\nimport { ReactNode } from 'react';\n\ninterface PageTransitionProps {\n  children: ReactNode;\n}\n\nexport function PageTransition({ children }: PageTransitionProps) {\n  return (\n    \u003Cmotion.div\n      initial={{ opacity: 0, y: 20 }}\n      animate={{ opacity: 1, y: 0 }}\n      exit={{ opacity: 0, y: -20 }}\n      transition={{ duration: 0.3, ease: 'easeOut' }}\n    >\n      {children}\n    \u003C\u002Fmotion.div>\n  );\n}\n",[9536],{"type":51,"tag":126,"props":9537,"children":9538},{"__ignoreMap":305},[9539,9579,9619,9626,9643,9663,9670,9677,9721,9732,9744,9790,9834,9884,9936,9944,9961,9977,9988],{"type":51,"tag":311,"props":9540,"children":9541},{"class":313,"line":314},[9542,9546,9550,9555,9559,9563,9567,9571,9575],{"type":51,"tag":311,"props":9543,"children":9544},{"style":2320},[9545],{"type":57,"value":7668},{"type":51,"tag":311,"props":9547,"children":9548},{"style":499},[9549],{"type":57,"value":2333},{"type":51,"tag":311,"props":9551,"children":9552},{"style":682},[9553],{"type":57,"value":9554}," motion",{"type":51,"tag":311,"props":9556,"children":9557},{"style":499},[9558],{"type":57,"value":7748},{"type":51,"tag":311,"props":9560,"children":9561},{"style":2320},[9562],{"type":57,"value":7753},{"type":51,"tag":311,"props":9564,"children":9565},{"style":499},[9566],{"type":57,"value":2407},{"type":51,"tag":311,"props":9568,"children":9569},{"style":324},[9570],{"type":57,"value":195},{"type":51,"tag":311,"props":9572,"children":9573},{"style":499},[9574],{"type":57,"value":2389},{"type":51,"tag":311,"props":9576,"children":9577},{"style":499},[9578],{"type":57,"value":4892},{"type":51,"tag":311,"props":9580,"children":9581},{"class":313,"line":355},[9582,9586,9590,9595,9599,9603,9607,9611,9615],{"type":51,"tag":311,"props":9583,"children":9584},{"style":2320},[9585],{"type":57,"value":7668},{"type":51,"tag":311,"props":9587,"children":9588},{"style":499},[9589],{"type":57,"value":2333},{"type":51,"tag":311,"props":9591,"children":9592},{"style":682},[9593],{"type":57,"value":9594}," ReactNode",{"type":51,"tag":311,"props":9596,"children":9597},{"style":499},[9598],{"type":57,"value":7748},{"type":51,"tag":311,"props":9600,"children":9601},{"style":2320},[9602],{"type":57,"value":7753},{"type":51,"tag":311,"props":9604,"children":9605},{"style":499},[9606],{"type":57,"value":2407},{"type":51,"tag":311,"props":9608,"children":9609},{"style":324},[9610],{"type":57,"value":14},{"type":51,"tag":311,"props":9612,"children":9613},{"style":499},[9614],{"type":57,"value":2389},{"type":51,"tag":311,"props":9616,"children":9617},{"style":499},[9618],{"type":57,"value":4892},{"type":51,"tag":311,"props":9620,"children":9621},{"class":313,"line":370},[9622],{"type":51,"tag":311,"props":9623,"children":9624},{"emptyLinePlaceholder":4930},[9625],{"type":57,"value":4933},{"type":51,"tag":311,"props":9627,"children":9628},{"class":313,"line":398},[9629,9634,9639],{"type":51,"tag":311,"props":9630,"children":9631},{"style":511},[9632],{"type":57,"value":9633},"interface",{"type":51,"tag":311,"props":9635,"children":9636},{"style":318},[9637],{"type":57,"value":9638}," PageTransitionProps",{"type":51,"tag":311,"props":9640,"children":9641},{"style":499},[9642],{"type":57,"value":2367},{"type":51,"tag":311,"props":9644,"children":9645},{"class":313,"line":430},[9646,9651,9655,9659],{"type":51,"tag":311,"props":9647,"children":9648},{"style":505},[9649],{"type":57,"value":9650},"  children",{"type":51,"tag":311,"props":9652,"children":9653},{"style":499},[9654],{"type":57,"value":1876},{"type":51,"tag":311,"props":9656,"children":9657},{"style":318},[9658],{"type":57,"value":9594},{"type":51,"tag":311,"props":9660,"children":9661},{"style":499},[9662],{"type":57,"value":4892},{"type":51,"tag":311,"props":9664,"children":9665},{"class":313,"line":678},[9666],{"type":51,"tag":311,"props":9667,"children":9668},{"style":499},[9669],{"type":57,"value":2294},{"type":51,"tag":311,"props":9671,"children":9672},{"class":313,"line":688},[9673],{"type":51,"tag":311,"props":9674,"children":9675},{"emptyLinePlaceholder":4930},[9676],{"type":57,"value":4933},{"type":51,"tag":311,"props":9678,"children":9679},{"class":313,"line":698},[9680,9684,9688,9693,9698,9704,9709,9713,9717],{"type":51,"tag":311,"props":9681,"children":9682},{"style":2320},[9683],{"type":57,"value":2357},{"type":51,"tag":311,"props":9685,"children":9686},{"style":511},[9687],{"type":57,"value":8246},{"type":51,"tag":311,"props":9689,"children":9690},{"style":359},[9691],{"type":57,"value":9692}," PageTransition",{"type":51,"tag":311,"props":9694,"children":9695},{"style":499},[9696],{"type":57,"value":9697},"({",{"type":51,"tag":311,"props":9699,"children":9701},{"style":9700},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[9702],{"type":57,"value":9703}," children",{"type":51,"tag":311,"props":9705,"children":9706},{"style":499},[9707],{"type":57,"value":9708}," }:",{"type":51,"tag":311,"props":9710,"children":9711},{"style":318},[9712],{"type":57,"value":9638},{"type":51,"tag":311,"props":9714,"children":9715},{"style":499},[9716],{"type":57,"value":5022},{"type":51,"tag":311,"props":9718,"children":9719},{"style":499},[9720],{"type":57,"value":2367},{"type":51,"tag":311,"props":9722,"children":9723},{"class":313,"line":781},[9724,9728],{"type":51,"tag":311,"props":9725,"children":9726},{"style":2320},[9727],{"type":57,"value":8268},{"type":51,"tag":311,"props":9729,"children":9730},{"style":505},[9731],{"type":57,"value":8273},{"type":51,"tag":311,"props":9733,"children":9734},{"class":313,"line":860},[9735,9739],{"type":51,"tag":311,"props":9736,"children":9737},{"style":499},[9738],{"type":57,"value":584},{"type":51,"tag":311,"props":9740,"children":9741},{"style":318},[9742],{"type":57,"value":9743},"motion.div\n",{"type":51,"tag":311,"props":9745,"children":9746},{"class":313,"line":918},[9747,9752,9757,9761,9765,9769,9773,9777,9781,9785],{"type":51,"tag":311,"props":9748,"children":9749},{"style":511},[9750],{"type":57,"value":9751},"      initial",{"type":51,"tag":311,"props":9753,"children":9754},{"style":499},[9755],{"type":57,"value":9756},"={{",{"type":51,"tag":311,"props":9758,"children":9759},{"style":505},[9760],{"type":57,"value":3972},{"type":51,"tag":311,"props":9762,"children":9763},{"style":499},[9764],{"type":57,"value":1876},{"type":51,"tag":311,"props":9766,"children":9767},{"style":5064},[9768],{"type":57,"value":8594},{"type":51,"tag":311,"props":9770,"children":9771},{"style":499},[9772],{"type":57,"value":1998},{"type":51,"tag":311,"props":9774,"children":9775},{"style":505},[9776],{"type":57,"value":8778},{"type":51,"tag":311,"props":9778,"children":9779},{"style":499},[9780],{"type":57,"value":1876},{"type":51,"tag":311,"props":9782,"children":9783},{"style":5064},[9784],{"type":57,"value":8787},{"type":51,"tag":311,"props":9786,"children":9787},{"style":499},[9788],{"type":57,"value":9789}," }}\n",{"type":51,"tag":311,"props":9791,"children":9792},{"class":313,"line":976},[9793,9798,9802,9806,9810,9814,9818,9822,9826,9830],{"type":51,"tag":311,"props":9794,"children":9795},{"style":511},[9796],{"type":57,"value":9797},"      animate",{"type":51,"tag":311,"props":9799,"children":9800},{"style":499},[9801],{"type":57,"value":9756},{"type":51,"tag":311,"props":9803,"children":9804},{"style":505},[9805],{"type":57,"value":3972},{"type":51,"tag":311,"props":9807,"children":9808},{"style":499},[9809],{"type":57,"value":1876},{"type":51,"tag":311,"props":9811,"children":9812},{"style":5064},[9813],{"type":57,"value":8627},{"type":51,"tag":311,"props":9815,"children":9816},{"style":499},[9817],{"type":57,"value":1998},{"type":51,"tag":311,"props":9819,"children":9820},{"style":505},[9821],{"type":57,"value":8778},{"type":51,"tag":311,"props":9823,"children":9824},{"style":499},[9825],{"type":57,"value":1876},{"type":51,"tag":311,"props":9827,"children":9828},{"style":5064},[9829],{"type":57,"value":8594},{"type":51,"tag":311,"props":9831,"children":9832},{"style":499},[9833],{"type":57,"value":9789},{"type":51,"tag":311,"props":9835,"children":9836},{"class":313,"line":984},[9837,9842,9846,9850,9854,9858,9862,9866,9870,9875,9880],{"type":51,"tag":311,"props":9838,"children":9839},{"style":511},[9840],{"type":57,"value":9841},"      exit",{"type":51,"tag":311,"props":9843,"children":9844},{"style":499},[9845],{"type":57,"value":9756},{"type":51,"tag":311,"props":9847,"children":9848},{"style":505},[9849],{"type":57,"value":3972},{"type":51,"tag":311,"props":9851,"children":9852},{"style":499},[9853],{"type":57,"value":1876},{"type":51,"tag":311,"props":9855,"children":9856},{"style":5064},[9857],{"type":57,"value":8594},{"type":51,"tag":311,"props":9859,"children":9860},{"style":499},[9861],{"type":57,"value":1998},{"type":51,"tag":311,"props":9863,"children":9864},{"style":505},[9865],{"type":57,"value":8778},{"type":51,"tag":311,"props":9867,"children":9868},{"style":499},[9869],{"type":57,"value":1876},{"type":51,"tag":311,"props":9871,"children":9872},{"style":499},[9873],{"type":57,"value":9874}," -",{"type":51,"tag":311,"props":9876,"children":9877},{"style":5064},[9878],{"type":57,"value":9879},"20",{"type":51,"tag":311,"props":9881,"children":9882},{"style":499},[9883],{"type":57,"value":9789},{"type":51,"tag":311,"props":9885,"children":9886},{"class":313,"line":993},[9887,9892,9896,9900,9904,9908,9912,9916,9920,9924,9928,9932],{"type":51,"tag":311,"props":9888,"children":9889},{"style":511},[9890],{"type":57,"value":9891},"      transition",{"type":51,"tag":311,"props":9893,"children":9894},{"style":499},[9895],{"type":57,"value":9756},{"type":51,"tag":311,"props":9897,"children":9898},{"style":505},[9899],{"type":57,"value":8684},{"type":51,"tag":311,"props":9901,"children":9902},{"style":499},[9903],{"type":57,"value":1876},{"type":51,"tag":311,"props":9905,"children":9906},{"style":5064},[9907],{"type":57,"value":8913},{"type":51,"tag":311,"props":9909,"children":9910},{"style":499},[9911],{"type":57,"value":1998},{"type":51,"tag":311,"props":9913,"children":9914},{"style":505},[9915],{"type":57,"value":6747},{"type":51,"tag":311,"props":9917,"children":9918},{"style":499},[9919],{"type":57,"value":1876},{"type":51,"tag":311,"props":9921,"children":9922},{"style":499},[9923],{"type":57,"value":2407},{"type":51,"tag":311,"props":9925,"children":9926},{"style":324},[9927],{"type":57,"value":8934},{"type":51,"tag":311,"props":9929,"children":9930},{"style":499},[9931],{"type":57,"value":2389},{"type":51,"tag":311,"props":9933,"children":9934},{"style":499},[9935],{"type":57,"value":9789},{"type":51,"tag":311,"props":9937,"children":9938},{"class":313,"line":1051},[9939],{"type":51,"tag":311,"props":9940,"children":9941},{"style":499},[9942],{"type":57,"value":9943},"    >\n",{"type":51,"tag":311,"props":9945,"children":9946},{"class":313,"line":1059},[9947,9952,9957],{"type":51,"tag":311,"props":9948,"children":9949},{"style":499},[9950],{"type":57,"value":9951},"      {",{"type":51,"tag":311,"props":9953,"children":9954},{"style":682},[9955],{"type":57,"value":9956},"children",{"type":51,"tag":311,"props":9958,"children":9959},{"style":499},[9960],{"type":57,"value":2294},{"type":51,"tag":311,"props":9962,"children":9963},{"class":313,"line":1068},[9964,9968,9973],{"type":51,"tag":311,"props":9965,"children":9966},{"style":499},[9967],{"type":57,"value":7964},{"type":51,"tag":311,"props":9969,"children":9970},{"style":318},[9971],{"type":57,"value":9972},"motion.div",{"type":51,"tag":311,"props":9974,"children":9975},{"style":499},[9976],{"type":57,"value":519},{"type":51,"tag":311,"props":9978,"children":9979},{"class":313,"line":1127},[9980,9984],{"type":51,"tag":311,"props":9981,"children":9982},{"style":505},[9983],{"type":57,"value":8503},{"type":51,"tag":311,"props":9985,"children":9986},{"style":499},[9987],{"type":57,"value":4892},{"type":51,"tag":311,"props":9989,"children":9990},{"class":313,"line":1185},[9991],{"type":51,"tag":311,"props":9992,"children":9993},{"style":499},[9994],{"type":57,"value":2294},{"type":51,"tag":80,"props":9996,"children":9998},{"id":9997},"glass-effect-patterns",[9999],{"type":57,"value":10000},"Glass Effect Patterns",{"type":51,"tag":474,"props":10002,"children":10003},{"id":7318},[10004],{"type":57,"value":10005},"Glass Card",{"type":51,"tag":300,"props":10007,"children":10009},{"className":7654,"code":10008,"language":7656,"meta":305,"style":305},"\u003Cdiv className=\"glass-card p-6\">\n  \u003Ch2 className=\"text-lg font-semibold text-text-primary\">Card Title\u003C\u002Fh2>\n  \u003Cp className=\"text-text-secondary mt-2\">Card content goes here.\u003C\u002Fp>\n\u003C\u002Fdiv>\n",[10010],{"type":51,"tag":126,"props":10011,"children":10012},{"__ignoreMap":305},[10013,10050,10103,10156],{"type":51,"tag":311,"props":10014,"children":10015},{"class":313,"line":314},[10016,10020,10024,10029,10033,10037,10042,10046],{"type":51,"tag":311,"props":10017,"children":10018},{"style":499},[10019],{"type":57,"value":527},{"type":51,"tag":311,"props":10021,"children":10022},{"style":505},[10023],{"type":57,"value":1692},{"type":51,"tag":311,"props":10025,"children":10026},{"style":511},[10027],{"type":57,"value":10028}," className",{"type":51,"tag":311,"props":10030,"children":10031},{"style":499},[10032],{"type":57,"value":541},{"type":51,"tag":311,"props":10034,"children":10035},{"style":499},[10036],{"type":57,"value":546},{"type":51,"tag":311,"props":10038,"children":10039},{"style":324},[10040],{"type":57,"value":10041},"glass-card p-6",{"type":51,"tag":311,"props":10043,"children":10044},{"style":499},[10045],{"type":57,"value":546},{"type":51,"tag":311,"props":10047,"children":10048},{"style":499},[10049],{"type":57,"value":519},{"type":51,"tag":311,"props":10051,"children":10052},{"class":313,"line":355},[10053,10057,10061,10065,10069,10073,10078,10082,10086,10091,10095,10099],{"type":51,"tag":311,"props":10054,"children":10055},{"style":499},[10056],{"type":57,"value":567},{"type":51,"tag":311,"props":10058,"children":10059},{"style":505},[10060],{"type":57,"value":80},{"type":51,"tag":311,"props":10062,"children":10063},{"style":511},[10064],{"type":57,"value":10028},{"type":51,"tag":311,"props":10066,"children":10067},{"style":499},[10068],{"type":57,"value":541},{"type":51,"tag":311,"props":10070,"children":10071},{"style":499},[10072],{"type":57,"value":546},{"type":51,"tag":311,"props":10074,"children":10075},{"style":324},[10076],{"type":57,"value":10077},"text-lg font-semibold text-text-primary",{"type":51,"tag":311,"props":10079,"children":10080},{"style":499},[10081],{"type":57,"value":546},{"type":51,"tag":311,"props":10083,"children":10084},{"style":499},[10085],{"type":57,"value":1628},{"type":51,"tag":311,"props":10087,"children":10088},{"style":682},[10089],{"type":57,"value":10090},"Card Title",{"type":51,"tag":311,"props":10092,"children":10093},{"style":499},[10094],{"type":57,"value":1637},{"type":51,"tag":311,"props":10096,"children":10097},{"style":505},[10098],{"type":57,"value":80},{"type":51,"tag":311,"props":10100,"children":10101},{"style":499},[10102],{"type":57,"value":519},{"type":51,"tag":311,"props":10104,"children":10105},{"class":313,"line":370},[10106,10110,10114,10118,10122,10126,10131,10135,10139,10144,10148,10152],{"type":51,"tag":311,"props":10107,"children":10108},{"style":499},[10109],{"type":57,"value":567},{"type":51,"tag":311,"props":10111,"children":10112},{"style":505},[10113],{"type":57,"value":60},{"type":51,"tag":311,"props":10115,"children":10116},{"style":511},[10117],{"type":57,"value":10028},{"type":51,"tag":311,"props":10119,"children":10120},{"style":499},[10121],{"type":57,"value":541},{"type":51,"tag":311,"props":10123,"children":10124},{"style":499},[10125],{"type":57,"value":546},{"type":51,"tag":311,"props":10127,"children":10128},{"style":324},[10129],{"type":57,"value":10130},"text-text-secondary mt-2",{"type":51,"tag":311,"props":10132,"children":10133},{"style":499},[10134],{"type":57,"value":546},{"type":51,"tag":311,"props":10136,"children":10137},{"style":499},[10138],{"type":57,"value":1628},{"type":51,"tag":311,"props":10140,"children":10141},{"style":682},[10142],{"type":57,"value":10143},"Card content goes here.",{"type":51,"tag":311,"props":10145,"children":10146},{"style":499},[10147],{"type":57,"value":1637},{"type":51,"tag":311,"props":10149,"children":10150},{"style":505},[10151],{"type":57,"value":60},{"type":51,"tag":311,"props":10153,"children":10154},{"style":499},[10155],{"type":57,"value":519},{"type":51,"tag":311,"props":10157,"children":10158},{"class":313,"line":398},[10159,10163,10167],{"type":51,"tag":311,"props":10160,"children":10161},{"style":499},[10162],{"type":57,"value":1637},{"type":51,"tag":311,"props":10164,"children":10165},{"style":505},[10166],{"type":57,"value":1692},{"type":51,"tag":311,"props":10168,"children":10169},{"style":499},[10170],{"type":57,"value":519},{"type":51,"tag":474,"props":10172,"children":10174},{"id":10173},"glass-panel-sidebar",[10175],{"type":57,"value":10176},"Glass Panel (Sidebar)",{"type":51,"tag":300,"props":10178,"children":10180},{"className":7654,"code":10179,"language":7656,"meta":305,"style":305},"\u003Caside className=\"glass-panel w-64 h-screen p-4\">\n  \u003Cnav className=\"space-y-2\">\n    {\u002F* Navigation items *\u002F}\n  \u003C\u002Fnav>\n\u003C\u002Faside>\n",[10181],{"type":51,"tag":126,"props":10182,"children":10183},{"__ignoreMap":305},[10184,10221,10258,10274,10289],{"type":51,"tag":311,"props":10185,"children":10186},{"class":313,"line":314},[10187,10191,10196,10200,10204,10208,10213,10217],{"type":51,"tag":311,"props":10188,"children":10189},{"style":499},[10190],{"type":57,"value":527},{"type":51,"tag":311,"props":10192,"children":10193},{"style":505},[10194],{"type":57,"value":10195},"aside",{"type":51,"tag":311,"props":10197,"children":10198},{"style":511},[10199],{"type":57,"value":10028},{"type":51,"tag":311,"props":10201,"children":10202},{"style":499},[10203],{"type":57,"value":541},{"type":51,"tag":311,"props":10205,"children":10206},{"style":499},[10207],{"type":57,"value":546},{"type":51,"tag":311,"props":10209,"children":10210},{"style":324},[10211],{"type":57,"value":10212},"glass-panel w-64 h-screen p-4",{"type":51,"tag":311,"props":10214,"children":10215},{"style":499},[10216],{"type":57,"value":546},{"type":51,"tag":311,"props":10218,"children":10219},{"style":499},[10220],{"type":57,"value":519},{"type":51,"tag":311,"props":10222,"children":10223},{"class":313,"line":355},[10224,10228,10233,10237,10241,10245,10250,10254],{"type":51,"tag":311,"props":10225,"children":10226},{"style":499},[10227],{"type":57,"value":567},{"type":51,"tag":311,"props":10229,"children":10230},{"style":505},[10231],{"type":57,"value":10232},"nav",{"type":51,"tag":311,"props":10234,"children":10235},{"style":511},[10236],{"type":57,"value":10028},{"type":51,"tag":311,"props":10238,"children":10239},{"style":499},[10240],{"type":57,"value":541},{"type":51,"tag":311,"props":10242,"children":10243},{"style":499},[10244],{"type":57,"value":546},{"type":51,"tag":311,"props":10246,"children":10247},{"style":324},[10248],{"type":57,"value":10249},"space-y-2",{"type":51,"tag":311,"props":10251,"children":10252},{"style":499},[10253],{"type":57,"value":546},{"type":51,"tag":311,"props":10255,"children":10256},{"style":499},[10257],{"type":57,"value":519},{"type":51,"tag":311,"props":10259,"children":10260},{"class":313,"line":370},[10261,10265,10270],{"type":51,"tag":311,"props":10262,"children":10263},{"style":499},[10264],{"type":57,"value":1964},{"type":51,"tag":311,"props":10266,"children":10267},{"style":692},[10268],{"type":57,"value":10269},"\u002F* Navigation items *\u002F",{"type":51,"tag":311,"props":10271,"children":10272},{"style":499},[10273],{"type":57,"value":2294},{"type":51,"tag":311,"props":10275,"children":10276},{"class":313,"line":398},[10277,10281,10285],{"type":51,"tag":311,"props":10278,"children":10279},{"style":499},[10280],{"type":57,"value":1654},{"type":51,"tag":311,"props":10282,"children":10283},{"style":505},[10284],{"type":57,"value":10232},{"type":51,"tag":311,"props":10286,"children":10287},{"style":499},[10288],{"type":57,"value":519},{"type":51,"tag":311,"props":10290,"children":10291},{"class":313,"line":430},[10292,10296,10300],{"type":51,"tag":311,"props":10293,"children":10294},{"style":499},[10295],{"type":57,"value":1637},{"type":51,"tag":311,"props":10297,"children":10298},{"style":505},[10299],{"type":57,"value":10195},{"type":51,"tag":311,"props":10301,"children":10302},{"style":499},[10303],{"type":57,"value":519},{"type":51,"tag":474,"props":10305,"children":10307},{"id":10306},"glass-modal-overlay",[10308],{"type":57,"value":10309},"Glass Modal Overlay",{"type":51,"tag":300,"props":10311,"children":10313},{"className":7654,"code":10312,"language":7656,"meta":305,"style":305},"\u003Cmotion.div\n  className=\"fixed inset-0 glass-overlay flex items-center justify-center z-50\"\n  initial={{ opacity: 0 }}\n  animate={{ opacity: 1 }}\n  exit={{ opacity: 0 }}\n>\n  \u003Cmotion.div\n    className=\"glass-card p-6 max-w-md w-full mx-4\"\n    initial={{ scale: 0.95, opacity: 0 }}\n    animate={{ scale: 1, opacity: 1 }}\n    exit={{ scale: 0.95, opacity: 0 }}\n  >\n    {\u002F* Modal content *\u002F}\n  \u003C\u002Fmotion.div>\n\u003C\u002Fmotion.div>\n",[10314],{"type":51,"tag":126,"props":10315,"children":10316},{"__ignoreMap":305},[10317,10328,10353,10380,10407,10434,10441,10452,10477,10522,10566,10610,10618,10634,10649],{"type":51,"tag":311,"props":10318,"children":10319},{"class":313,"line":314},[10320,10324],{"type":51,"tag":311,"props":10321,"children":10322},{"style":499},[10323],{"type":57,"value":527},{"type":51,"tag":311,"props":10325,"children":10326},{"style":318},[10327],{"type":57,"value":9743},{"type":51,"tag":311,"props":10329,"children":10330},{"class":313,"line":355},[10331,10336,10340,10344,10349],{"type":51,"tag":311,"props":10332,"children":10333},{"style":511},[10334],{"type":57,"value":10335},"  className",{"type":51,"tag":311,"props":10337,"children":10338},{"style":499},[10339],{"type":57,"value":541},{"type":51,"tag":311,"props":10341,"children":10342},{"style":499},[10343],{"type":57,"value":546},{"type":51,"tag":311,"props":10345,"children":10346},{"style":324},[10347],{"type":57,"value":10348},"fixed inset-0 glass-overlay flex items-center justify-center z-50",{"type":51,"tag":311,"props":10350,"children":10351},{"style":499},[10352],{"type":57,"value":2286},{"type":51,"tag":311,"props":10354,"children":10355},{"class":313,"line":370},[10356,10360,10364,10368,10372,10376],{"type":51,"tag":311,"props":10357,"children":10358},{"style":511},[10359],{"type":57,"value":8573},{"type":51,"tag":311,"props":10361,"children":10362},{"style":499},[10363],{"type":57,"value":9756},{"type":51,"tag":311,"props":10365,"children":10366},{"style":505},[10367],{"type":57,"value":3972},{"type":51,"tag":311,"props":10369,"children":10370},{"style":499},[10371],{"type":57,"value":1876},{"type":51,"tag":311,"props":10373,"children":10374},{"style":5064},[10375],{"type":57,"value":8594},{"type":51,"tag":311,"props":10377,"children":10378},{"style":499},[10379],{"type":57,"value":9789},{"type":51,"tag":311,"props":10381,"children":10382},{"class":313,"line":398},[10383,10387,10391,10395,10399,10403],{"type":51,"tag":311,"props":10384,"children":10385},{"style":511},[10386],{"type":57,"value":8606},{"type":51,"tag":311,"props":10388,"children":10389},{"style":499},[10390],{"type":57,"value":9756},{"type":51,"tag":311,"props":10392,"children":10393},{"style":505},[10394],{"type":57,"value":3972},{"type":51,"tag":311,"props":10396,"children":10397},{"style":499},[10398],{"type":57,"value":1876},{"type":51,"tag":311,"props":10400,"children":10401},{"style":5064},[10402],{"type":57,"value":8627},{"type":51,"tag":311,"props":10404,"children":10405},{"style":499},[10406],{"type":57,"value":9789},{"type":51,"tag":311,"props":10408,"children":10409},{"class":313,"line":430},[10410,10414,10418,10422,10426,10430],{"type":51,"tag":311,"props":10411,"children":10412},{"style":511},[10413],{"type":57,"value":8639},{"type":51,"tag":311,"props":10415,"children":10416},{"style":499},[10417],{"type":57,"value":9756},{"type":51,"tag":311,"props":10419,"children":10420},{"style":505},[10421],{"type":57,"value":3972},{"type":51,"tag":311,"props":10423,"children":10424},{"style":499},[10425],{"type":57,"value":1876},{"type":51,"tag":311,"props":10427,"children":10428},{"style":5064},[10429],{"type":57,"value":8594},{"type":51,"tag":311,"props":10431,"children":10432},{"style":499},[10433],{"type":57,"value":9789},{"type":51,"tag":311,"props":10435,"children":10436},{"class":313,"line":678},[10437],{"type":51,"tag":311,"props":10438,"children":10439},{"style":499},[10440],{"type":57,"value":519},{"type":51,"tag":311,"props":10442,"children":10443},{"class":313,"line":688},[10444,10448],{"type":51,"tag":311,"props":10445,"children":10446},{"style":499},[10447],{"type":57,"value":567},{"type":51,"tag":311,"props":10449,"children":10450},{"style":318},[10451],{"type":57,"value":9743},{"type":51,"tag":311,"props":10453,"children":10454},{"class":313,"line":698},[10455,10460,10464,10468,10473],{"type":51,"tag":311,"props":10456,"children":10457},{"style":511},[10458],{"type":57,"value":10459},"    className",{"type":51,"tag":311,"props":10461,"children":10462},{"style":499},[10463],{"type":57,"value":541},{"type":51,"tag":311,"props":10465,"children":10466},{"style":499},[10467],{"type":57,"value":546},{"type":51,"tag":311,"props":10469,"children":10470},{"style":324},[10471],{"type":57,"value":10472},"glass-card p-6 max-w-md w-full mx-4",{"type":51,"tag":311,"props":10474,"children":10475},{"style":499},[10476],{"type":57,"value":2286},{"type":51,"tag":311,"props":10478,"children":10479},{"class":313,"line":781},[10480,10485,10489,10493,10497,10502,10506,10510,10514,10518],{"type":51,"tag":311,"props":10481,"children":10482},{"style":511},[10483],{"type":57,"value":10484},"    initial",{"type":51,"tag":311,"props":10486,"children":10487},{"style":499},[10488],{"type":57,"value":9756},{"type":51,"tag":311,"props":10490,"children":10491},{"style":505},[10492],{"type":57,"value":9009},{"type":51,"tag":311,"props":10494,"children":10495},{"style":499},[10496],{"type":57,"value":1876},{"type":51,"tag":311,"props":10498,"children":10499},{"style":5064},[10500],{"type":57,"value":10501}," 0.95",{"type":51,"tag":311,"props":10503,"children":10504},{"style":499},[10505],{"type":57,"value":1998},{"type":51,"tag":311,"props":10507,"children":10508},{"style":505},[10509],{"type":57,"value":3972},{"type":51,"tag":311,"props":10511,"children":10512},{"style":499},[10513],{"type":57,"value":1876},{"type":51,"tag":311,"props":10515,"children":10516},{"style":5064},[10517],{"type":57,"value":8594},{"type":51,"tag":311,"props":10519,"children":10520},{"style":499},[10521],{"type":57,"value":9789},{"type":51,"tag":311,"props":10523,"children":10524},{"class":313,"line":860},[10525,10530,10534,10538,10542,10546,10550,10554,10558,10562],{"type":51,"tag":311,"props":10526,"children":10527},{"style":511},[10528],{"type":57,"value":10529},"    animate",{"type":51,"tag":311,"props":10531,"children":10532},{"style":499},[10533],{"type":57,"value":9756},{"type":51,"tag":311,"props":10535,"children":10536},{"style":505},[10537],{"type":57,"value":9009},{"type":51,"tag":311,"props":10539,"children":10540},{"style":499},[10541],{"type":57,"value":1876},{"type":51,"tag":311,"props":10543,"children":10544},{"style":5064},[10545],{"type":57,"value":8627},{"type":51,"tag":311,"props":10547,"children":10548},{"style":499},[10549],{"type":57,"value":1998},{"type":51,"tag":311,"props":10551,"children":10552},{"style":505},[10553],{"type":57,"value":3972},{"type":51,"tag":311,"props":10555,"children":10556},{"style":499},[10557],{"type":57,"value":1876},{"type":51,"tag":311,"props":10559,"children":10560},{"style":5064},[10561],{"type":57,"value":8627},{"type":51,"tag":311,"props":10563,"children":10564},{"style":499},[10565],{"type":57,"value":9789},{"type":51,"tag":311,"props":10567,"children":10568},{"class":313,"line":918},[10569,10574,10578,10582,10586,10590,10594,10598,10602,10606],{"type":51,"tag":311,"props":10570,"children":10571},{"style":511},[10572],{"type":57,"value":10573},"    exit",{"type":51,"tag":311,"props":10575,"children":10576},{"style":499},[10577],{"type":57,"value":9756},{"type":51,"tag":311,"props":10579,"children":10580},{"style":505},[10581],{"type":57,"value":9009},{"type":51,"tag":311,"props":10583,"children":10584},{"style":499},[10585],{"type":57,"value":1876},{"type":51,"tag":311,"props":10587,"children":10588},{"style":5064},[10589],{"type":57,"value":10501},{"type":51,"tag":311,"props":10591,"children":10592},{"style":499},[10593],{"type":57,"value":1998},{"type":51,"tag":311,"props":10595,"children":10596},{"style":505},[10597],{"type":57,"value":3972},{"type":51,"tag":311,"props":10599,"children":10600},{"style":499},[10601],{"type":57,"value":1876},{"type":51,"tag":311,"props":10603,"children":10604},{"style":5064},[10605],{"type":57,"value":8594},{"type":51,"tag":311,"props":10607,"children":10608},{"style":499},[10609],{"type":57,"value":9789},{"type":51,"tag":311,"props":10611,"children":10612},{"class":313,"line":976},[10613],{"type":51,"tag":311,"props":10614,"children":10615},{"style":499},[10616],{"type":57,"value":10617},"  >\n",{"type":51,"tag":311,"props":10619,"children":10620},{"class":313,"line":984},[10621,10625,10630],{"type":51,"tag":311,"props":10622,"children":10623},{"style":499},[10624],{"type":57,"value":1964},{"type":51,"tag":311,"props":10626,"children":10627},{"style":692},[10628],{"type":57,"value":10629},"\u002F* Modal content *\u002F",{"type":51,"tag":311,"props":10631,"children":10632},{"style":499},[10633],{"type":57,"value":2294},{"type":51,"tag":311,"props":10635,"children":10636},{"class":313,"line":993},[10637,10641,10645],{"type":51,"tag":311,"props":10638,"children":10639},{"style":499},[10640],{"type":57,"value":1654},{"type":51,"tag":311,"props":10642,"children":10643},{"style":318},[10644],{"type":57,"value":9972},{"type":51,"tag":311,"props":10646,"children":10647},{"style":499},[10648],{"type":57,"value":519},{"type":51,"tag":311,"props":10650,"children":10651},{"class":313,"line":1051},[10652,10656,10660],{"type":51,"tag":311,"props":10653,"children":10654},{"style":499},[10655],{"type":57,"value":1637},{"type":51,"tag":311,"props":10657,"children":10658},{"style":318},[10659],{"type":57,"value":9972},{"type":51,"tag":311,"props":10661,"children":10662},{"style":499},[10663],{"type":57,"value":519},{"type":51,"tag":80,"props":10665,"children":10667},{"id":10666},"typography",[10668],{"type":57,"value":10669},"Typography",{"type":51,"tag":87,"props":10671,"children":10672},{},[10673,10689],{"type":51,"tag":91,"props":10674,"children":10675},{},[10676],{"type":51,"tag":95,"props":10677,"children":10678},{},[10679,10684],{"type":51,"tag":99,"props":10680,"children":10681},{},[10682],{"type":57,"value":10683},"Element",{"type":51,"tag":99,"props":10685,"children":10686},{},[10687],{"type":57,"value":10688},"Classes",{"type":51,"tag":115,"props":10690,"children":10691},{},[10692,10709,10725,10742,10759,10776],{"type":51,"tag":95,"props":10693,"children":10694},{},[10695,10700],{"type":51,"tag":122,"props":10696,"children":10697},{},[10698],{"type":57,"value":10699},"Page title",{"type":51,"tag":122,"props":10701,"children":10702},{},[10703],{"type":51,"tag":126,"props":10704,"children":10706},{"className":10705},[],[10707],{"type":57,"value":10708},"text-2xl font-semibold text-text-primary",{"type":51,"tag":95,"props":10710,"children":10711},{},[10712,10717],{"type":51,"tag":122,"props":10713,"children":10714},{},[10715],{"type":57,"value":10716},"Section title",{"type":51,"tag":122,"props":10718,"children":10719},{},[10720],{"type":51,"tag":126,"props":10721,"children":10723},{"className":10722},[],[10724],{"type":57,"value":10077},{"type":51,"tag":95,"props":10726,"children":10727},{},[10728,10733],{"type":51,"tag":122,"props":10729,"children":10730},{},[10731],{"type":57,"value":10732},"Card title",{"type":51,"tag":122,"props":10734,"children":10735},{},[10736],{"type":51,"tag":126,"props":10737,"children":10739},{"className":10738},[],[10740],{"type":57,"value":10741},"text-base font-medium text-text-primary",{"type":51,"tag":95,"props":10743,"children":10744},{},[10745,10750],{"type":51,"tag":122,"props":10746,"children":10747},{},[10748],{"type":57,"value":10749},"Body text",{"type":51,"tag":122,"props":10751,"children":10752},{},[10753],{"type":51,"tag":126,"props":10754,"children":10756},{"className":10755},[],[10757],{"type":57,"value":10758},"text-sm text-text-secondary",{"type":51,"tag":95,"props":10760,"children":10761},{},[10762,10767],{"type":51,"tag":122,"props":10763,"children":10764},{},[10765],{"type":57,"value":10766},"Caption",{"type":51,"tag":122,"props":10768,"children":10769},{},[10770],{"type":51,"tag":126,"props":10771,"children":10773},{"className":10772},[],[10774],{"type":57,"value":10775},"text-xs text-text-muted",{"type":51,"tag":95,"props":10777,"children":10778},{},[10779,10784],{"type":51,"tag":122,"props":10780,"children":10781},{},[10782],{"type":57,"value":10783},"Label",{"type":51,"tag":122,"props":10785,"children":10786},{},[10787],{"type":51,"tag":126,"props":10788,"children":10790},{"className":10789},[],[10791],{"type":57,"value":10792},"text-sm font-medium text-text-secondary",{"type":51,"tag":80,"props":10794,"children":10796},{"id":10795},"color-usage",[10797],{"type":57,"value":10798},"Color Usage",{"type":51,"tag":87,"props":10800,"children":10801},{},[10802,10823],{"type":51,"tag":91,"props":10803,"children":10804},{},[10805],{"type":51,"tag":95,"props":10806,"children":10807},{},[10808,10813,10818],{"type":51,"tag":99,"props":10809,"children":10810},{},[10811],{"type":57,"value":10812},"Use Case",{"type":51,"tag":99,"props":10814,"children":10815},{},[10816],{"type":57,"value":10817},"Color",{"type":51,"tag":99,"props":10819,"children":10820},{},[10821],{"type":57,"value":10822},"Class",{"type":51,"tag":115,"props":10824,"children":10825},{},[10826,10848,10870,10892,10914,10936,10956,10977,10998,11019,11041,11063],{"type":51,"tag":95,"props":10827,"children":10828},{},[10829,10834,10839],{"type":51,"tag":122,"props":10830,"children":10831},{},[10832],{"type":57,"value":10833},"Primary action",{"type":51,"tag":122,"props":10835,"children":10836},{},[10837],{"type":57,"value":10838},"Brand purple",{"type":51,"tag":122,"props":10840,"children":10841},{},[10842],{"type":51,"tag":126,"props":10843,"children":10845},{"className":10844},[],[10846],{"type":57,"value":10847},"bg-brand text-white",{"type":51,"tag":95,"props":10849,"children":10850},{},[10851,10856,10861],{"type":51,"tag":122,"props":10852,"children":10853},{},[10854],{"type":57,"value":10855},"Primary hover",{"type":51,"tag":122,"props":10857,"children":10858},{},[10859],{"type":57,"value":10860},"Brand hover",{"type":51,"tag":122,"props":10862,"children":10863},{},[10864],{"type":51,"tag":126,"props":10865,"children":10867},{"className":10866},[],[10868],{"type":57,"value":10869},"hover:bg-brand-hover",{"type":51,"tag":95,"props":10871,"children":10872},{},[10873,10878,10883],{"type":51,"tag":122,"props":10874,"children":10875},{},[10876],{"type":57,"value":10877},"Page background",{"type":51,"tag":122,"props":10879,"children":10880},{},[10881],{"type":57,"value":10882},"Neutral bg1",{"type":51,"tag":122,"props":10884,"children":10885},{},[10886],{"type":51,"tag":126,"props":10887,"children":10889},{"className":10888},[],[10890],{"type":57,"value":10891},"bg-neutral-bg1",{"type":51,"tag":95,"props":10893,"children":10894},{},[10895,10900,10905],{"type":51,"tag":122,"props":10896,"children":10897},{},[10898],{"type":57,"value":10899},"Card background",{"type":51,"tag":122,"props":10901,"children":10902},{},[10903],{"type":57,"value":10904},"Neutral bg2",{"type":51,"tag":122,"props":10906,"children":10907},{},[10908],{"type":51,"tag":126,"props":10909,"children":10911},{"className":10910},[],[10912],{"type":57,"value":10913},"bg-neutral-bg2",{"type":51,"tag":95,"props":10915,"children":10916},{},[10917,10922,10927],{"type":51,"tag":122,"props":10918,"children":10919},{},[10920],{"type":57,"value":10921},"Elevated surface",{"type":51,"tag":122,"props":10923,"children":10924},{},[10925],{"type":57,"value":10926},"Neutral bg3",{"type":51,"tag":122,"props":10928,"children":10929},{},[10930],{"type":51,"tag":126,"props":10931,"children":10933},{"className":10932},[],[10934],{"type":57,"value":10935},"bg-neutral-bg3",{"type":51,"tag":95,"props":10937,"children":10938},{},[10939,10944,10948],{"type":51,"tag":122,"props":10940,"children":10941},{},[10942],{"type":57,"value":10943},"Input background",{"type":51,"tag":122,"props":10945,"children":10946},{},[10947],{"type":57,"value":10904},{"type":51,"tag":122,"props":10949,"children":10950},{},[10951],{"type":51,"tag":126,"props":10952,"children":10954},{"className":10953},[],[10955],{"type":57,"value":10913},{"type":51,"tag":95,"props":10957,"children":10958},{},[10959,10964,10968],{"type":51,"tag":122,"props":10960,"children":10961},{},[10962],{"type":57,"value":10963},"Input focus",{"type":51,"tag":122,"props":10965,"children":10966},{},[10967],{"type":57,"value":10926},{"type":51,"tag":122,"props":10969,"children":10970},{},[10971],{"type":51,"tag":126,"props":10972,"children":10974},{"className":10973},[],[10975],{"type":57,"value":10976},"focus:bg-neutral-bg3",{"type":51,"tag":95,"props":10978,"children":10979},{},[10980,10985,10989],{"type":51,"tag":122,"props":10981,"children":10982},{},[10983],{"type":57,"value":10984},"Border default",{"type":51,"tag":122,"props":10986,"children":10987},{},[10988],{"type":57,"value":10984},{"type":51,"tag":122,"props":10990,"children":10991},{},[10992],{"type":51,"tag":126,"props":10993,"children":10995},{"className":10994},[],[10996],{"type":57,"value":10997},"border-border",{"type":51,"tag":95,"props":10999,"children":11000},{},[11001,11006,11010],{"type":51,"tag":122,"props":11002,"children":11003},{},[11004],{"type":57,"value":11005},"Border subtle",{"type":51,"tag":122,"props":11007,"children":11008},{},[11009],{"type":57,"value":11005},{"type":51,"tag":122,"props":11011,"children":11012},{},[11013],{"type":51,"tag":126,"props":11014,"children":11016},{"className":11015},[],[11017],{"type":57,"value":11018},"border-border-subtle",{"type":51,"tag":95,"props":11020,"children":11021},{},[11022,11027,11032],{"type":51,"tag":122,"props":11023,"children":11024},{},[11025],{"type":57,"value":11026},"Success",{"type":51,"tag":122,"props":11028,"children":11029},{},[11030],{"type":57,"value":11031},"Status success",{"type":51,"tag":122,"props":11033,"children":11034},{},[11035],{"type":51,"tag":126,"props":11036,"children":11038},{"className":11037},[],[11039],{"type":57,"value":11040},"text-status-success",{"type":51,"tag":95,"props":11042,"children":11043},{},[11044,11049,11054],{"type":51,"tag":122,"props":11045,"children":11046},{},[11047],{"type":57,"value":11048},"Warning",{"type":51,"tag":122,"props":11050,"children":11051},{},[11052],{"type":57,"value":11053},"Status warning",{"type":51,"tag":122,"props":11055,"children":11056},{},[11057],{"type":51,"tag":126,"props":11058,"children":11060},{"className":11059},[],[11061],{"type":57,"value":11062},"text-status-warning",{"type":51,"tag":95,"props":11064,"children":11065},{},[11066,11071,11076],{"type":51,"tag":122,"props":11067,"children":11068},{},[11069],{"type":57,"value":11070},"Error",{"type":51,"tag":122,"props":11072,"children":11073},{},[11074],{"type":57,"value":11075},"Status error",{"type":51,"tag":122,"props":11077,"children":11078},{},[11079],{"type":51,"tag":126,"props":11080,"children":11082},{"className":11081},[],[11083],{"type":57,"value":11084},"text-status-error",{"type":51,"tag":80,"props":11086,"children":11088},{"id":11087},"related-files",[11089],{"type":57,"value":11090},"Related Files",{"type":51,"tag":11092,"props":11093,"children":11094},"ul",{},[11095,11108,11119],{"type":51,"tag":11096,"props":11097,"children":11098},"li",{},[11099,11106],{"type":51,"tag":11100,"props":11101,"children":11103},"a",{"href":11102},".\u002Freferences\u002Fdesign-tokens.md",[11104],{"type":57,"value":11105},"Design Tokens",{"type":57,"value":11107}," — Complete color system, spacing, typography scales",{"type":51,"tag":11096,"props":11109,"children":11110},{},[11111,11117],{"type":51,"tag":11100,"props":11112,"children":11114},{"href":11113},".\u002Freferences\u002Fcomponents.md",[11115],{"type":57,"value":11116},"Components",{"type":57,"value":11118}," — Button, Card, Input, Dialog, Tabs, and more",{"type":51,"tag":11096,"props":11120,"children":11121},{},[11122,11128],{"type":51,"tag":11100,"props":11123,"children":11125},{"href":11124},".\u002Freferences\u002Fpatterns.md",[11126],{"type":57,"value":11127},"Patterns",{"type":57,"value":11129}," — Page layouts, navigation, lists, forms",{"type":51,"tag":11131,"props":11132,"children":11133},"style",{},[11134],{"type":57,"value":11135},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-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 .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);}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);}",{"items":11137,"total":3231},[11138,11155,11176,11191,11208,11219,11232],{"slug":11139,"name":11139,"fn":11140,"description":11141,"org":11142,"tags":11143,"stars":25,"repoUrl":26,"updatedAt":11154},"azure-ai-agents-persistent-dotnet","build AI agents with Azure .NET SDK","Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Use for agent CRUD, conversation threads, streaming responses, function calling, file search, and code interpreter. Triggers: \"PersistentAgentsClient\", \"persistent agents\", \"agent threads\", \"agent runs\", \"streaming agents\", \"function calling agents .NET\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11144,11147,11149,11151],{"name":11145,"slug":11146,"type":15},".NET","net",{"name":11148,"slug":32,"type":15},"Agents",{"name":11150,"slug":33,"type":15},"Azure",{"name":11152,"slug":11153,"type":15},"LLM","llm","2026-07-03T16:32:10.297433",{"slug":11156,"name":11156,"fn":11157,"description":11158,"org":11159,"tags":11160,"stars":25,"repoUrl":26,"updatedAt":11175},"azure-ai-anomalydetector-java","build anomaly detection applications with Java","Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate\u002Fmultivariate anomaly detection, time-series analysis, or AI-powered monitoring.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11161,11164,11165,11168,11171,11172],{"name":11162,"slug":11163,"type":15},"Analytics","analytics",{"name":11150,"slug":33,"type":15},{"name":11166,"slug":11167,"type":15},"Data Analysis","data-analysis",{"name":11169,"slug":11170,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":11173,"slug":11174,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":11177,"name":11177,"fn":11178,"description":11179,"org":11180,"tags":11181,"stars":25,"repoUrl":26,"updatedAt":11190},"azure-ai-contentsafety-java","build content moderation applications with Azure AI","Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text\u002Fimage analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11182,11185,11186,11187],{"name":11183,"slug":11184,"type":15},"AI Infrastructure","ai-infrastructure",{"name":11150,"slug":33,"type":15},{"name":11169,"slug":11170,"type":15},{"name":11188,"slug":11189,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":11192,"name":11192,"fn":11193,"description":11194,"org":11195,"tags":11196,"stars":25,"repoUrl":26,"updatedAt":11207},"azure-ai-contentsafety-py","detect harmful content with Azure AI Content Safety","Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.\nTriggers: \"azure-ai-contentsafety\", \"ContentSafetyClient\", \"content moderation\", \"harmful content\", \"text analysis\", \"image analysis\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11197,11198,11201,11202,11203,11206],{"name":11150,"slug":33,"type":15},{"name":11199,"slug":11200,"type":15},"Compliance","compliance",{"name":11152,"slug":11153,"type":15},{"name":9,"slug":8,"type":15},{"name":11204,"slug":11205,"type":15},"Python","python",{"name":11188,"slug":11189,"type":15},"2026-07-18T05:14:23.017504",{"slug":11209,"name":11209,"fn":11210,"description":11211,"org":11212,"tags":11213,"stars":25,"repoUrl":26,"updatedAt":11218},"azure-ai-language-conversations-py","implement conversational language understanding with Python","Implement Conversational Language Understanding (CLU) using the azure-ai-language-conversations Python SDK. Use when working with ConversationAnalysisClient to analyze conversation intent and entities, building NLP features, or integrating language understanding into applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11214,11215,11216,11217],{"name":11162,"slug":11163,"type":15},{"name":11150,"slug":33,"type":15},{"name":11152,"slug":11153,"type":15},{"name":11204,"slug":11205,"type":15},"2026-07-31T05:54:29.068751",{"slug":11220,"name":11220,"fn":11221,"description":11222,"org":11223,"tags":11224,"stars":25,"repoUrl":26,"updatedAt":11231},"azure-ai-translation-text-py","translate text using Azure AI services","Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.\nTriggers: \"text translation\", \"translator\", \"translate text\", \"transliterate\", \"TextTranslationClient\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11225,11228,11229,11230],{"name":11226,"slug":11227,"type":15},"API Development","api-development",{"name":11150,"slug":33,"type":15},{"name":9,"slug":8,"type":15},{"name":11204,"slug":11205,"type":15},"2026-07-18T05:14:16.988376",{"slug":11233,"name":11233,"fn":11234,"description":11235,"org":11236,"tags":11237,"stars":25,"repoUrl":26,"updatedAt":11246},"azure-ai-vision-imageanalysis-py","analyze images with Azure AI Vision","Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.\nTriggers: \"image analysis\", \"computer vision\", \"OCR\", \"object detection\", \"ImageAnalysisClient\", \"image caption\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11238,11239,11242,11245],{"name":11150,"slug":33,"type":15},{"name":11240,"slug":11241,"type":15},"Computer Vision","computer-vision",{"name":11243,"slug":11244,"type":15},"Images","images",{"name":11204,"slug":11205,"type":15},"2026-07-18T05:14:18.007737",{"items":11248,"total":11380},[11249,11271,11278,11287,11294,11303,11310,11317,11324,11337,11356,11368],{"slug":11250,"name":11250,"fn":11251,"description":11252,"org":11253,"tags":11254,"stars":11268,"repoUrl":11269,"updatedAt":11270},"rushstack-best-practices","manage Rush monorepos with best practices","Provides best practices and guidance for working with Rush monorepos. Use when the user is working in a Rush-based repository, asks about Rush commands (install, update, build, rebuild), needs help with project selection, dependency management, build caching, subspace configuration, or troubleshooting Rush-specific issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11255,11258,11261,11262,11265],{"name":11256,"slug":11257,"type":15},"Engineering","engineering",{"name":11259,"slug":11260,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":11263,"slug":11264,"type":15},"Project Management","project-management",{"name":11266,"slug":11267,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":11139,"name":11139,"fn":11140,"description":11141,"org":11272,"tags":11273,"stars":25,"repoUrl":26,"updatedAt":11154},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11274,11275,11276,11277],{"name":11145,"slug":11146,"type":15},{"name":11148,"slug":32,"type":15},{"name":11150,"slug":33,"type":15},{"name":11152,"slug":11153,"type":15},{"slug":11156,"name":11156,"fn":11157,"description":11158,"org":11279,"tags":11280,"stars":25,"repoUrl":26,"updatedAt":11175},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11281,11282,11283,11284,11285,11286],{"name":11162,"slug":11163,"type":15},{"name":11150,"slug":33,"type":15},{"name":11166,"slug":11167,"type":15},{"name":11169,"slug":11170,"type":15},{"name":9,"slug":8,"type":15},{"name":11173,"slug":11174,"type":15},{"slug":11177,"name":11177,"fn":11178,"description":11179,"org":11288,"tags":11289,"stars":25,"repoUrl":26,"updatedAt":11190},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11290,11291,11292,11293],{"name":11183,"slug":11184,"type":15},{"name":11150,"slug":33,"type":15},{"name":11169,"slug":11170,"type":15},{"name":11188,"slug":11189,"type":15},{"slug":11192,"name":11192,"fn":11193,"description":11194,"org":11295,"tags":11296,"stars":25,"repoUrl":26,"updatedAt":11207},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11297,11298,11299,11300,11301,11302],{"name":11150,"slug":33,"type":15},{"name":11199,"slug":11200,"type":15},{"name":11152,"slug":11153,"type":15},{"name":9,"slug":8,"type":15},{"name":11204,"slug":11205,"type":15},{"name":11188,"slug":11189,"type":15},{"slug":11209,"name":11209,"fn":11210,"description":11211,"org":11304,"tags":11305,"stars":25,"repoUrl":26,"updatedAt":11218},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11306,11307,11308,11309],{"name":11162,"slug":11163,"type":15},{"name":11150,"slug":33,"type":15},{"name":11152,"slug":11153,"type":15},{"name":11204,"slug":11205,"type":15},{"slug":11220,"name":11220,"fn":11221,"description":11222,"org":11311,"tags":11312,"stars":25,"repoUrl":26,"updatedAt":11231},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11313,11314,11315,11316],{"name":11226,"slug":11227,"type":15},{"name":11150,"slug":33,"type":15},{"name":9,"slug":8,"type":15},{"name":11204,"slug":11205,"type":15},{"slug":11233,"name":11233,"fn":11234,"description":11235,"org":11318,"tags":11319,"stars":25,"repoUrl":26,"updatedAt":11246},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11320,11321,11322,11323],{"name":11150,"slug":33,"type":15},{"name":11240,"slug":11241,"type":15},{"name":11243,"slug":11244,"type":15},{"name":11204,"slug":11205,"type":15},{"slug":11325,"name":11325,"fn":11326,"description":11327,"org":11328,"tags":11329,"stars":25,"repoUrl":26,"updatedAt":11336},"azure-appconfiguration-java","manage configuration with Azure App Configuration","Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.\nTriggers: \"ConfigurationClient java\", \"app configuration java\", \"feature flag java\", \"configuration setting java\", \"azure config java\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11330,11331,11332,11335],{"name":11150,"slug":33,"type":15},{"name":472,"slug":469,"type":15},{"name":11333,"slug":11334,"type":15},"Feature Flags","feature-flags",{"name":11169,"slug":11170,"type":15},"2026-07-03T16:32:01.278468",{"slug":11338,"name":11338,"fn":11339,"description":11340,"org":11341,"tags":11342,"stars":25,"repoUrl":26,"updatedAt":11355},"azure-cosmos-rust","build applications with Azure Cosmos DB","Azure Cosmos DB library for Rust (NoSQL API). Document CRUD, containers, and globally distributed data.\nTriggers: \"cosmos db rust\", \"CosmosClient rust\", \"document crud rust\", \"NoSQL rust\", \"partition key rust\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11343,11346,11349,11352],{"name":11344,"slug":11345,"type":15},"Cosmos DB","cosmos-db",{"name":11347,"slug":11348,"type":15},"Database","database",{"name":11350,"slug":11351,"type":15},"NoSQL","nosql",{"name":11353,"slug":11354,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":11357,"name":11357,"fn":11339,"description":11358,"org":11359,"tags":11360,"stars":25,"repoUrl":26,"updatedAt":11367},"azure-cosmos-ts","Azure Cosmos DB JavaScript\u002FTypeScript SDK (@azure\u002Fcosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management. Triggers: \"Cosmos DB\", \"@azure\u002Fcosmos\", \"CosmosClient\", \"document CRUD\", \"NoSQL queries\", \"bulk operations\", \"partition key\", \"container.items\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11361,11362,11363,11364,11365],{"name":11344,"slug":11345,"type":15},{"name":11347,"slug":11348,"type":15},{"name":9,"slug":8,"type":15},{"name":11350,"slug":11351,"type":15},{"name":11366,"slug":283,"type":15},"TypeScript","2026-07-03T16:31:19.368382",{"slug":11369,"name":11369,"fn":11370,"description":11371,"org":11372,"tags":11373,"stars":25,"repoUrl":26,"updatedAt":11379},"azure-data-tables-java","build table storage applications with Java","Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at scale.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11374,11375,11376,11377,11378],{"name":11150,"slug":33,"type":15},{"name":11344,"slug":11345,"type":15},{"name":11347,"slug":11348,"type":15},{"name":11169,"slug":11170,"type":15},{"name":11350,"slug":11351,"type":15},"2026-05-13T06:14:17.582229",267]