File size: 23,206 Bytes
d491dc1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
import React, { useState, useEffect } from 'react';

export default function OpsControlPanel({ onBack, onNavigateView }) {
  const [isMobile, setIsMobile] = useState(window.innerWidth < 1024);
  const [isEvSurge, setIsEvSurge] = useState(true);
  const [demandThreshold, setDemandThreshold] = useState(65);
  const [activeTab, setActiveTab] = useState('food');
  const [isApiOnline, setIsApiOnline] = useState(true);
  const [latency, setLatency] = useState(42);
  const [fleetSize, setFleetSize] = useState(1402);

  useEffect(() => {
    const handleResize = () => {
      setIsMobile(window.innerWidth < 1024);
    };
    window.addEventListener('resize', handleResize);
    return () => window.removeEventListener('resize', handleResize);
  }, []);

  // Jitter simulator
  useEffect(() => {
    const interval = setInterval(() => {
      setLatency(prev => Math.max(10, Math.min(200, prev + Math.floor(Math.random() * 7) - 3)));
      setFleetSize(prev => Math.max(1000, Math.min(2000, prev + Math.floor(Math.random() * 5) - 2)));
    }, 2000);
    return () => clearInterval(interval);
  }, []);

  if (isMobile) {
    /* ─── MOBILE VIEW LAYOUT (district operations_control mockup) ─── */
    return (
      <div className="bg-[#040406] min-h-screen text-[#e5e1e6] font-sans overflow-y-auto pb-12 select-none w-full">
        {/* Header */}
        <header className="sticky top-0 z-50 bg-[#0A0A0F]/90 backdrop-blur-md px-4 py-4 flex items-center justify-between border-b border-white/5">
          <div className="flex items-center gap-2">
            <button onClick={onBack} className="p-1 -ml-1 text-[#FF0077]">
              <span className="material-symbols-outlined text-[20px]">arrow_back</span>
            </button>
            <h1 className="text-sm font-bold text-white uppercase tracking-wider">Ops Intel Control</h1>
          </div>
          <span className="material-symbols-outlined text-[#00E676] animate-pulse">sensors</span>
        </header>

        <main className="p-4 flex flex-col gap-6">
          {/* Active Storm Surge Card */}
          <section className="bg-red-500/10 border border-red-500/20 rounded-xl p-4 flex items-center justify-between">
            <div className="flex items-center gap-3">
              <span className="material-symbols-outlined text-[#FF3366] text-[24px]">thunderstorm</span>
              <div>
                <h3 className="text-xs font-bold text-white">Monsoon Surge Override</h3>
                <p className="text-[10px] text-gray-500 mt-0.5">Fleet multiplier is active (1.5x)</p>
              </div>
            </div>
            <div 
              onClick={() => setIsEvSurge(!isEvSurge)}
              className={`w-9 h-5 rounded-full relative flex items-center px-0.5 cursor-pointer transition-all ${
                isEvSurge ? 'bg-red-500' : 'bg-white/10'
              }`}
            >
              <div className={`w-4 h-4 bg-white rounded-full transition-transform ${
                isEvSurge ? 'translate-x-4' : 'translate-x-0'
              }`}></div>
            </div>
          </section>

          {/* Tobit Demand Solver Stats */}
          <section className="bg-[#0A0A0F] border border-white/5 rounded-xl p-4 flex flex-col gap-4">
            <h2 className="text-xs font-bold text-white uppercase tracking-wider">Tobit Demand Forecasting</h2>
            <div className="grid grid-cols-2 gap-3">
              <div className="bg-[#14141F] rounded-lg p-3 border border-white/5">
                <span className="text-[9px] text-gray-500 font-mono block">COEFFICIENT</span>
                <span className="text-sm font-bold text-white font-mono">0.942</span>
              </div>
              <div className="bg-[#14141F] rounded-lg p-3 border border-white/5">
                <span className="text-[9px] text-gray-500 font-mono block">UNCERTAINTY</span>
                <span className="text-sm font-bold text-[#FF0077] font-mono">4.1%</span>
              </div>
            </div>
            <div className="flex flex-col gap-1.5 mt-2">
              <div className="flex justify-between text-[10px] text-gray-500">
                <span>Sensitivity Threshold</span>
                <span className="font-mono text-white">{demandThreshold}%</span>
              </div>
              <input 
                type="range"
                className="w-full accent-[#FF0077] h-1 bg-white/10 rounded-lg appearance-none cursor-pointer"
                value={demandThreshold}
                onChange={(e) => setDemandThreshold(e.target.value)}
              />
            </div>
          </section>

          {/* Platform API Integrations status */}
          <section className="bg-[#0A0A0F] border border-white/5 rounded-xl p-4 flex flex-col gap-3">
            <h2 className="text-xs font-bold text-white uppercase tracking-wider">API Sync States</h2>
            <div className="flex flex-col gap-2">
              <div className="flex justify-between items-center bg-[#14141F] rounded-lg p-3 border border-white/5">
                <span className="text-xs text-white font-semibold">Swiggy Builders Club</span>
                <span className="text-[10px] font-mono text-[#00E676] bg-[#00E676]/10 px-2 py-0.5 rounded border border-[#00E676]/20">Online</span>
              </div>
              <div className="flex justify-between items-center bg-[#14141F] rounded-lg p-3 border border-white/5">
                <span className="text-xs text-white font-semibold">Zomato Engine</span>
                <span className="text-[10px] font-mono text-[#00E676] bg-[#00E676]/10 px-2 py-0.5 rounded border border-[#00E676]/20">Online</span>
              </div>
              <div className="flex justify-between items-center bg-[#14141F] rounded-lg p-3 border border-white/5">
                <span className="text-xs text-white font-semibold">Blinkit Darkstore</span>
                <span className="text-[10px] font-mono text-[#00E676] bg-[#00E676]/10 px-2 py-0.5 rounded border border-[#00E676]/20">Online</span>
              </div>
            </div>
          </section>
        </main>
      </div>
    );
  }

  /* ─── DESKTOP VIEW LAYOUT (hyperflow_operations_control_v3_high_fidelity) ─── */
  return (
    <div className="w-full min-h-screen bg-[#131318] text-[#e4e1e9] select-none font-sans overflow-hidden relative">
      {/* Top Header */}
      <header className="fixed top-0 left-0 w-full z-50 flex justify-between items-center px-8 h-16 bg-[#0A0A0F]/80 backdrop-blur-xl border-b border-[#262626]">
        <div className="flex items-center gap-4">
          <button onClick={onBack} className="p-1 rounded-full hover:bg-white/5 text-[#ffb3b1] transition-colors">
            <span className="material-symbols-outlined text-[24px]">arrow_back</span>
          </button>
          <span className="text-xl font-bold tracking-tighter text-white">HyperFlow</span>
          <div className="h-4 w-px bg-white/10 mx-2"></div>
          <span className="font-mono text-[9px] text-[#ff535a] uppercase tracking-widest">Ops Core V3</span>
        </div>
        <div className="flex items-center gap-6">
          <div className="flex items-center gap-4 bg-[#1f1f25] px-4 py-1.5 rounded-full border border-[#262626]">
            <span className="text-xs text-gray-400 flex items-center gap-1.5">
              Swiggy <div className="w-2.5 h-2.5 rounded-full bg-[#71d7cf] animate-pulse"></div>
            </span>
            <div className="h-3 w-px bg-white/10"></div>
            <span className="text-xs text-gray-400 flex items-center gap-1.5">
              Zomato <div className="w-2.5 h-2.5 rounded-full bg-[#71d7cf] animate-pulse"></div>
            </span>
            <div className="h-3 w-px bg-white/10"></div>
            <span className="text-xs text-gray-400 flex items-center gap-1.5">
              Blinkit <div className="w-2.5 h-2.5 rounded-full bg-[#71d7cf] animate-pulse"></div>
            </span>
          </div>
        </div>
      </header>

      {/* Main Container */}
      <main className="pt-16 flex h-screen overflow-hidden">
        {/* Left Side Navigation Panel */}
        <nav className="w-64 h-full bg-[#0A0A0F] border-r border-[#262626] flex flex-col py-6 shrink-0 overflow-y-auto">
          <div className="px-6 mb-6">
            <p className="text-xs font-bold text-white tracking-wider uppercase font-mono">HYPERFLOW CONTROL</p>
            <p className="font-mono text-[9px] text-gray-500 mt-1">OPERATOR SYSTEM CORE</p>
          </div>

          <div className="flex flex-col gap-6 px-3">
            {/* Category 1: Real-time Core */}
            <div>
              <p className="px-3 text-[9px] font-bold text-gray-500 uppercase tracking-widest mb-2 font-mono">Real-Time Core</p>
              <div className="flex flex-col gap-1">
                <button className="w-full flex items-center gap-3 px-3 py-2 text-xs font-bold text-[#ff535a] bg-[#1f1f25] border-r-2 border-[#ff535a] text-left">
                  <span className="material-symbols-outlined text-[16px]">monitoring</span>
                  Monitor Dashboard
                </button>
              </div>
            </div>

            {/* Category 2: Admin Surfaces */}
            <div>
              <p className="px-3 text-[9px] font-bold text-gray-500 uppercase tracking-widest mb-2 font-mono">Admin Panels</p>
              <div className="flex flex-col gap-1">
                <button 
                  onClick={() => onNavigateView && onNavigateView('merchant_stock_admin')}
                  className="w-full flex items-center gap-3 px-3 py-2 text-xs text-gray-400 hover:text-white hover:bg-white/5 transition-colors text-left"
                >
                  <span className="material-symbols-outlined text-[16px]">inventory_2</span>
                  Merchant & Stock
                </button>
                <button 
                  onClick={() => onNavigateView && onNavigateView('fleet_logistics_admin')}
                  className="w-full flex items-center gap-3 px-3 py-2 text-xs text-gray-400 hover:text-white hover:bg-white/5 transition-colors text-left"
                >
                  <span className="material-symbols-outlined text-[16px]">local_shipping</span>
                  Fleet & Logistics
                </button>
                <button 
                  onClick={() => onNavigateView && onNavigateView('financial_ops_admin')}
                  className="w-full flex items-center gap-3 px-3 py-2 text-xs text-gray-400 hover:text-white hover:bg-white/5 transition-colors text-left"
                >
                  <span className="material-symbols-outlined text-[16px]">payments</span>
                  Financial Ops
                </button>
                <button 
                  onClick={() => onNavigateView && onNavigateView('growth_analytics_admin')}
                  className="w-full flex items-center gap-3 px-3 py-2 text-xs text-gray-400 hover:text-white hover:bg-white/5 transition-colors text-left"
                >
                  <span className="material-symbols-outlined text-[16px]">trending_up</span>
                  Growth & Analytics
                </button>
              </div>
            </div>

            {/* Category 3: Customer Support */}
            <div>
              <p className="px-3 text-[9px] font-bold text-gray-500 uppercase tracking-widest mb-2 font-mono">User Support</p>
              <div className="flex flex-col gap-1">
                <button 
                  onClick={() => onNavigateView && onNavigateView('refund_status')}
                  className="w-full flex items-center gap-3 px-3 py-2 text-xs text-gray-400 hover:text-white hover:bg-white/5 transition-colors text-left"
                >
                  <span className="material-symbols-outlined text-[16px]">currency_exchange</span>
                  Refund Tracker
                </button>
                <button 
                  onClick={() => onNavigateView && onNavigateView('help_support')}
                  className="w-full flex items-center gap-3 px-3 py-2 text-xs text-gray-400 hover:text-white hover:bg-white/5 transition-colors text-left"
                >
                  <span className="material-symbols-outlined text-[16px]">support_agent</span>
                  Support Center
                </button>
                <button 
                  onClick={() => onNavigateView && onNavigateView('chatbot_help')}
                  className="w-full flex items-center gap-3 px-3 py-2 text-xs text-gray-400 hover:text-white hover:bg-white/5 transition-colors text-left"
                >
                  <span className="material-symbols-outlined text-[16px]">rate_review</span>
                  Order Review
                </button>
              </div>
            </div>

            {/* Category 4: Theme Settings */}
            <div>
              <p className="px-3 text-[9px] font-bold text-gray-500 uppercase tracking-widest mb-2 font-mono">Platform Design</p>
              <div className="flex flex-col gap-1">
                <button 
                  onClick={() => onNavigateView && onNavigateView('festival_theme_manager')}
                  className="w-full flex items-center gap-3 px-3 py-2 text-xs text-gray-400 hover:text-white hover:bg-white/5 transition-colors text-left"
                >
                  <span className="material-symbols-outlined text-[16px]">palette</span>
                  Festival Themes
                </button>
              </div>
            </div>
          </div>

          <div className="mt-auto px-6 pb-6 pt-4 shrink-0">
            <button className="w-full bg-[#1c1c24] border border-[#262626] py-2.5 rounded-xl font-mono text-[10px] text-white hover:bg-white/5 transition-colors uppercase tracking-wider">
              System Settings
            </button>
          </div>
        </nav>

        <div className="flex-grow flex p-8 gap-8 overflow-y-auto bg-[#0e0e13]">
          {/* Left Panel: Simulated phone view */}
          <div className="w-[410px] h-[760px] border-[12px] border-[#1f1f25] rounded-[48px] overflow-hidden relative shadow-2xl shrink-0 bg-[#0f0f14] flex flex-col">
            <div className="bg-[#ff535a] text-white text-[9px] py-1 px-4 text-center font-bold tracking-widest animate-pulse">
              SURGE OVERRIDE ACTIVE • STORM MULTIPLIER
            </div>
            
            <div className="flex-1 overflow-y-auto p-4 flex flex-col gap-4 scrollbar-none">
              {/* Simple Search bar */}
              <div className="bg-[#1f1f25] border border-[#262626] rounded-xl p-3 flex items-center gap-2">
                <span className="material-symbols-outlined text-[#ff535a]">search</span>
                <span className="text-gray-500 text-xs font-semibold">Search Biryani, Groceries...</span>
              </div>

              {/* Sub-tabs */}
              <div className="flex border-b border-[#262626] gap-6 mt-2">
                <button 
                  onClick={() => setActiveTab('food')} 
                  className={`pb-2 text-xs font-bold transition-all ${
                    activeTab === 'food' ? 'border-b-2 border-[#ff535a] text-[#ff535a]' : 'text-gray-500'
                  }`}
                >
                  Food Delivery
                </button>
                <button 
                  onClick={() => setActiveTab('im')} 
                  className={`pb-2 text-xs font-bold transition-all ${
                    activeTab === 'im' ? 'border-b-2 border-[#ff535a] text-[#ff535a]' : 'text-gray-500'
                  }`}
                >
                  Instamart
                </button>
              </div>

              {/* Grocery grid */}
              <div>
                <h4 className="text-xs font-bold text-white mb-2">Instamart Essentials</h4>
                <div className="grid grid-cols-4 gap-2">
                  <div className="bg-[#1f1f25] border border-[#262626] rounded-xl p-3 flex flex-col items-center">
                    <span className="material-symbols-outlined text-gray-400 mb-1">apple</span>
                    <span className="text-[9px] text-gray-500 text-center font-medium">Fruits</span>
                  </div>
                  <div className="bg-[#1f1f25] border border-[#262626] rounded-xl p-3 flex flex-col items-center">
                    <span className="material-symbols-outlined text-gray-400 mb-1">local_drink</span>
                    <span className="text-[9px] text-gray-500 text-center font-medium">Dairy</span>
                  </div>
                  <div className="bg-[#1f1f25] border border-[#262626] rounded-xl p-3 flex flex-col items-center">
                    <span className="material-symbols-outlined text-gray-400 mb-1">lunch_dining</span>
                    <span className="text-[9px] text-gray-500 text-center font-medium">Bakery</span>
                  </div>
                  <div className="bg-[#1f1f25] border border-[#262626] rounded-xl p-3 flex flex-col items-center">
                    <span className="material-symbols-outlined text-gray-400 mb-1">kebab_dining</span>
                    <span className="text-[9px] text-gray-500 text-center font-medium">Meats</span>
                  </div>
                </div>
              </div>

              {/* Restaurant view */}
              <div className="mt-2">
                <h4 className="text-xs font-bold text-white mb-2">Popular Restaurants</h4>
                <div className="flex gap-4 bg-[#1f1f25] border border-[#262626] rounded-2xl p-3">
                  <div className="w-16 h-16 rounded-lg bg-gray-900 overflow-hidden shrink-0">
                    <img alt="Wagyu" className="w-full h-full object-cover" src="https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=500&auto=format&fit=crop&q=60" />
                  </div>
                  <div className="flex flex-col justify-between py-1 flex-1">
                    <h5 className="text-xs font-bold text-white">Umami Central</h5>
                    <p className="text-[9px] text-gray-500">Mughlai • 25 min SLA</p>
                  </div>
                </div>
              </div>
            </div>
          </div>

          {/* Right Panel: Advanced analytics & configuration */}
          <div className="flex-grow flex flex-col gap-6">
            {/* API Status Banner */}
            <div className="bg-[#0A0A0F]/80 backdrop-blur-md border border-[#262626] rounded-2xl p-6 flex justify-between items-center shadow-lg">
              <div className="flex items-center gap-4">
                <div className="bg-emerald-500/10 border border-[#71d7cf]/30 px-3 py-1 rounded-full flex items-center gap-2">
                  <div className="w-2.5 h-2.5 rounded-full bg-[#71d7cf] animate-pulse"></div>
                  <span className="text-xs font-mono font-bold text-[#71d7cf] uppercase">API Online</span>
                </div>
                <div className="h-4 w-px bg-white/10"></div>
                <span className="font-mono text-xs text-gray-400">LATENCY: {latency}ms</span>
                <span className="font-mono text-xs text-gray-400">FLEET: {fleetSize}</span>
              </div>
              <span className="font-mono text-xs text-[#ff535a] font-bold">MONSOON JITTER INDEX: 1.1x</span>
            </div>

            {/* Bento Grid */}
            <div className="grid grid-cols-2 gap-6">
              {/* Tobit Forecast */}
              <div className="bg-[#0A0A0F]/80 border border-[#262626] rounded-2xl p-6 flex flex-col gap-4">
                <div className="flex justify-between items-start">
                  <div>
                    <h3 className="text-sm font-bold text-white">Tobit Latent Demand Solver</h3>
                    <p className="text-[10px] text-gray-500">Demand projection and fleet placement model</p>
                  </div>
                  <span className="material-symbols-outlined text-[#ffb3b1]">query_stats</span>
                </div>
                <div className="grid grid-cols-2 gap-4">
                  <div className="bg-[#1f1f25] border border-[#262626] p-4 rounded-xl">
                    <span className="text-[9px] text-gray-500 font-mono block">DEMAND MATRIX</span>
                    <span className="text-base font-bold text-white font-mono">0.942</span>
                  </div>
                  <div className="bg-[#1f1f25] border border-[#262626] p-4 rounded-xl">
                    <span className="text-[9px] text-gray-500 font-mono block">MODEL DELAY</span>
                    <span className="text-base font-bold text-[#ff535a] font-mono">4.1%</span>
                  </div>
                </div>
              </div>

              {/* Monsoon Jitter chart */}
              <div className="bg-[#0A0A0F]/80 border border-[#262626] rounded-2xl p-6 flex flex-col gap-4">
                <div className="flex justify-between items-start">
                  <div>
                    <h3 className="text-sm font-bold text-white">Monsoon ETA Jitter</h3>
                    <p className="text-[10px] text-gray-500">Real-time ETA smoothing chart</p>
                  </div>
                  <span className="material-symbols-outlined text-[#71d7cf]">timeline</span>
                </div>
                <div className="h-28 bg-[#1f1f25] border border-[#262626] rounded-xl flex items-center justify-center p-4">
                  {/* Visual SVG graph line */}
                  <svg className="w-full h-full" viewBox="0 0 300 80">
                    <path 
                      d="M0,40 Q50,20 100,50 T200,30 T300,45" 
                      fill="none" 
                      stroke="#ff535a" 
                      strokeWidth="3"
                    />
                  </svg>
                </div>
              </div>
            </div>

            {/* Bottom Health Bar */}
            <div className="bg-[#0A0A0F]/80 border border-[#262626] rounded-2xl p-4 grid grid-cols-3 gap-6 text-xs mt-auto">
              <div className="flex flex-col gap-1">
                <span className="text-gray-500 uppercase text-[9px] font-bold">CPU Utilization</span>
                <div className="flex items-center gap-2">
                  <div className="h-1.5 flex-grow bg-white/5 rounded-full overflow-hidden">
                    <div className="h-full bg-[#ff535a] w-[68%]"></div>
                  </div>
                  <span className="font-mono text-[10px]">68%</span>
                </div>
              </div>
              <div className="flex flex-col gap-1 border-l border-white/5 pl-6">
                <span className="text-gray-500 uppercase text-[9px] font-bold">API cluster nodes</span>
                <span className="font-bold text-[#71d7cf] font-mono">18 / 18 HEALTHY</span>
              </div>
              <div className="flex flex-col gap-1 border-l border-white/5 pl-6">
                <span className="text-gray-500 uppercase text-[9px] font-bold">Memory utilization</span>
                <span className="font-bold text-white font-mono">1.2 TB / 4.0 TB</span>
              </div>
            </div>
          </div>
        </div>
      </main>
    </div>
  );
}