acemyjob-ui 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 AceMyJob UI
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,69 +1,224 @@
1
- # React + TypeScript + Vite
1
+ # AceMyJob UI
2
2
 
3
- This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
3
+ A modern React component library built for job search and career management applications. Built with TypeScript, Tailwind CSS, and Headless UI.
4
4
 
5
- Currently, two official plugins are available:
5
+ [![npm version](https://badge.fury.io/js/acemyjob-ui.svg)](https://badge.fury.io/js/acemyjob-ui)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
7
 
7
- - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) for Fast Refresh
8
- - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
8
+ ## Features
9
9
 
10
- ## Expanding the ESLint configuration
10
+ - 🎨 **Modern Design System** - Beautiful, accessible components with dark/light theme support
11
+ - 🔧 **TypeScript First** - Full TypeScript support with comprehensive type definitions
12
+ - 📱 **Responsive** - Mobile-first design that works on all screen sizes
13
+ - ♿ **Accessible** - Built with accessibility in mind using Headless UI primitives
14
+ - 🎭 **Themeable** - Customizable color system with CSS variables
15
+ - 📦 **Tree Shakable** - Import only what you need
11
16
 
12
- If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
17
+ ## 📦 Installation
13
18
 
14
- ```js
15
- export default tseslint.config([
16
- globalIgnores(['dist']),
17
- {
18
- files: ['**/*.{ts,tsx}'],
19
- extends: [
20
- // Other configs...
21
-
22
- // Remove tseslint.configs.recommended and replace with this
23
- ...tseslint.configs.recommendedTypeChecked,
24
- // Alternatively, use this for stricter rules
25
- ...tseslint.configs.strictTypeChecked,
26
- // Optionally, add this for stylistic rules
27
- ...tseslint.configs.stylisticTypeChecked,
28
-
29
- // Other configs...
30
- ],
31
- languageOptions: {
32
- parserOptions: {
33
- project: ['./tsconfig.node.json', './tsconfig.app.json'],
34
- tsconfigRootDir: import.meta.dirname,
35
- },
36
- // other options...
37
- },
38
- },
39
- ])
19
+ ```bash
20
+ npm install acemyjob-ui
21
+ # or
22
+ yarn add acemyjob-ui
23
+ # or
24
+ pnpm add acemyjob-ui
25
+ ```
26
+
27
+ ### Peer Dependencies
28
+
29
+ Make sure you have the required peer dependencies installed:
30
+
31
+ ```bash
32
+ npm install react react-dom @headlessui/react @heroicons/react
33
+ ```
34
+
35
+ ## 🚀 Quick Start
36
+
37
+ 1. **Import the CSS** in your app's entry point:
38
+
39
+ ```tsx
40
+ // In your main.tsx or App.tsx
41
+ import 'acemyjob-ui/styles';
42
+ ```
43
+
44
+ 2. **Wrap your app with ThemeProvider**:
45
+
46
+ ```tsx
47
+ import { ThemeProvider } from 'acemyjob-ui';
48
+
49
+ function App() {
50
+ return (
51
+ <ThemeProvider defaultTheme="system" storageKey="app-theme">
52
+ <YourApp />
53
+ </ThemeProvider>
54
+ );
55
+ }
56
+ ```
57
+
58
+ 3. **Use components**:
59
+
60
+ ```tsx
61
+ import { Sidebar, ThemeToggle } from 'acemyjob-ui';
62
+ import { HomeIcon, BriefcaseIcon } from '@heroicons/react/24/outline';
63
+
64
+ const navigation = [
65
+ { name: 'Dashboard', href: '/', icon: HomeIcon, current: true },
66
+ { name: 'Jobs', href: '/jobs', icon: BriefcaseIcon, current: false },
67
+ ];
68
+
69
+ const company = {
70
+ name: "Your Company",
71
+ logo: "/logo.svg"
72
+ };
73
+
74
+ const profile = {
75
+ name: "John Doe",
76
+ image: "/avatar.jpg"
77
+ };
78
+
79
+ function Dashboard() {
80
+ return (
81
+ <>
82
+ <ThemeToggle />
83
+ <Sidebar
84
+ company={company}
85
+ profile={profile}
86
+ navigation={navigation}
87
+ />
88
+ </>
89
+ );
90
+ }
91
+ ```
92
+
93
+ ## 📖 Components
94
+
95
+ ### ThemeProvider
96
+
97
+ Provides theme context to your application.
98
+
99
+ ```tsx
100
+ <ThemeProvider defaultTheme="light" storageKey="my-app-theme">
101
+ <App />
102
+ </ThemeProvider>
103
+ ```
104
+
105
+ **Props:**
106
+ - `defaultTheme` - `"light" | "dark" | "system"` (default: "system")
107
+ - `storageKey` - String for localStorage key (default: "acemyjob-ui-theme")
108
+
109
+ ### ThemeToggle
110
+
111
+ A button to toggle between light, dark, and system themes.
112
+
113
+ ```tsx
114
+ <ThemeToggle />
40
115
  ```
41
116
 
42
- You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
117
+ ### Sidebar
118
+
119
+ A responsive navigation sidebar with mobile support.
120
+
121
+ ```tsx
122
+ <Sidebar
123
+ company={company}
124
+ profile={profile}
125
+ navigation={navigation}
126
+ />
127
+ ```
128
+
129
+ **Props:**
130
+ - `company` - `{ name: string; logo: string }`
131
+ - `profile` - `{ name: string; image: string }`
132
+ - `navigation` - Array of navigation items
133
+
134
+ ### ColorPalette
135
+
136
+ Displays the complete color system (useful for design systems documentation).
137
+
138
+ ```tsx
139
+ <ColorPalette />
140
+ ```
141
+
142
+ ## 🎨 Styling
143
+
144
+ ### CSS Variables
145
+
146
+ The library uses CSS variables for theming. You can customize colors by overriding these variables:
147
+
148
+ ```css
149
+ :root {
150
+ --color-background: oklch(1.0 0.0 0);
151
+ --color-surface: oklch(0.98 0.002 247.83);
152
+ --color-text-primary: oklch(0.15 0.007 265.75);
153
+ /* ... more variables */
154
+ }
155
+
156
+ .dark {
157
+ --color-background: oklch(0.1 0.007 265.75);
158
+ --color-surface: oklch(0.13 0.008 265.75);
159
+ --color-text-primary: oklch(0.95 0.002 247.83);
160
+ /* ... more variables */
161
+ }
162
+ ```
163
+
164
+ ### Tailwind CSS
165
+
166
+ If you're using Tailwind CSS, extend your config to include the library's color system:
43
167
 
44
168
  ```js
45
- // eslint.config.js
46
- import reactX from 'eslint-plugin-react-x'
47
- import reactDom from 'eslint-plugin-react-dom'
48
-
49
- export default tseslint.config([
50
- globalIgnores(['dist']),
51
- {
52
- files: ['**/*.{ts,tsx}'],
53
- extends: [
54
- // Other configs...
55
- // Enable lint rules for React
56
- reactX.configs['recommended-typescript'],
57
- // Enable lint rules for React DOM
58
- reactDom.configs.recommended,
59
- ],
60
- languageOptions: {
61
- parserOptions: {
62
- project: ['./tsconfig.node.json', './tsconfig.app.json'],
63
- tsconfigRootDir: import.meta.dirname,
169
+ module.exports = {
170
+ darkMode: 'class',
171
+ content: [
172
+ './src/**/*.{js,ts,jsx,tsx}',
173
+ './node_modules/acemyjob-ui/**/*.{js,ts,jsx,tsx}',
174
+ ],
175
+ theme: {
176
+ extend: {
177
+ colors: {
178
+ background: 'var(--color-background)',
179
+ surface: 'var(--color-surface)',
180
+ 'text-primary': 'var(--color-text-primary)',
181
+ // ... more semantic colors
64
182
  },
65
- // other options...
66
183
  },
67
184
  },
68
- ])
185
+ plugins: [],
186
+ }
69
187
  ```
188
+
189
+ ## 📚 TypeScript
190
+
191
+ All components come with TypeScript definitions. Import types as needed:
192
+
193
+ ```tsx
194
+ import type { NavigationItem, Company, Profile, Theme } from 'acemyjob-ui';
195
+ ```
196
+
197
+ ## 🛠 Development
198
+
199
+ To contribute to this library:
200
+
201
+ ```bash
202
+ # Clone the repository
203
+ git clone https://github.com/yourusername/acemyjob-ui.git
204
+
205
+ # Install dependencies
206
+ npm install
207
+
208
+ # Start development server
209
+ npm run dev
210
+
211
+ # Build the library
212
+ npm run build
213
+
214
+ # Run Storybook
215
+ npm run storybook
216
+ ```
217
+
218
+ ## 📄 License
219
+
220
+ MIT © [Your Name](https://github.com/yourusername)
221
+
222
+ ## 🤝 Contributing
223
+
224
+ Contributions are welcome! Please feel free to submit a Pull Request.
package/dist/Demo.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const Demo: React.FC;
@@ -0,0 +1 @@
1
+ /*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */@layer properties{@supports ((-webkit-hyphens:none) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-duration:initial;--tw-ease:initial;--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-indigo-200:oklch(87% .065 274.039);--color-indigo-600:oklch(51.1% .262 276.966);--color-indigo-700:oklch(45.7% .24 277.023);--color-gray-900:oklch(21% .034 264.665);--color-white:#fff;--spacing:.25rem;--container-xs:20rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-3xl:1.875rem;--text-3xl--line-height: 1.2 ;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--radius-md:.375rem;--radius-lg:.5rem;--ease-in-out:cubic-bezier(.4,0,.2,1);--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-success-50:oklch(97.1% .013 142.423);--color-success-100:oklch(96.2% .037 141.267);--color-success-200:oklch(91.5% .084 145.477);--color-success-300:oklch(83.9% .155 144.468);--color-success-400:oklch(73.5% .184 142.686);--color-success-500:oklch(63.4% .179 142.495);--color-success-600:oklch(54.8% .166 143.748);--color-success-700:oklch(44.9% .132 144.206);--color-success-800:oklch(38.5% .108 144.206);--color-success-900:oklch(33.3% .089 144.936);--color-success-950:oklch(19.6% .057 145.477);--color-warning-50:oklch(98.5% .017 99.574);--color-warning-100:oklch(96.8% .043 102.212);--color-warning-200:oklch(92% .108 102.212);--color-warning-300:oklch(84.3% .167 99.574);--color-warning-400:oklch(76.5% .181 95.883);--color-warning-500:oklch(69.3% .157 92.317);--color-warning-600:oklch(59.6% .128 89.567);--color-warning-700:oklch(47.2% .105 85.594);--color-warning-800:oklch(41.7% .093 85.594);--color-warning-900:oklch(37.5% .08 85.594);--color-warning-950:oklch(23.7% .059 85.594);--color-error-50:oklch(97.1% .013 27.33);--color-error-100:oklch(93.6% .032 27.33);--color-error-200:oklch(88.5% .058 27.33);--color-error-300:oklch(81% .109 27.33);--color-error-400:oklch(70.4% .191 25.331);--color-error-500:oklch(62.8% .258 29.233);--color-error-600:oklch(56.9% .235 27.33);--color-error-700:oklch(47.2% .198 27.33);--color-error-800:oklch(41.2% .162 27.33);--color-error-900:oklch(37% .139 27.33);--color-error-950:oklch(22.3% .092 27.33);--color-reseda-green:oklch(53.1% .024 115.856);--color-reseda-green-100:oklch(11.4% .006 115.856);--color-reseda-green-200:oklch(22.8% .012 115.856);--color-reseda-green-300:oklch(34.2% .018 115.856);--color-reseda-green-400:oklch(45.6% .024 115.856);--color-reseda-green-500:oklch(53.1% .024 115.856);--color-reseda-green-600:oklch(63.2% .02 115.856);--color-reseda-green-700:oklch(73.3% .016 115.856);--color-reseda-green-800:oklch(83.4% .012 115.856);--color-reseda-green-900:oklch(93.5% .008 115.856);--color-moss-green:oklch(65% .031 89.784);--color-moss-green-100:oklch(13% .006 89.784);--color-moss-green-200:oklch(26% .012 89.784);--color-moss-green-300:oklch(39% .019 89.784);--color-moss-green-400:oklch(52% .025 89.784);--color-moss-green-500:oklch(65% .031 89.784);--color-moss-green-600:oklch(71.5% .026 89.784);--color-moss-green-700:oklch(78% .021 89.784);--color-moss-green-800:oklch(84.5% .016 89.784);--color-moss-green-900:oklch(91% .01 89.784);--color-khaki:oklch(71.7% .043 85.594);--color-khaki-100:oklch(16.3% .01 85.594);--color-khaki-200:oklch(28.6% .018 85.594);--color-khaki-300:oklch(43% .026 85.594);--color-khaki-400:oklch(57.3% .035 85.594);--color-khaki-500:oklch(71.7% .043 85.594);--color-khaki-600:oklch(76% .036 85.594);--color-khaki-700:oklch(80.3% .029 85.594);--color-khaki-800:oklch(88.6% .022 85.594);--color-khaki-900:oklch(92.9% .014 85.594);--color-desert-sand:oklch(75.7% .057 70.67);--color-desert-sand-100:oklch(18.6% .024 70.67);--color-desert-sand-200:oklch(31.5% .035 70.67);--color-desert-sand-300:oklch(44.4% .046 70.67);--color-desert-sand-400:oklch(57.3% .057 70.67);--color-desert-sand-500:oklch(75.7% .057 70.67);--color-desert-sand-600:oklch(78.7% .048 70.67);--color-desert-sand-700:oklch(81.7% .038 70.67);--color-desert-sand-800:oklch(87.7% .029 70.67);--color-desert-sand-900:oklch(94.7% .019 70.67);--color-peach-yellow:oklch(88.3% .077 92.317);--color-peach-yellow-100:oklch(25.4% .031 92.317);--color-peach-yellow-200:oklch(46% .046 92.317);--color-peach-yellow-300:oklch(70.7% .062 92.317);--color-peach-yellow-400:oklch(80% .069 92.317);--color-peach-yellow-500:oklch(88.3% .077 92.317);--color-peach-yellow-600:oklch(90% .065 92.317);--color-peach-yellow-700:oklch(91.7% .054 92.317);--color-peach-yellow-800:oklch(95.1% .042 92.317);--color-peach-yellow-900:oklch(97.5% .031 92.317);--color-sunglow:oklch(84.7% .146 85.594);--color-sunglow-100:oklch(25.4% .058 85.594);--color-sunglow-200:oklch(42.4% .087 85.594);--color-sunglow-300:oklch(59.4% .117 85.594);--color-sunglow-400:oklch(76.3% .146 85.594);--color-sunglow-500:oklch(84.7% .146 85.594);--color-sunglow-600:oklch(87% .123 85.594);--color-sunglow-700:oklch(89.3% .102 85.594);--color-sunglow-800:oklch(93.9% .081 85.594);--color-sunglow-900:oklch(96.9% .058 85.594);--color-earth-yellow:oklch(74.5% .105 75.46);--color-earth-yellow-100:oklch(18.6% .042 75.46);--color-earth-yellow-200:oklch(31.5% .063 75.46);--color-earth-yellow-300:oklch(44.4% .084 75.46);--color-earth-yellow-400:oklch(63% .105 75.46);--color-earth-yellow-500:oklch(74.5% .105 75.46);--color-earth-yellow-600:oklch(78.7% .088 75.46);--color-earth-yellow-700:oklch(82.8% .07 75.46);--color-earth-yellow-800:oklch(91% .053 75.46);--color-earth-yellow-900:oklch(95.1% .035 75.46);--color-persian-orange:oklch(63.5% .091 54.011);--color-persian-orange-100:oklch(15.2% .036 54.011);--color-persian-orange-200:oklch(25.5% .055 54.011);--color-persian-orange-300:oklch(39.9% .073 54.011);--color-persian-orange-400:oklch(50.2% .091 54.011);--color-persian-orange-500:oklch(63.5% .091 54.011);--color-persian-orange-600:oklch(70.3% .076 54.011);--color-persian-orange-700:oklch(77.1% .061 54.011);--color-persian-orange-800:oklch(87% .046 54.011);--color-persian-orange-900:oklch(93.9% .03 54.011);--color-chamoisee:oklch(59% .067 70.67);--color-chamoisee-100:oklch(11.8% .027 70.67);--color-chamoisee-200:oklch(23.6% .04 70.67);--color-chamoisee-300:oklch(35.4% .054 70.67);--color-chamoisee-400:oklch(47.2% .067 70.67);--color-chamoisee-500:oklch(59% .067 70.67);--color-chamoisee-600:oklch(66.7% .056 70.67);--color-chamoisee-700:oklch(74.4% .045 70.67);--color-chamoisee-800:oklch(85.4% .034 70.67);--color-chamoisee-900:oklch(93.1% .022 70.67);--color-beaver:oklch(54.9% .044 70.67);--color-beaver-100:oklch(11% .018 70.67);--color-beaver-200:oklch(22% .026 70.67);--color-beaver-300:oklch(32.9% .035 70.67);--color-beaver-400:oklch(43.9% .044 70.67);--color-beaver-500:oklch(54.9% .044 70.67);--color-beaver-600:oklch(64.2% .037 70.67);--color-beaver-700:oklch(73.5% .029 70.67);--color-beaver-800:oklch(86.1% .022 70.67);--color-beaver-900:oklch(93.8% .015 70.67);--color-background:oklch(100% 0 0);--color-surface:oklch(98% .002 247.83);--color-surface-variant:oklch(96% .004 247.83);--color-text-primary:oklch(15% .007 265.75);--color-text-secondary:oklch(35% .012 265.75);--color-text-muted:oklch(55% .015 265.75);--color-border:oklch(85% .005 247.83);--color-border-subtle:oklch(92% .003 247.83)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::-moz-placeholder{opacity:1}::placeholder{opacity:1}@supports (not (-webkit-appearance:-apple-pay-button)) or (contain-intrinsic-size:1px){::-moz-placeholder{color:currentColor}::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::-moz-placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.sticky{position:sticky}.inset-0{inset:calc(var(--spacing)*0)}.top-0{top:calc(var(--spacing)*0)}.top-4{top:calc(var(--spacing)*4)}.right-4{right:calc(var(--spacing)*4)}.left-full{left:100%}.z-10{z-index:10}.z-40{z-index:40}.z-50{z-index:50}.-m-2\.5{margin:calc(var(--spacing)*-2.5)}.-mx-2{margin-inline:calc(var(--spacing)*-2)}.-mx-6{margin-inline:calc(var(--spacing)*-6)}.mt-auto{margin-top:auto}.mr-16{margin-right:calc(var(--spacing)*16)}.flex{display:flex}.grid{display:grid}.hidden{display:none}.size-6{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}.size-8{width:calc(var(--spacing)*8);height:calc(var(--spacing)*8)}.h-4{height:calc(var(--spacing)*4)}.h-8{height:calc(var(--spacing)*8)}.h-16{height:calc(var(--spacing)*16)}.min-h-screen{min-height:100vh}.w-4{width:calc(var(--spacing)*4)}.w-16{width:calc(var(--spacing)*16)}.w-auto{width:auto}.w-full{width:100%}.max-w-xs{max-width:var(--container-xs)}.flex-1{flex:1}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-center{justify-content:center}.gap-2{gap:calc(var(--spacing)*2)}.gap-4{gap:calc(var(--spacing)*4)}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-8>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*8)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*8)*calc(1 - var(--tw-space-y-reverse)))}.gap-x-3{-moz-column-gap:calc(var(--spacing)*3);column-gap:calc(var(--spacing)*3)}.gap-x-4{-moz-column-gap:calc(var(--spacing)*4);column-gap:calc(var(--spacing)*4)}.gap-x-6{-moz-column-gap:calc(var(--spacing)*6);column-gap:calc(var(--spacing)*6)}.gap-y-5{row-gap:calc(var(--spacing)*5)}.gap-y-7{row-gap:calc(var(--spacing)*7)}.overflow-y-auto{overflow-y:auto}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.border{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-border{border-color:var(--color-border)}.border-border-subtle{border-color:var(--color-border-subtle)}.bg-background{background-color:var(--color-background)}.bg-beaver{background-color:var(--color-beaver)}.bg-beaver-100{background-color:var(--color-beaver-100)}.bg-beaver-200{background-color:var(--color-beaver-200)}.bg-beaver-300{background-color:var(--color-beaver-300)}.bg-beaver-400{background-color:var(--color-beaver-400)}.bg-beaver-500{background-color:var(--color-beaver-500)}.bg-beaver-600{background-color:var(--color-beaver-600)}.bg-beaver-700{background-color:var(--color-beaver-700)}.bg-beaver-800{background-color:var(--color-beaver-800)}.bg-beaver-900{background-color:var(--color-beaver-900)}.bg-border{background-color:var(--color-border)}.bg-border-subtle{background-color:var(--color-border-subtle)}.bg-chamoisee{background-color:var(--color-chamoisee)}.bg-chamoisee-100{background-color:var(--color-chamoisee-100)}.bg-chamoisee-200{background-color:var(--color-chamoisee-200)}.bg-chamoisee-300{background-color:var(--color-chamoisee-300)}.bg-chamoisee-400{background-color:var(--color-chamoisee-400)}.bg-chamoisee-500{background-color:var(--color-chamoisee-500)}.bg-chamoisee-600{background-color:var(--color-chamoisee-600)}.bg-chamoisee-700{background-color:var(--color-chamoisee-700)}.bg-chamoisee-800{background-color:var(--color-chamoisee-800)}.bg-chamoisee-900{background-color:var(--color-chamoisee-900)}.bg-desert-sand{background-color:var(--color-desert-sand)}.bg-desert-sand-100{background-color:var(--color-desert-sand-100)}.bg-desert-sand-200{background-color:var(--color-desert-sand-200)}.bg-desert-sand-300{background-color:var(--color-desert-sand-300)}.bg-desert-sand-400{background-color:var(--color-desert-sand-400)}.bg-desert-sand-500{background-color:var(--color-desert-sand-500)}.bg-desert-sand-600{background-color:var(--color-desert-sand-600)}.bg-desert-sand-700{background-color:var(--color-desert-sand-700)}.bg-desert-sand-800{background-color:var(--color-desert-sand-800)}.bg-desert-sand-900{background-color:var(--color-desert-sand-900)}.bg-earth-yellow{background-color:var(--color-earth-yellow)}.bg-earth-yellow-100{background-color:var(--color-earth-yellow-100)}.bg-earth-yellow-200{background-color:var(--color-earth-yellow-200)}.bg-earth-yellow-300{background-color:var(--color-earth-yellow-300)}.bg-earth-yellow-400{background-color:var(--color-earth-yellow-400)}.bg-earth-yellow-500{background-color:var(--color-earth-yellow-500)}.bg-earth-yellow-600{background-color:var(--color-earth-yellow-600)}.bg-earth-yellow-700{background-color:var(--color-earth-yellow-700)}.bg-earth-yellow-800{background-color:var(--color-earth-yellow-800)}.bg-earth-yellow-900{background-color:var(--color-earth-yellow-900)}.bg-error-50{background-color:var(--color-error-50)}.bg-error-100{background-color:var(--color-error-100)}.bg-error-200{background-color:var(--color-error-200)}.bg-error-300{background-color:var(--color-error-300)}.bg-error-400{background-color:var(--color-error-400)}.bg-error-500{background-color:var(--color-error-500)}.bg-error-600{background-color:var(--color-error-600)}.bg-error-700{background-color:var(--color-error-700)}.bg-error-800{background-color:var(--color-error-800)}.bg-error-900{background-color:var(--color-error-900)}.bg-error-950{background-color:var(--color-error-950)}.bg-gray-900\/80{background-color:#101828cc}@supports (color:color-mix(in lab,red,red)){.bg-gray-900\/80{background-color:color-mix(in oklab,var(--color-gray-900)80%,transparent)}}.bg-indigo-600{background-color:var(--color-indigo-600)}.bg-indigo-700{background-color:var(--color-indigo-700)}.bg-khaki{background-color:var(--color-khaki)}.bg-khaki-100{background-color:var(--color-khaki-100)}.bg-khaki-200{background-color:var(--color-khaki-200)}.bg-khaki-300{background-color:var(--color-khaki-300)}.bg-khaki-400{background-color:var(--color-khaki-400)}.bg-khaki-500{background-color:var(--color-khaki-500)}.bg-khaki-600{background-color:var(--color-khaki-600)}.bg-khaki-700{background-color:var(--color-khaki-700)}.bg-khaki-800{background-color:var(--color-khaki-800)}.bg-khaki-900{background-color:var(--color-khaki-900)}.bg-moss-green{background-color:var(--color-moss-green)}.bg-moss-green-100{background-color:var(--color-moss-green-100)}.bg-moss-green-200{background-color:var(--color-moss-green-200)}.bg-moss-green-300{background-color:var(--color-moss-green-300)}.bg-moss-green-400{background-color:var(--color-moss-green-400)}.bg-moss-green-500{background-color:var(--color-moss-green-500)}.bg-moss-green-600{background-color:var(--color-moss-green-600)}.bg-moss-green-700{background-color:var(--color-moss-green-700)}.bg-moss-green-800{background-color:var(--color-moss-green-800)}.bg-moss-green-900{background-color:var(--color-moss-green-900)}.bg-peach-yellow{background-color:var(--color-peach-yellow)}.bg-peach-yellow-100{background-color:var(--color-peach-yellow-100)}.bg-peach-yellow-200{background-color:var(--color-peach-yellow-200)}.bg-peach-yellow-300{background-color:var(--color-peach-yellow-300)}.bg-peach-yellow-400{background-color:var(--color-peach-yellow-400)}.bg-peach-yellow-500{background-color:var(--color-peach-yellow-500)}.bg-peach-yellow-600{background-color:var(--color-peach-yellow-600)}.bg-peach-yellow-700{background-color:var(--color-peach-yellow-700)}.bg-peach-yellow-800{background-color:var(--color-peach-yellow-800)}.bg-peach-yellow-900{background-color:var(--color-peach-yellow-900)}.bg-persian-orange{background-color:var(--color-persian-orange)}.bg-persian-orange-100{background-color:var(--color-persian-orange-100)}.bg-persian-orange-200{background-color:var(--color-persian-orange-200)}.bg-persian-orange-300{background-color:var(--color-persian-orange-300)}.bg-persian-orange-400{background-color:var(--color-persian-orange-400)}.bg-persian-orange-500{background-color:var(--color-persian-orange-500)}.bg-persian-orange-600{background-color:var(--color-persian-orange-600)}.bg-persian-orange-700{background-color:var(--color-persian-orange-700)}.bg-persian-orange-800{background-color:var(--color-persian-orange-800)}.bg-persian-orange-900{background-color:var(--color-persian-orange-900)}.bg-reseda-green{background-color:var(--color-reseda-green)}.bg-reseda-green-100{background-color:var(--color-reseda-green-100)}.bg-reseda-green-200{background-color:var(--color-reseda-green-200)}.bg-reseda-green-300{background-color:var(--color-reseda-green-300)}.bg-reseda-green-400{background-color:var(--color-reseda-green-400)}.bg-reseda-green-500{background-color:var(--color-reseda-green-500)}.bg-reseda-green-600{background-color:var(--color-reseda-green-600)}.bg-reseda-green-700{background-color:var(--color-reseda-green-700)}.bg-reseda-green-800{background-color:var(--color-reseda-green-800)}.bg-reseda-green-900{background-color:var(--color-reseda-green-900)}.bg-success-50{background-color:var(--color-success-50)}.bg-success-100{background-color:var(--color-success-100)}.bg-success-200{background-color:var(--color-success-200)}.bg-success-300{background-color:var(--color-success-300)}.bg-success-400{background-color:var(--color-success-400)}.bg-success-500{background-color:var(--color-success-500)}.bg-success-600{background-color:var(--color-success-600)}.bg-success-700{background-color:var(--color-success-700)}.bg-success-800{background-color:var(--color-success-800)}.bg-success-900{background-color:var(--color-success-900)}.bg-success-950{background-color:var(--color-success-950)}.bg-sunglow{background-color:var(--color-sunglow)}.bg-sunglow-100{background-color:var(--color-sunglow-100)}.bg-sunglow-200{background-color:var(--color-sunglow-200)}.bg-sunglow-300{background-color:var(--color-sunglow-300)}.bg-sunglow-400{background-color:var(--color-sunglow-400)}.bg-sunglow-500{background-color:var(--color-sunglow-500)}.bg-sunglow-600{background-color:var(--color-sunglow-600)}.bg-sunglow-700{background-color:var(--color-sunglow-700)}.bg-sunglow-800{background-color:var(--color-sunglow-800)}.bg-sunglow-900{background-color:var(--color-sunglow-900)}.bg-surface{background-color:var(--color-surface)}.bg-surface-variant{background-color:var(--color-surface-variant)}.bg-text-muted{background-color:var(--color-text-muted)}.bg-text-primary{background-color:var(--color-text-primary)}.bg-text-secondary{background-color:var(--color-text-secondary)}.bg-warning-50{background-color:var(--color-warning-50)}.bg-warning-100{background-color:var(--color-warning-100)}.bg-warning-200{background-color:var(--color-warning-200)}.bg-warning-300{background-color:var(--color-warning-300)}.bg-warning-400{background-color:var(--color-warning-400)}.bg-warning-500{background-color:var(--color-warning-500)}.bg-warning-600{background-color:var(--color-warning-600)}.bg-warning-700{background-color:var(--color-warning-700)}.bg-warning-800{background-color:var(--color-warning-800)}.bg-warning-900{background-color:var(--color-warning-900)}.bg-warning-950{background-color:var(--color-warning-950)}.p-2{padding:calc(var(--spacing)*2)}.p-2\.5{padding:calc(var(--spacing)*2.5)}.p-3{padding:calc(var(--spacing)*3)}.p-8{padding:calc(var(--spacing)*8)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-6{padding-inline:calc(var(--spacing)*6)}.py-2{padding-block:calc(var(--spacing)*2)}.py-3{padding-block:calc(var(--spacing)*3)}.py-4{padding-block:calc(var(--spacing)*4)}.pt-5{padding-top:calc(var(--spacing)*5)}.pt-8{padding-top:calc(var(--spacing)*8)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.text-center{text-align:center}.font-mono{font-family:var(--font-mono)}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-sm\/6{font-size:var(--text-sm);line-height:calc(var(--spacing)*6)}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.text-indigo-200{color:var(--color-indigo-200)}.text-text-muted{color:var(--color-text-muted)}.text-text-primary{color:var(--color-text-primary)}.text-text-secondary{color:var(--color-text-secondary)}.text-white{color:var(--color-white)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,visibility,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-300{--tw-duration:.3s;transition-duration:.3s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-linear{--tw-ease:linear;transition-timing-function:linear}@media (hover:hover){.group-hover\:text-white:is(:where(.group):hover *){color:var(--color-white)}.hover\:bg-indigo-700:hover{background-color:var(--color-indigo-700)}.hover\:bg-surface-variant:hover{background-color:var(--color-surface-variant)}.hover\:text-text-primary:hover{color:var(--color-text-primary)}.hover\:text-white:hover{color:var(--color-white)}}.data-closed\:-translate-x-full[data-closed]{--tw-translate-x:-100%;translate:var(--tw-translate-x)var(--tw-translate-y)}.data-closed\:opacity-0[data-closed]{opacity:0}@media (min-width:40rem){.sm\:inline{display:inline}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:px-6{padding-inline:calc(var(--spacing)*6)}}@media (min-width:48rem){.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}@media (min-width:64rem){.lg\:fixed{position:fixed}.lg\:inset-y-0{inset-block:calc(var(--spacing)*0)}.lg\:z-50{z-index:50}.lg\:flex{display:flex}.lg\:hidden{display:none}.lg\:w-72{width:calc(var(--spacing)*72)}.lg\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.lg\:flex-col{flex-direction:column}}@media (min-width:80rem){.xl\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}}}.dark{--color-background:oklch(10% .007 265.75);--color-surface:oklch(13% .008 265.75);--color-surface-variant:oklch(16% .009 265.75);--color-text-primary:oklch(95% .002 247.83);--color-text-secondary:oklch(75% .005 247.83);--color-text-muted:oklch(55% .008 247.83);--color-border:oklch(25% .01 265.75);--color-border-subtle:oklch(18% .008 265.75)}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}