bloby-bot 0.37.1 → 0.39.1
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/package.json +1 -1
- package/supervisor/harnesses/codex.ts +34 -0
- package/worker/prompts/bloby-system-prompt.txt +2 -2
- package/workspace/client/index.html +3 -0
- package/workspace/client/public/.well-known/assetlinks.json +8 -0
- package/workspace/client/public/bloby-cyberpunk.png +0 -0
- package/workspace/client/public/brand/blackrock.svg +8 -0
- package/workspace/client/public/kid-breakfast.png +0 -0
- package/workspace/client/public/wallpapers/bg.jpg +0 -0
- package/workspace/client/public/wallpapers/crypto_bg.png +0 -0
- package/workspace/client/public/wallpapers/wp-dusk.jpg +0 -0
- package/workspace/client/public/wallpapers/wp-mountain.jpg +0 -0
- package/workspace/client/public/wallpapers/wp-ocean.jpg +0 -0
- package/workspace/client/src/App.tsx +20 -9
- package/workspace/client/src/components/Dashboard/AiChatPage.tsx +145 -0
- package/workspace/client/src/components/Dashboard/CryptoPage.tsx +470 -0
- package/workspace/client/src/components/Dashboard/DashboardPage.tsx +117 -113
- package/workspace/client/src/components/Dashboard/WishlistPage.tsx +464 -0
- package/workspace/client/src/components/Layout/DashboardLayout.tsx +32 -34
- package/workspace/client/src/components/Layout/MiniSidebar.tsx +64 -0
- package/workspace/client/src/components/Layout/MobileNav.tsx +103 -6
- package/workspace/client/src/components/Layout/Sidebar.tsx +11 -10
- package/workspace/client/src/components/Lock/PinInput.tsx +107 -0
- package/workspace/client/src/components/Lock/WorkspaceLock.tsx +484 -0
- package/workspace/client/src/components/StickyNotes/StickyNotesOverlay.tsx +396 -0
- package/workspace/client/src/components/StickyNotes/StickyNotesSettingsPage.tsx +427 -0
- package/workspace/client/src/components/Wallpaper/WallpaperBackground.tsx +12 -0
- package/workspace/client/src/components/Wallpaper/WallpaperContext.tsx +160 -0
- package/workspace/client/src/components/Wallpaper/WallpaperPicker.tsx +67 -0
- package/workspace/client/src/styles/globals.css +89 -4
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
@custom-variant dark (&:is(.dark *));
|
|
4
4
|
|
|
5
5
|
@theme inline {
|
|
6
|
-
--font-sans: system-ui, -apple-system, sans-serif;
|
|
6
|
+
--font-sans: 'Inter', 'Inter Display', system-ui, -apple-system, sans-serif;
|
|
7
7
|
--color-background: #0A0A0A;
|
|
8
8
|
--color-foreground: #f5f5f5;
|
|
9
9
|
--color-card: #2a2a2a;
|
|
@@ -44,16 +44,76 @@ html {
|
|
|
44
44
|
-ms-touch-action: manipulation;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
html {
|
|
48
|
+
background-color: #000;
|
|
49
|
+
}
|
|
50
|
+
|
|
47
51
|
body {
|
|
48
|
-
background-color:
|
|
49
|
-
|
|
50
|
-
background-size: 20px 20px;
|
|
52
|
+
background-color: transparent;
|
|
53
|
+
isolation: isolate;
|
|
51
54
|
color: var(--color-foreground);
|
|
55
|
+
font-family: 'Inter', 'Inter Display', system-ui, -apple-system, sans-serif;
|
|
56
|
+
font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
|
|
52
57
|
-webkit-font-smoothing: antialiased;
|
|
53
58
|
-moz-osx-font-smoothing: grayscale;
|
|
54
59
|
overscroll-behavior: none;
|
|
55
60
|
}
|
|
56
61
|
|
|
62
|
+
h1, h2, h3, h4, h5, h6 {
|
|
63
|
+
letter-spacing: -0.02em;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/* ── Glass utilities ── */
|
|
67
|
+
.glass-card {
|
|
68
|
+
position: relative;
|
|
69
|
+
background: rgba(20, 20, 25, 0.35);
|
|
70
|
+
backdrop-filter: blur(24px) saturate(140%);
|
|
71
|
+
-webkit-backdrop-filter: blur(24px) saturate(140%);
|
|
72
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
73
|
+
border-radius: 28px;
|
|
74
|
+
box-shadow:
|
|
75
|
+
0 1px 0 0 rgba(255, 255, 255, 0.06) inset,
|
|
76
|
+
0 20px 60px -20px rgba(0, 0, 0, 0.45);
|
|
77
|
+
}
|
|
78
|
+
.glass-card::before {
|
|
79
|
+
content: '';
|
|
80
|
+
position: absolute;
|
|
81
|
+
inset: 0;
|
|
82
|
+
border-radius: inherit;
|
|
83
|
+
pointer-events: none;
|
|
84
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.02) 35%, transparent 100%);
|
|
85
|
+
mask: linear-gradient(180deg, #000, transparent 60%);
|
|
86
|
+
-webkit-mask: linear-gradient(180deg, #000, transparent 60%);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.glass-card-md {
|
|
90
|
+
border-radius: 20px;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.glass-pill {
|
|
94
|
+
position: relative;
|
|
95
|
+
background: rgba(20, 20, 25, 0.35);
|
|
96
|
+
backdrop-filter: blur(24px) saturate(140%);
|
|
97
|
+
-webkit-backdrop-filter: blur(24px) saturate(140%);
|
|
98
|
+
border: 1px solid rgba(255, 255, 255, 0.10);
|
|
99
|
+
box-shadow:
|
|
100
|
+
0 1px 0 0 rgba(255, 255, 255, 0.08) inset,
|
|
101
|
+
0 10px 40px -15px rgba(0, 0, 0, 0.4);
|
|
102
|
+
}
|
|
103
|
+
.glass-pill::before {
|
|
104
|
+
content: '';
|
|
105
|
+
position: absolute;
|
|
106
|
+
inset: 0;
|
|
107
|
+
border-radius: inherit;
|
|
108
|
+
pointer-events: none;
|
|
109
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.02) 35%, transparent 100%);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.glass-inner-active {
|
|
113
|
+
background: rgba(255, 255, 255, 0.14);
|
|
114
|
+
box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.12) inset;
|
|
115
|
+
}
|
|
116
|
+
|
|
57
117
|
::selection {
|
|
58
118
|
background-color: rgba(175, 39, 227, 0.25);
|
|
59
119
|
}
|
|
@@ -117,3 +177,28 @@ body {
|
|
|
117
177
|
0% { transform: rotate(0deg); }
|
|
118
178
|
100% { transform: rotate(360deg); }
|
|
119
179
|
}
|
|
180
|
+
|
|
181
|
+
/* ── Workspace Lock animations ── */
|
|
182
|
+
@keyframes shake {
|
|
183
|
+
0%, 100% { transform: translateX(0); }
|
|
184
|
+
10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
|
|
185
|
+
20%, 40%, 60%, 80% { transform: translateX(4px); }
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.animate-shake {
|
|
189
|
+
animation: shake 0.45s cubic-bezier(.36,.07,.19,.97);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
@keyframes scale-in-dot {
|
|
193
|
+
from { transform: scale(0); opacity: 0; }
|
|
194
|
+
to { transform: scale(1); opacity: 1; }
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.animate-scale-in {
|
|
198
|
+
animation: scale-in-dot 0.15s ease-out forwards;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
@keyframes fadeIn {
|
|
202
|
+
from { opacity: 0; transform: translateY(4px); }
|
|
203
|
+
to { opacity: 1; transform: translateY(0); }
|
|
204
|
+
}
|