nitrostack 1.0.55 → 1.0.57
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/dist/cli/commands/init.d.ts.map +1 -1
- package/dist/cli/commands/init.js +14 -9
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/widgets/hooks/index.d.ts +7 -0
- package/dist/widgets/hooks/index.d.ts.map +1 -0
- package/dist/widgets/hooks/index.js +7 -0
- package/dist/widgets/hooks/index.js.map +1 -0
- package/dist/widgets/hooks/use-display-mode.d.ts +11 -0
- package/dist/widgets/hooks/use-display-mode.d.ts.map +1 -0
- package/dist/widgets/hooks/use-display-mode.js +13 -0
- package/dist/widgets/hooks/use-display-mode.js.map +1 -0
- package/dist/widgets/hooks/use-max-height.d.ts +10 -0
- package/dist/widgets/hooks/use-max-height.d.ts.map +1 -0
- package/dist/widgets/hooks/use-max-height.js +13 -0
- package/dist/widgets/hooks/use-max-height.js.map +1 -0
- package/dist/widgets/hooks/use-openai-global.d.ts +12 -0
- package/dist/widgets/hooks/use-openai-global.d.ts.map +1 -0
- package/dist/widgets/hooks/use-openai-global.js +32 -0
- package/dist/widgets/hooks/use-openai-global.js.map +1 -0
- package/dist/widgets/hooks/use-theme.d.ts +10 -0
- package/dist/widgets/hooks/use-theme.d.ts.map +1 -0
- package/dist/widgets/hooks/use-theme.js +12 -0
- package/dist/widgets/hooks/use-theme.js.map +1 -0
- package/dist/widgets/hooks/use-widget-state.d.ts +18 -0
- package/dist/widgets/hooks/use-widget-state.d.ts.map +1 -0
- package/dist/widgets/hooks/use-widget-state.js +27 -0
- package/dist/widgets/hooks/use-widget-state.js.map +1 -0
- package/dist/widgets/hooks/useWidgetSDK.d.ts +47 -0
- package/dist/widgets/hooks/useWidgetSDK.d.ts.map +1 -0
- package/dist/widgets/hooks/useWidgetSDK.js +67 -0
- package/dist/widgets/hooks/useWidgetSDK.js.map +1 -0
- package/dist/widgets/index.d.ts +7 -1
- package/dist/widgets/index.d.ts.map +1 -1
- package/dist/widgets/index.js +11 -1
- package/dist/widgets/index.js.map +1 -1
- package/dist/widgets/runtime/WidgetLayout.d.ts +32 -0
- package/dist/widgets/runtime/WidgetLayout.d.ts.map +1 -0
- package/dist/widgets/runtime/WidgetLayout.js +143 -0
- package/dist/widgets/runtime/WidgetLayout.js.map +1 -0
- package/dist/widgets/runtime/widget-polyfill.d.ts +1 -0
- package/dist/widgets/runtime/widget-polyfill.d.ts.map +1 -0
- package/dist/widgets/runtime/widget-polyfill.js +28 -0
- package/dist/widgets/runtime/widget-polyfill.js.map +1 -0
- package/dist/widgets/sdk.d.ts +109 -0
- package/dist/widgets/sdk.d.ts.map +1 -0
- package/dist/widgets/sdk.js +221 -0
- package/dist/widgets/sdk.js.map +1 -0
- package/dist/widgets/types.d.ts +89 -0
- package/dist/widgets/types.d.ts.map +1 -0
- package/dist/widgets/types.js +8 -0
- package/dist/widgets/types.js.map +1 -0
- package/dist/widgets/utils/media-queries.d.ts +34 -0
- package/dist/widgets/utils/media-queries.d.ts.map +1 -0
- package/dist/widgets/utils/media-queries.js +42 -0
- package/dist/widgets/utils/media-queries.js.map +1 -0
- package/package.json +2 -2
- package/src/studio/app/chat/page.tsx +274 -137
- package/src/studio/app/globals.css +140 -64
- package/src/studio/branding.md +807 -0
- package/src/studio/components/WidgetRenderer.tsx +222 -16
- package/src/studio/lib/llm-service.ts +39 -39
- package/templates/typescript-oauth/{env.example → .env.example} +4 -10
- package/templates/typescript-oauth/README.md +226 -306
- package/templates/typescript-oauth/package-lock.json +4253 -0
- package/templates/typescript-oauth/package.json +10 -5
- package/templates/typescript-oauth/src/app.module.ts +39 -36
- package/templates/typescript-oauth/src/guards/oauth.guard.ts +0 -1
- package/templates/typescript-oauth/src/index.ts +22 -30
- package/templates/typescript-oauth/src/modules/flights/booking.tools.ts +323 -0
- package/templates/typescript-oauth/src/modules/flights/flights.module.ts +14 -0
- package/templates/typescript-oauth/src/modules/flights/flights.prompts.ts +231 -0
- package/templates/typescript-oauth/src/modules/flights/flights.resources.ts +215 -0
- package/templates/typescript-oauth/src/modules/flights/flights.tools.ts +457 -0
- package/templates/typescript-oauth/src/services/duffel.service.ts +285 -0
- package/templates/typescript-oauth/src/widgets/app/airport-search/page.tsx +270 -0
- package/templates/typescript-oauth/src/widgets/app/flight-details/page.tsx +261 -0
- package/templates/typescript-oauth/src/widgets/app/flight-search-results/page.tsx +378 -0
- package/templates/typescript-oauth/src/widgets/app/globals.css +167 -0
- package/templates/typescript-oauth/src/widgets/app/layout.tsx +6 -2
- package/templates/typescript-oauth/src/widgets/app/order-cancellation/page.tsx +207 -0
- package/templates/typescript-oauth/src/widgets/app/order-summary/page.tsx +245 -0
- package/templates/typescript-oauth/src/widgets/app/payment-confirmation/page.tsx +152 -0
- package/templates/typescript-oauth/src/widgets/app/seat-selection/page.tsx +486 -0
- package/templates/typescript-oauth/src/widgets/next-env.d.ts +5 -0
- package/templates/typescript-oauth/src/widgets/package-lock.json +155 -126
- package/templates/typescript-oauth/src/widgets/widget-manifest.json +374 -27
- package/templates/typescript-pizzaz/IMPLEMENTATION.md +98 -0
- package/templates/typescript-pizzaz/README.md +233 -0
- package/templates/typescript-pizzaz/package.json +31 -0
- package/templates/typescript-pizzaz/src/app.module.ts +28 -0
- package/templates/typescript-pizzaz/src/index.ts +30 -0
- package/templates/typescript-pizzaz/src/modules/pizzaz/pizzaz.data.ts +106 -0
- package/templates/typescript-pizzaz/src/modules/pizzaz/pizzaz.module.ts +11 -0
- package/templates/typescript-pizzaz/src/modules/pizzaz/pizzaz.service.ts +60 -0
- package/templates/typescript-pizzaz/src/modules/pizzaz/pizzaz.tools.ts +197 -0
- package/templates/typescript-pizzaz/src/widgets/app/layout.tsx +18 -0
- package/templates/typescript-pizzaz/src/widgets/app/pizza-list/page.tsx +272 -0
- package/templates/typescript-pizzaz/src/widgets/app/pizza-map/page.tsx +216 -0
- package/templates/typescript-pizzaz/src/widgets/app/pizza-shop/page.tsx +374 -0
- package/templates/typescript-pizzaz/src/widgets/components/CompactShopCard.tsx +144 -0
- package/templates/typescript-pizzaz/src/widgets/components/PizzaCard.tsx +191 -0
- package/templates/typescript-pizzaz/src/widgets/package.json +30 -0
- package/templates/typescript-pizzaz/src/widgets/widget-manifest.json +253 -0
- package/templates/typescript-pizzaz/tsconfig.json +30 -0
- package/templates/typescript-starter/src/modules/calculator/calculator.resources.ts +0 -1
- package/templates/typescript-starter/src/widgets/app/calculator-result/page.tsx +102 -56
- package/templates/typescript-starter/src/widgets/app/layout.tsx +6 -2
- package/templates/typescript-auth/AI_AGENT_CLI_REFERENCE.md +0 -702
- package/templates/typescript-auth/AI_AGENT_SDK_REFERENCE.md +0 -1260
- package/templates/typescript-auth/README.md +0 -402
- package/templates/typescript-auth/env.example +0 -25
- package/templates/typescript-auth/package.json +0 -36
- package/templates/typescript-auth/src/app.module.ts +0 -103
- package/templates/typescript-auth/src/db/database.ts +0 -160
- package/templates/typescript-auth/src/db/seed.ts +0 -374
- package/templates/typescript-auth/src/db/setup.ts +0 -87
- package/templates/typescript-auth/src/events/analytics.service.ts +0 -52
- package/templates/typescript-auth/src/events/notification.service.ts +0 -40
- package/templates/typescript-auth/src/filters/global-exception.filter.ts +0 -28
- package/templates/typescript-auth/src/guards/README.md +0 -75
- package/templates/typescript-auth/src/guards/jwt.guard.ts +0 -105
- package/templates/typescript-auth/src/health/database.health.ts +0 -41
- package/templates/typescript-auth/src/index.ts +0 -29
- package/templates/typescript-auth/src/interceptors/transform.interceptor.ts +0 -24
- package/templates/typescript-auth/src/middleware/logging.middleware.ts +0 -42
- package/templates/typescript-auth/src/modules/addresses/addresses.module.ts +0 -16
- package/templates/typescript-auth/src/modules/addresses/addresses.prompts.ts +0 -114
- package/templates/typescript-auth/src/modules/addresses/addresses.resources.ts +0 -40
- package/templates/typescript-auth/src/modules/addresses/addresses.tools.ts +0 -284
- package/templates/typescript-auth/src/modules/auth/auth.module.ts +0 -16
- package/templates/typescript-auth/src/modules/auth/auth.prompts.ts +0 -147
- package/templates/typescript-auth/src/modules/auth/auth.resources.ts +0 -84
- package/templates/typescript-auth/src/modules/auth/auth.tools.ts +0 -139
- package/templates/typescript-auth/src/modules/cart/cart.module.ts +0 -16
- package/templates/typescript-auth/src/modules/cart/cart.prompts.ts +0 -95
- package/templates/typescript-auth/src/modules/cart/cart.resources.ts +0 -44
- package/templates/typescript-auth/src/modules/cart/cart.tools.ts +0 -277
- package/templates/typescript-auth/src/modules/orders/orders.module.ts +0 -16
- package/templates/typescript-auth/src/modules/orders/orders.prompts.ts +0 -88
- package/templates/typescript-auth/src/modules/orders/orders.resources.ts +0 -48
- package/templates/typescript-auth/src/modules/orders/orders.tools.ts +0 -303
- package/templates/typescript-auth/src/modules/products/products.module.ts +0 -16
- package/templates/typescript-auth/src/modules/products/products.prompts.ts +0 -146
- package/templates/typescript-auth/src/modules/products/products.resources.ts +0 -98
- package/templates/typescript-auth/src/modules/products/products.tools.ts +0 -266
- package/templates/typescript-auth/src/pipes/validation.pipe.ts +0 -42
- package/templates/typescript-auth/src/services/database.service.ts +0 -90
- package/templates/typescript-auth/src/widgets/app/add-to-cart/page.tsx +0 -122
- package/templates/typescript-auth/src/widgets/app/address-added/page.tsx +0 -116
- package/templates/typescript-auth/src/widgets/app/address-deleted/page.tsx +0 -105
- package/templates/typescript-auth/src/widgets/app/address-list/page.tsx +0 -139
- package/templates/typescript-auth/src/widgets/app/address-updated/page.tsx +0 -153
- package/templates/typescript-auth/src/widgets/app/cart-cleared/page.tsx +0 -86
- package/templates/typescript-auth/src/widgets/app/cart-updated/page.tsx +0 -116
- package/templates/typescript-auth/src/widgets/app/categories/page.tsx +0 -134
- package/templates/typescript-auth/src/widgets/app/layout.tsx +0 -21
- package/templates/typescript-auth/src/widgets/app/login-result/page.tsx +0 -129
- package/templates/typescript-auth/src/widgets/app/order-confirmation/page.tsx +0 -231
- package/templates/typescript-auth/src/widgets/app/order-details/page.tsx +0 -225
- package/templates/typescript-auth/src/widgets/app/order-history/page.tsx +0 -218
- package/templates/typescript-auth/src/widgets/app/product-card/page.tsx +0 -121
- package/templates/typescript-auth/src/widgets/app/products-grid/page.tsx +0 -198
- package/templates/typescript-auth/src/widgets/app/shopping-cart/page.tsx +0 -187
- package/templates/typescript-auth/src/widgets/app/whoami/page.tsx +0 -165
- package/templates/typescript-auth/src/widgets/next.config.js +0 -38
- package/templates/typescript-auth/src/widgets/package.json +0 -18
- package/templates/typescript-auth/src/widgets/styles/ecommerce.ts +0 -169
- package/templates/typescript-auth/src/widgets/tsconfig.json +0 -28
- package/templates/typescript-auth/src/widgets/types/tool-data.ts +0 -141
- package/templates/typescript-auth/src/widgets/widget-manifest.json +0 -464
- package/templates/typescript-auth/tsconfig.json +0 -27
- package/templates/typescript-auth-api-key/AI_AGENT_CLI_REFERENCE.md +0 -701
- package/templates/typescript-auth-api-key/AI_AGENT_SDK_REFERENCE.md +0 -1260
- package/templates/typescript-auth-api-key/README.md +0 -485
- package/templates/typescript-auth-api-key/env.example +0 -17
- package/templates/typescript-auth-api-key/package.json +0 -21
- package/templates/typescript-auth-api-key/src/app.module.ts +0 -38
- package/templates/typescript-auth-api-key/src/guards/apikey.guard.ts +0 -47
- package/templates/typescript-auth-api-key/src/guards/multi-auth.guard.ts +0 -157
- package/templates/typescript-auth-api-key/src/index.ts +0 -47
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.module.ts +0 -12
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.prompts.ts +0 -73
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.resources.ts +0 -60
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.tools.ts +0 -71
- package/templates/typescript-auth-api-key/src/modules/demo/demo.module.ts +0 -18
- package/templates/typescript-auth-api-key/src/modules/demo/demo.tools.ts +0 -155
- package/templates/typescript-auth-api-key/src/modules/demo/multi-auth.tools.ts +0 -123
- package/templates/typescript-auth-api-key/src/widgets/app/calculator-operations/page.tsx +0 -133
- package/templates/typescript-auth-api-key/src/widgets/app/calculator-result/page.tsx +0 -134
- package/templates/typescript-auth-api-key/src/widgets/app/layout.tsx +0 -14
- package/templates/typescript-auth-api-key/src/widgets/package.json +0 -24
- package/templates/typescript-auth-api-key/src/widgets/widget-manifest.json +0 -48
- package/templates/typescript-auth-api-key/tsconfig.json +0 -23
- package/templates/typescript-oauth/OAUTH_SETUP.md +0 -592
- package/templates/typescript-oauth/src/modules/demo/demo.module.ts +0 -16
- package/templates/typescript-oauth/src/modules/demo/demo.tools.ts +0 -190
- package/templates/typescript-oauth/src/widgets/app/calculator-operations/page.tsx +0 -133
- package/templates/typescript-oauth/src/widgets/app/calculator-result/page.tsx +0 -134
- package/templates/typescript-oauth/src/widgets/out/404.html +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/WU9THacVqL52RZbrZOLS1/_buildManifest.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/WU9THacVqL52RZbrZOLS1/_ssgManifest.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/117-eb57c7ef86f964a4.js +0 -2
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/app/_not-found/page-dcb83ba3e4d0aafd.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/app/calculator-operations/page-b8913a740073ea8a.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/app/calculator-result/page-ddaaab2fce95dea2.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/app/layout-cbd3ebdc4ecc5247.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/fd9d1056-749e5812300142af.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/framework-f66176bb897dc684.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/main-76df43fcef3db344.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/main-app-f9c40224d04023c5.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/pages/_app-72b849fbd24ac258.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/pages/_error-7ba65e1336b92748.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/webpack-100b9e646d9c912e.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/calculator-operations.html +0 -1
- package/templates/typescript-oauth/src/widgets/out/calculator-operations.txt +0 -7
- package/templates/typescript-oauth/src/widgets/out/calculator-result.html +0 -1
- package/templates/typescript-oauth/src/widgets/out/calculator-result.txt +0 -7
- package/templates/typescript-starter/src/widgets/app/calculator-operations/page.tsx +0 -133
- /package/templates/{typescript-auth-api-key → typescript-oauth}/src/health/system.health.ts +0 -0
- /package/templates/{typescript-auth-api-key → typescript-pizzaz}/src/widgets/next.config.js +0 -0
- /package/templates/{typescript-auth-api-key → typescript-pizzaz}/src/widgets/tsconfig.json +0 -0
|
@@ -4,56 +4,107 @@
|
|
|
4
4
|
|
|
5
5
|
@layer base {
|
|
6
6
|
:root {
|
|
7
|
-
/*
|
|
8
|
-
--background:
|
|
9
|
-
|
|
10
|
-
--
|
|
11
|
-
|
|
12
|
-
--
|
|
13
|
-
|
|
14
|
-
--
|
|
15
|
-
|
|
16
|
-
--
|
|
17
|
-
|
|
18
|
-
--
|
|
19
|
-
|
|
20
|
-
--
|
|
21
|
-
|
|
22
|
-
--
|
|
23
|
-
|
|
24
|
-
--
|
|
25
|
-
|
|
26
|
-
--
|
|
7
|
+
/* Nitrocloud Light Theme - Following Branding Guidelines */
|
|
8
|
+
--background: 0 0% 100%;
|
|
9
|
+
/* #FFFFFF */
|
|
10
|
+
--foreground: 222.2 84% 4.9%;
|
|
11
|
+
/* #020617 - Near black */
|
|
12
|
+
--card: 0 0% 100%;
|
|
13
|
+
/* #FFFFFF */
|
|
14
|
+
--card-foreground: 222.2 84% 4.9%;
|
|
15
|
+
/* #020617 */
|
|
16
|
+
--popover: 0 0% 100%;
|
|
17
|
+
/* #FFFFFF */
|
|
18
|
+
--popover-foreground: 222.2 84% 4.9%;
|
|
19
|
+
/* #020617 */
|
|
20
|
+
--primary: 217 91% 60%;
|
|
21
|
+
/* #3B9FFF - Nitrocloud Blue */
|
|
22
|
+
--primary-foreground: 210 40% 98%;
|
|
23
|
+
/* #F8FAFC */
|
|
24
|
+
--secondary: 210 40% 96.1%;
|
|
25
|
+
/* #F1F5F9 */
|
|
26
|
+
--secondary-foreground: 222.2 84% 4.9%;
|
|
27
|
+
/* #020617 */
|
|
28
|
+
--muted: 210 40% 96.1%;
|
|
29
|
+
/* #F1F5F9 */
|
|
30
|
+
--muted-foreground: 215.4 16.3% 46.9%;
|
|
31
|
+
/* #64748B */
|
|
32
|
+
--accent: 217 91% 60%;
|
|
33
|
+
/* #3B9FFF - Nitrocloud Blue */
|
|
34
|
+
--accent-foreground: 222.2 84% 4.9%;
|
|
35
|
+
/* #020617 */
|
|
36
|
+
--destructive: 0 84.2% 60.2%;
|
|
37
|
+
/* #EF4444 */
|
|
38
|
+
--destructive-foreground: 0 0% 100%;
|
|
39
|
+
/* #FFFFFF */
|
|
40
|
+
--border: 214.3 31.8% 91.4%;
|
|
41
|
+
/* #E2E8F0 */
|
|
42
|
+
--input: 214.3 31.8% 91.4%;
|
|
43
|
+
/* #E2E8F0 */
|
|
44
|
+
--ring: 217 91% 60%;
|
|
45
|
+
/* #3B9FFF - Nitrocloud Blue */
|
|
27
46
|
--radius: 0.75rem;
|
|
28
|
-
|
|
29
|
-
--
|
|
30
|
-
|
|
47
|
+
/* 12px - Global default */
|
|
48
|
+
--success: 142.1 76.2% 36.3%;
|
|
49
|
+
/* #22C55E */
|
|
50
|
+
--warning: 38 92% 50%;
|
|
51
|
+
/* #F59E0B */
|
|
52
|
+
--info: 217 91% 60%;
|
|
53
|
+
/* #3B9FFF */
|
|
54
|
+
|
|
55
|
+
/* Nitrocloud Gradient */
|
|
56
|
+
--nitrocloud-gradient-start: 217 91% 60%;
|
|
57
|
+
/* Blue */
|
|
58
|
+
--nitrocloud-gradient-end: 221 83% 53%;
|
|
59
|
+
/* Deep Blue-Purple */
|
|
31
60
|
}
|
|
32
61
|
|
|
33
62
|
.dark {
|
|
34
|
-
/*
|
|
35
|
-
--background:
|
|
36
|
-
|
|
37
|
-
--
|
|
38
|
-
|
|
39
|
-
--
|
|
40
|
-
|
|
41
|
-
--
|
|
42
|
-
|
|
43
|
-
--
|
|
44
|
-
|
|
45
|
-
--
|
|
46
|
-
|
|
47
|
-
--
|
|
48
|
-
|
|
49
|
-
--
|
|
50
|
-
|
|
51
|
-
--
|
|
52
|
-
|
|
53
|
-
--
|
|
54
|
-
|
|
55
|
-
--
|
|
56
|
-
|
|
63
|
+
/* Nitrocloud Dark Theme - Following Branding Guidelines */
|
|
64
|
+
--background: 222.2 84% 4.9%;
|
|
65
|
+
/* #020617 - Deep dark blue */
|
|
66
|
+
--foreground: 210 40% 98%;
|
|
67
|
+
/* #F8FAFC */
|
|
68
|
+
--card: 217.2 32.6% 17.5%;
|
|
69
|
+
/* #1E293B */
|
|
70
|
+
--card-foreground: 210 40% 98%;
|
|
71
|
+
/* #F8FAFC */
|
|
72
|
+
--popover: 217.2 32.6% 17.5%;
|
|
73
|
+
/* #1E293B */
|
|
74
|
+
--popover-foreground: 210 40% 98%;
|
|
75
|
+
/* #F8FAFC */
|
|
76
|
+
--primary: 217 91% 60%;
|
|
77
|
+
/* #3B9FFF - Brighter in dark */
|
|
78
|
+
--primary-foreground: 222.2 47.4% 11.2%;
|
|
79
|
+
/* #0F172A */
|
|
80
|
+
--secondary: 217.2 32.6% 17.5%;
|
|
81
|
+
/* #1E293B */
|
|
82
|
+
--secondary-foreground: 210 40% 98%;
|
|
83
|
+
/* #F8FAFC */
|
|
84
|
+
--muted: 217.2 32.6% 17.5%;
|
|
85
|
+
/* #1E293B */
|
|
86
|
+
--muted-foreground: 215 20.2% 65.1%;
|
|
87
|
+
/* #94A3B8 */
|
|
88
|
+
--accent: 217 91% 60%;
|
|
89
|
+
/* #3B9FFF */
|
|
90
|
+
--accent-foreground: 210 40% 98%;
|
|
91
|
+
/* #F8FAFC */
|
|
92
|
+
--destructive: 0 62.8% 30.6%;
|
|
93
|
+
/* #991B1B */
|
|
94
|
+
--destructive-foreground: 210 40% 98%;
|
|
95
|
+
/* #F8FAFC */
|
|
96
|
+
--border: 217.2 32.6% 17.5%;
|
|
97
|
+
/* #1E293B */
|
|
98
|
+
--input: 217.2 32.6% 17.5%;
|
|
99
|
+
/* #1E293B */
|
|
100
|
+
--ring: 217 91% 60%;
|
|
101
|
+
/* #3B9FFF */
|
|
102
|
+
--success: 142.1 70.6% 45.3%;
|
|
103
|
+
/* #10B981 */
|
|
104
|
+
--warning: 38 92% 50%;
|
|
105
|
+
/* #F59E0B */
|
|
106
|
+
--info: 217 91% 60%;
|
|
107
|
+
/* #3B9FFF */
|
|
57
108
|
}
|
|
58
109
|
|
|
59
110
|
* {
|
|
@@ -68,11 +119,18 @@
|
|
|
68
119
|
-moz-osx-font-smoothing: grayscale;
|
|
69
120
|
}
|
|
70
121
|
|
|
71
|
-
code,
|
|
122
|
+
code,
|
|
123
|
+
pre,
|
|
124
|
+
.font-mono {
|
|
72
125
|
font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
|
|
73
126
|
}
|
|
74
127
|
|
|
75
|
-
h1,
|
|
128
|
+
h1,
|
|
129
|
+
h2,
|
|
130
|
+
h3,
|
|
131
|
+
h4,
|
|
132
|
+
h5,
|
|
133
|
+
h6 {
|
|
76
134
|
@apply font-semibold tracking-tight;
|
|
77
135
|
}
|
|
78
136
|
|
|
@@ -273,12 +331,10 @@
|
|
|
273
331
|
}
|
|
274
332
|
|
|
275
333
|
.shimmer {
|
|
276
|
-
background: linear-gradient(
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
hsl(var(--muted)) 100%
|
|
281
|
-
);
|
|
334
|
+
background: linear-gradient(90deg,
|
|
335
|
+
hsl(var(--muted)) 0%,
|
|
336
|
+
hsl(var(--muted) / 0.5) 50%,
|
|
337
|
+
hsl(var(--muted)) 100%);
|
|
282
338
|
background-size: 200% 100%;
|
|
283
339
|
animation: shimmer 1.5s ease-in-out infinite;
|
|
284
340
|
}
|
|
@@ -287,6 +343,7 @@
|
|
|
287
343
|
0% {
|
|
288
344
|
background-position: -200% 0;
|
|
289
345
|
}
|
|
346
|
+
|
|
290
347
|
100% {
|
|
291
348
|
background-position: 200% 0;
|
|
292
349
|
}
|
|
@@ -299,6 +356,7 @@
|
|
|
299
356
|
opacity: 0;
|
|
300
357
|
transform: translateY(8px);
|
|
301
358
|
}
|
|
359
|
+
|
|
302
360
|
to {
|
|
303
361
|
opacity: 1;
|
|
304
362
|
transform: translateY(0);
|
|
@@ -310,6 +368,7 @@
|
|
|
310
368
|
transform: translateX(-16px);
|
|
311
369
|
opacity: 0;
|
|
312
370
|
}
|
|
371
|
+
|
|
313
372
|
to {
|
|
314
373
|
transform: translateX(0);
|
|
315
374
|
opacity: 1;
|
|
@@ -321,6 +380,7 @@
|
|
|
321
380
|
opacity: 0;
|
|
322
381
|
transform: scale(0.95);
|
|
323
382
|
}
|
|
383
|
+
|
|
324
384
|
to {
|
|
325
385
|
opacity: 1;
|
|
326
386
|
transform: scale(1);
|
|
@@ -339,15 +399,31 @@
|
|
|
339
399
|
animation: scaleIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
340
400
|
}
|
|
341
401
|
|
|
342
|
-
/*
|
|
343
|
-
.
|
|
344
|
-
|
|
345
|
-
|
|
402
|
+
/* Nitrocloud Brand Gradient */
|
|
403
|
+
.nitrocloud-gradient {
|
|
404
|
+
background: linear-gradient(135deg,
|
|
405
|
+
hsl(var(--nitrocloud-gradient-start)),
|
|
406
|
+
hsl(var(--nitrocloud-gradient-end)));
|
|
346
407
|
}
|
|
347
408
|
|
|
348
|
-
.
|
|
349
|
-
|
|
350
|
-
|
|
409
|
+
.nitrocloud-text-gradient {
|
|
410
|
+
background: linear-gradient(135deg,
|
|
411
|
+
hsl(var(--nitrocloud-gradient-start)),
|
|
412
|
+
hsl(var(--nitrocloud-gradient-end)));
|
|
413
|
+
-webkit-background-clip: text;
|
|
414
|
+
-webkit-text-fill-color: transparent;
|
|
415
|
+
background-clip: text;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
/* Nitrocloud Blue Glow Effects */
|
|
419
|
+
.nitrocloud-glow {
|
|
420
|
+
box-shadow: 0 0 24px rgba(59, 159, 255, 0.15),
|
|
421
|
+
0 0 12px rgba(59, 159, 255, 0.1);
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.dark .nitrocloud-glow {
|
|
425
|
+
box-shadow: 0 0 32px rgba(59, 159, 255, 0.25),
|
|
426
|
+
0 0 16px rgba(59, 159, 255, 0.15);
|
|
351
427
|
}
|
|
352
428
|
|
|
353
429
|
/* Glassmorphism Effect */
|
|
@@ -364,13 +440,13 @@
|
|
|
364
440
|
/* Professional Hover Effects */
|
|
365
441
|
.hover-lift {
|
|
366
442
|
transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
|
|
367
|
-
|
|
443
|
+
box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
368
444
|
}
|
|
369
445
|
|
|
370
446
|
.hover-lift:hover {
|
|
371
447
|
transform: translateY(-4px);
|
|
372
448
|
box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.12),
|
|
373
|
-
|
|
449
|
+
0 8px 16px -4px rgba(0, 0, 0, 0.08);
|
|
374
450
|
}
|
|
375
451
|
|
|
376
452
|
/* Focus Visible Styles */
|
|
@@ -407,4 +483,4 @@
|
|
|
407
483
|
|
|
408
484
|
.empty-state-description {
|
|
409
485
|
@apply text-sm text-muted-foreground max-w-md;
|
|
410
|
-
}
|
|
486
|
+
}
|