@locusai/web 0.1.0

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.
Files changed (38) hide show
  1. package/LICENSE +21 -0
  2. package/next.config.js +7 -0
  3. package/package.json +37 -0
  4. package/postcss.config.mjs +5 -0
  5. package/src/app/backlog/page.tsx +19 -0
  6. package/src/app/docs/page.tsx +7 -0
  7. package/src/app/globals.css +603 -0
  8. package/src/app/layout.tsx +43 -0
  9. package/src/app/page.tsx +16 -0
  10. package/src/app/providers.tsx +16 -0
  11. package/src/app/settings/page.tsx +194 -0
  12. package/src/components/BoardFilter.tsx +98 -0
  13. package/src/components/Header.tsx +21 -0
  14. package/src/components/PropertyItem.tsx +98 -0
  15. package/src/components/Sidebar.tsx +109 -0
  16. package/src/components/TaskCard.tsx +138 -0
  17. package/src/components/TaskCreateModal.tsx +243 -0
  18. package/src/components/TaskPanel.tsx +765 -0
  19. package/src/components/index.ts +7 -0
  20. package/src/components/ui/Badge.tsx +77 -0
  21. package/src/components/ui/Button.tsx +47 -0
  22. package/src/components/ui/Checkbox.tsx +52 -0
  23. package/src/components/ui/Dropdown.tsx +107 -0
  24. package/src/components/ui/Input.tsx +36 -0
  25. package/src/components/ui/Modal.tsx +79 -0
  26. package/src/components/ui/Textarea.tsx +21 -0
  27. package/src/components/ui/index.ts +7 -0
  28. package/src/hooks/useTasks.ts +119 -0
  29. package/src/lib/api-client.ts +24 -0
  30. package/src/lib/utils.ts +6 -0
  31. package/src/services/doc.service.ts +27 -0
  32. package/src/services/index.ts +3 -0
  33. package/src/services/sprint.service.ts +26 -0
  34. package/src/services/task.service.ts +75 -0
  35. package/src/views/Backlog.tsx +691 -0
  36. package/src/views/Board.tsx +306 -0
  37. package/src/views/Docs.tsx +625 -0
  38. package/tsconfig.json +21 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Locus AI
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/next.config.js ADDED
@@ -0,0 +1,7 @@
1
+ /** @type {import('next').NextConfig} */
2
+ const nextConfig = {
3
+ output: "export",
4
+ transpilePackages: ["@locusai/shared"],
5
+ };
6
+
7
+ export default nextConfig;
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@locusai/web",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "scripts": {
6
+ "dev": "next dev -p 3081",
7
+ "build": "next build",
8
+ "start": "next start",
9
+ "lint": "biome lint .",
10
+ "typecheck": "tsc -b --noEmit"
11
+ },
12
+ "dependencies": {
13
+ "@locusai/shared": "workspace:*",
14
+ "@tanstack/react-query": "^5.90.18",
15
+ "@tanstack/react-query-devtools": "^5.91.2",
16
+ "@uiw/react-md-editor": "^4.0.4",
17
+ "axios": "^1.13.2",
18
+ "clsx": "^2.1.1",
19
+ "date-fns": "^4.1.0",
20
+ "framer-motion": "^12.26.2",
21
+ "lucide-react": "^0.453.0",
22
+ "next": "15.1.11",
23
+ "react": "^19.0.0",
24
+ "react-dom": "^19.0.0",
25
+ "tailwind-merge": "^3.4.0",
26
+ "zod": "^3.23.8"
27
+ },
28
+ "devDependencies": {
29
+ "@tailwindcss/postcss": "^4.1.18",
30
+ "@types/node": "^22.10.7",
31
+ "@types/react": "^19.0.0",
32
+ "@types/react-dom": "^19.0.0",
33
+ "postcss": "^8.5.6",
34
+ "tailwindcss": "^4.1.18",
35
+ "typescript": "5.8.3"
36
+ }
37
+ }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ plugins: {
3
+ "@tailwindcss/postcss": {},
4
+ },
5
+ };
@@ -0,0 +1,19 @@
1
+ "use client";
2
+
3
+ import dynamic from "next/dynamic";
4
+
5
+ const Backlog = dynamic(
6
+ () => import("@/views/Backlog").then((mod) => mod.Backlog),
7
+ {
8
+ ssr: false,
9
+ loading: () => (
10
+ <div className="flex-1 flex items-center justify-center">
11
+ <div className="animate-pulse text-muted-foreground">Loading...</div>
12
+ </div>
13
+ ),
14
+ }
15
+ );
16
+
17
+ export default function BacklogPage() {
18
+ return <Backlog />;
19
+ }
@@ -0,0 +1,7 @@
1
+ "use client";
2
+
3
+ import { Docs } from "@/views/Docs";
4
+
5
+ export default function DocsPage() {
6
+ return <Docs />;
7
+ }
@@ -0,0 +1,603 @@
1
+ @import "tailwindcss";
2
+
3
+ @theme {
4
+ /* Shadcn-like Design System */
5
+ --color-background: var(--background);
6
+ --color-foreground: var(--foreground);
7
+
8
+ --color-card: var(--card);
9
+ --color-card-foreground: var(--card-foreground);
10
+
11
+ --color-popover: var(--popover);
12
+ --color-popover-foreground: var(--popover-foreground);
13
+
14
+ --color-primary: var(--primary);
15
+ --color-primary-foreground: var(--primary-foreground);
16
+
17
+ --color-secondary: var(--secondary);
18
+ --color-secondary-foreground: var(--secondary-foreground);
19
+
20
+ --color-muted: var(--muted);
21
+ --color-muted-foreground: var(--muted-foreground);
22
+
23
+ --color-accent: var(--accent);
24
+ --color-accent-foreground: var(--accent-foreground);
25
+
26
+ --color-destructive: var(--destructive);
27
+ --color-destructive-foreground: var(--destructive-foreground);
28
+
29
+ --color-border: var(--border);
30
+ --color-input: var(--input);
31
+ --color-ring: var(--ring);
32
+
33
+ --radius-lg: var(--radius);
34
+ --radius-md: calc(var(--radius) - 2px);
35
+ --radius-sm: calc(var(--radius) - 4px);
36
+
37
+ /* Status Colors */
38
+ --color-status-backlog: #475569;
39
+ --color-status-todo: #0ea5e9;
40
+ --color-status-progress: #f59e0b;
41
+ --color-status-review: #8b5cf6;
42
+ --color-status-verification: #06b6d4;
43
+ --color-status-done: #10b981;
44
+ --color-status-blocked: #f43f5e;
45
+
46
+ /* Priority Colors */
47
+ --color-priority-low: #64748b;
48
+ --color-priority-medium: #38bdf8;
49
+ --color-priority-high: #f59e0b;
50
+ --color-priority-critical: #ef4444;
51
+
52
+ --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.1);
53
+ --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.2), 0 2px 4px -2px rgb(0 0 0 / 0.2);
54
+ --shadow-lg:
55
+ 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
56
+ --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.4);
57
+ }
58
+
59
+ @layer base {
60
+ :root {
61
+ --background: #09090b;
62
+ --foreground: #fafafa;
63
+
64
+ --card: #09090b;
65
+ --card-foreground: #fafafa;
66
+
67
+ --popover: #09090b;
68
+ --popover-foreground: #fafafa;
69
+
70
+ --primary: #fafafa;
71
+ --primary-foreground: #18181b;
72
+
73
+ --secondary: #27272a;
74
+ --secondary-foreground: #fafafa;
75
+
76
+ --muted: #27272a;
77
+ --muted-foreground: #a1a1aa;
78
+
79
+ --accent: #27272a;
80
+ --accent-foreground: #fafafa;
81
+
82
+ --destructive: #7f1d1d;
83
+ --destructive-foreground: #fafafa;
84
+
85
+ --border: #27272a;
86
+ --input: #27272a;
87
+ --ring: #d4d4d8;
88
+
89
+ --radius: 0.5rem;
90
+
91
+ /* Custom Locus Colors */
92
+ --color-sidebar-bg: #0c0d12;
93
+ --color-glass-bg: rgba(255, 255, 255, 0.03);
94
+ --color-panel-bg: rgba(12, 13, 18, 0.95);
95
+ }
96
+
97
+ .light {
98
+ --background: #ffffff;
99
+ --foreground: #09090b;
100
+
101
+ --card: #ffffff;
102
+ --card-foreground: #09090b;
103
+
104
+ --popover: #ffffff;
105
+ --popover-foreground: #09090b;
106
+
107
+ --primary: #18181b;
108
+ --primary-foreground: #fafafa;
109
+
110
+ --secondary: #f4f4f5;
111
+ --secondary-foreground: #18181b;
112
+
113
+ --muted: #f4f4f5;
114
+ --muted-foreground: #71717a;
115
+
116
+ --accent: #f4f4f5;
117
+ --accent-foreground: #18181b;
118
+
119
+ --destructive: #ef4444;
120
+ --destructive-foreground: #fafafa;
121
+
122
+ --border: #e4e4e7;
123
+ --input: #e4e4e7;
124
+ --ring: #18181b;
125
+ }
126
+
127
+ body {
128
+ margin: 0;
129
+ font-family: inherit;
130
+ background-color: var(--background);
131
+ color: var(--foreground);
132
+ -webkit-font-smoothing: antialiased;
133
+ -moz-osx-font-smoothing: grayscale;
134
+ }
135
+
136
+ h1,
137
+ h2,
138
+ h3,
139
+ h4 {
140
+ font-family: inherit;
141
+ font-weight: 600;
142
+ margin: 0;
143
+ }
144
+
145
+ * {
146
+ box-sizing: border-box;
147
+ border-color: var(--border);
148
+ }
149
+ }
150
+
151
+ /* Glassmorphism Utilities */
152
+ .glass {
153
+ background: var(--glass-bg);
154
+ backdrop-filter: var(--glass-blur);
155
+ -webkit-backdrop-filter: var(--glass-blur);
156
+ border: 1px solid var(--border);
157
+ }
158
+
159
+ .app-container {
160
+ display: grid;
161
+ grid-template-columns: 240px 1fr;
162
+ height: 100vh;
163
+ overflow: hidden;
164
+ }
165
+
166
+ .sidebar {
167
+ background-color: var(--sidebar-bg);
168
+ border-right: 1px solid var(--border);
169
+ display: flex;
170
+ flex-direction: column;
171
+ padding: 1.5rem;
172
+ z-index: 10;
173
+ }
174
+
175
+ .sidebar-header {
176
+ display: flex;
177
+ align-items: center;
178
+ gap: 0.75rem;
179
+ margin-bottom: 2.5rem;
180
+ }
181
+
182
+ .sidebar-header h2 {
183
+ font-size: 1.25rem;
184
+ letter-spacing: -0.025em;
185
+ background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
186
+ -webkit-background-clip: text;
187
+ background-clip: text;
188
+ -webkit-text-fill-color: transparent;
189
+ }
190
+
191
+ .main-content {
192
+ background-image:
193
+ radial-gradient(at 0% 0%, rgba(56, 189, 248, 0.05) 0px, transparent 50%),
194
+ radial-gradient(at 100% 0%, rgba(168, 85, 247, 0.05) 0px, transparent 50%);
195
+ overflow-y: auto;
196
+ padding: 2rem;
197
+ position: relative;
198
+ }
199
+
200
+ /* Scrollbar Styling */
201
+ ::-webkit-scrollbar {
202
+ width: 6px;
203
+ }
204
+ ::-webkit-scrollbar-track {
205
+ background: transparent;
206
+ }
207
+ ::-webkit-scrollbar-thumb {
208
+ background: var(--border);
209
+ border-radius: 10px;
210
+ }
211
+ ::-webkit-scrollbar-thumb:hover {
212
+ background: var(--text-muted);
213
+ }
214
+
215
+ /* Shared Components */
216
+ .button-primary {
217
+ background: var(--accent);
218
+ color: #000;
219
+ padding: 0.5rem 1rem;
220
+ border-radius: 6px;
221
+ font-weight: 600;
222
+ border: none;
223
+ cursor: pointer;
224
+ transition: all 0.2s ease;
225
+ display: flex;
226
+ align-items: center;
227
+ gap: 0.5rem;
228
+ font-size: 0.875rem;
229
+ }
230
+
231
+ .button-primary:hover {
232
+ background: var(--accent-hover);
233
+ transform: translateY(-1px);
234
+ box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
235
+ }
236
+
237
+ .button-secondary {
238
+ background: var(--glass-bg);
239
+ color: var(--text-main);
240
+ padding: 0.5rem 1rem;
241
+ border-radius: 6px;
242
+ font-weight: 500;
243
+ border: 1px solid var(--border);
244
+ cursor: pointer;
245
+ transition: all 0.2s ease;
246
+ }
247
+
248
+ .card {
249
+ background: var(--panel-bg);
250
+ border: 1px solid var(--border);
251
+ border-radius: 12px;
252
+ padding: 1.25rem;
253
+ transition:
254
+ border-color 0.2s ease,
255
+ transform 0.2s ease;
256
+ }
257
+
258
+ .card:hover {
259
+ border-color: rgba(255, 255, 255, 0.15);
260
+ transform: translateY(-2px);
261
+ box-shadow: var(--shadow-lg);
262
+ }
263
+
264
+ /* Animations */
265
+ @keyframes fadeIn {
266
+ from {
267
+ opacity: 0;
268
+ transform: translateY(10px);
269
+ }
270
+ to {
271
+ opacity: 1;
272
+ transform: translateY(0);
273
+ }
274
+ }
275
+
276
+ @keyframes slideIn {
277
+ from {
278
+ transform: translateX(-20px);
279
+ opacity: 0;
280
+ }
281
+ to {
282
+ transform: translateX(0);
283
+ opacity: 1;
284
+ }
285
+ }
286
+
287
+ .main-content > div {
288
+ animation: fadeIn 0.4s ease-out;
289
+ }
290
+
291
+ .sidebar nav li {
292
+ animation: slideIn 0.3s ease-out backwards;
293
+ }
294
+
295
+ .sidebar nav li:nth-child(1) {
296
+ animation-delay: 0.1s;
297
+ }
298
+ .sidebar nav li:nth-child(2) {
299
+ animation-delay: 0.2s;
300
+ }
301
+
302
+ /* Notion-like interactive refinements */
303
+ .tree-item:active,
304
+ .nav-link:active {
305
+ transform: scale(0.98);
306
+ }
307
+
308
+ input::placeholder {
309
+ color: var(--text-muted);
310
+ opacity: 0.5;
311
+ }
312
+
313
+ .button-primary,
314
+ .button-secondary {
315
+ user-select: none;
316
+ }
317
+ /* Board Styles */
318
+ .board-container {
319
+ padding-bottom: 2rem;
320
+ }
321
+
322
+ .board-header {
323
+ display: flex;
324
+ justify-content: space-between;
325
+ align-items: flex-start;
326
+ }
327
+
328
+ .keyboard-hint {
329
+ display: inline-block;
330
+ margin-left: 1rem;
331
+ opacity: 0.6;
332
+ }
333
+
334
+ .keyboard-hint kbd {
335
+ display: inline-block;
336
+ padding: 2px 6px;
337
+ background: rgba(255, 255, 255, 0.1);
338
+ border-radius: 4px;
339
+ font-family: inherit;
340
+ font-size: 0.75rem;
341
+ border: 1px solid var(--border);
342
+ }
343
+
344
+ .board {
345
+ display: flex;
346
+ gap: 1rem;
347
+ min-height: calc(100vh - 20rem);
348
+ align-items: flex-start;
349
+ overflow-x: auto;
350
+ padding-bottom: 1rem;
351
+ }
352
+
353
+ .column {
354
+ width: 320px;
355
+ flex-shrink: 0;
356
+ border-radius: 12px;
357
+ display: flex;
358
+ flex-direction: column;
359
+ max-height: 100%;
360
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
361
+ background: rgba(255, 255, 255, 0.015);
362
+ border: 1px solid var(--border);
363
+ }
364
+
365
+ .column.drag-over {
366
+ background: rgba(56, 189, 248, 0.05);
367
+ border-color: var(--accent);
368
+ box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
369
+ transform: scale(1.01);
370
+ }
371
+
372
+ .column-header {
373
+ padding: 1rem;
374
+ display: flex;
375
+ justify-content: space-between;
376
+ align-items: center;
377
+ }
378
+
379
+ .column-title {
380
+ display: flex;
381
+ align-items: center;
382
+ gap: 0.5rem;
383
+ }
384
+
385
+ .column-name {
386
+ font-size: 0.875rem;
387
+ font-weight: 600;
388
+ }
389
+
390
+ .count-badge {
391
+ background: rgba(255, 255, 255, 0.05);
392
+ color: var(--text-muted);
393
+ padding: 2px 8px;
394
+ border-radius: 12px;
395
+ font-size: 0.75rem;
396
+ font-weight: 500;
397
+ }
398
+
399
+ .task-list {
400
+ padding: 0.5rem 0.75rem 1rem;
401
+ display: flex;
402
+ flex-direction: column;
403
+ gap: 0.625rem;
404
+ overflow-y: auto;
405
+ }
406
+
407
+ .icon-button {
408
+ background: transparent;
409
+ border: none;
410
+ color: var(--text-muted);
411
+ cursor: pointer;
412
+ display: flex;
413
+ align-items: center;
414
+ justify-content: center;
415
+ padding: 4px;
416
+ border-radius: 4px;
417
+ transition: all 0.15s;
418
+ }
419
+
420
+ .icon-button:hover {
421
+ background: rgba(255, 255, 255, 0.05);
422
+ color: var(--text-main);
423
+ }
424
+
425
+ .add-task-button {
426
+ display: flex;
427
+ align-items: center;
428
+ gap: 0.5rem;
429
+ width: 100%;
430
+ background: transparent;
431
+ border: none;
432
+ color: var(--text-muted);
433
+ padding: 0.625rem;
434
+ border-radius: 8px;
435
+ cursor: pointer;
436
+ transition: all 0.2s ease;
437
+ font-size: 0.875rem;
438
+ font-weight: 500;
439
+ }
440
+
441
+ .add-task-button:hover {
442
+ background: rgba(255, 255, 255, 0.03);
443
+ color: var(--text-main);
444
+ }
445
+ /* Navigation & Sidebar */
446
+ .nav-link {
447
+ display: flex;
448
+ align-items: center;
449
+ gap: 0.75rem;
450
+ padding: 0.625rem 0.875rem;
451
+ color: var(--text-muted);
452
+ text-decoration: none;
453
+ font-size: 0.875rem;
454
+ font-weight: 500;
455
+ border-radius: 8px;
456
+ transition: all 0.2s ease;
457
+ }
458
+
459
+ .nav-link:hover {
460
+ color: var(--text-main);
461
+ background: rgba(255, 255, 255, 0.03);
462
+ }
463
+
464
+ .nav-link.active {
465
+ color: var(--accent);
466
+ background: rgba(56, 189, 248, 0.1);
467
+ }
468
+
469
+ .nav-link svg {
470
+ transition: transform 0.2s ease;
471
+ }
472
+
473
+ .nav-link:hover svg {
474
+ transform: scale(1.1);
475
+ }
476
+
477
+ .settings-btn {
478
+ background: transparent;
479
+ border: none;
480
+ width: 100%;
481
+ cursor: pointer;
482
+ color: var(--text-muted);
483
+ display: flex;
484
+ align-items: center;
485
+ gap: 0.75rem;
486
+ padding: 0.625rem 0.875rem;
487
+ font-size: 0.875rem;
488
+ font-weight: 500;
489
+ border-radius: 8px;
490
+ transition: all 0.2s ease;
491
+ }
492
+
493
+ .settings-btn:hover {
494
+ color: var(--text-main);
495
+ background: rgba(255, 255, 255, 0.03);
496
+ }
497
+ /* Board Filter */
498
+ .board-filter {
499
+ display: flex;
500
+ align-items: center;
501
+ gap: 1rem;
502
+ margin-bottom: 2rem;
503
+ flex-wrap: wrap;
504
+ }
505
+
506
+ .filter-dropdowns {
507
+ display: flex;
508
+ gap: 0.75rem;
509
+ }
510
+
511
+ .filter-dropdown {
512
+ width: 160px;
513
+ }
514
+
515
+ .search-box {
516
+ width: 280px;
517
+ }
518
+
519
+ .clear-search-btn {
520
+ background: transparent;
521
+ border: none;
522
+ color: var(--text-muted);
523
+ cursor: pointer;
524
+ padding: 4px;
525
+ display: flex;
526
+ align-items: center;
527
+ border-radius: 4px;
528
+ transition: all 0.15s;
529
+ }
530
+
531
+ .clear-search-btn:hover {
532
+ color: var(--text-main);
533
+ background: rgba(255, 255, 255, 0.05);
534
+ }
535
+
536
+ /* Task Panel */
537
+ .panel-overlay {
538
+ position: fixed;
539
+ inset: 0;
540
+ background: rgba(0, 0, 0, 0.4);
541
+ backdrop-filter: blur(4px);
542
+ z-index: 900;
543
+ animation: fadeIn 0.2s ease-out;
544
+ }
545
+
546
+ /* Markdown Body Styling */
547
+ .markdown-body {
548
+ font-size: 0.9375rem;
549
+ line-height: 1.7;
550
+ }
551
+
552
+ .markdown-body h1,
553
+ .markdown-body h2,
554
+ .markdown-body h3 {
555
+ border-bottom: 1px solid var(--border);
556
+ padding-bottom: 0.5rem;
557
+ margin-top: 1.5rem;
558
+ margin-bottom: 1rem;
559
+ }
560
+
561
+ .markdown-body ul,
562
+ .markdown-body ol {
563
+ padding-left: 1.5rem;
564
+ margin-bottom: 1rem;
565
+ }
566
+
567
+ .markdown-body code {
568
+ background: var(--secondary);
569
+ padding: 0.2rem 0.4rem;
570
+ border-radius: 4px;
571
+ font-size: 0.85em;
572
+ }
573
+
574
+ /* Animations */
575
+ @keyframes fadeIn {
576
+ from {
577
+ opacity: 0;
578
+ }
579
+ to {
580
+ opacity: 1;
581
+ }
582
+ }
583
+
584
+ .animate-fade-in {
585
+ animation: fadeIn 0.3s ease-out;
586
+ }
587
+
588
+ .artifact-card:hover {
589
+ background: rgba(255, 255, 255, 0.04);
590
+ border-color: rgba(56, 189, 248, 0.3);
591
+ transform: translateY(-2px);
592
+ }
593
+
594
+ .artifact-icon-box {
595
+ width: 40px;
596
+ height: 40px;
597
+ background: rgba(56, 189, 248, 0.1);
598
+ border-radius: 8px;
599
+ display: flex;
600
+ align-items: center;
601
+ justify-content: center;
602
+ color: var(--accent);
603
+ }