feat(next): box user card on /machine

This commit is contained in:
Gabriel Brown
2026-07-13 10:11:11 -04:00
parent 134bab93a5
commit 028fbebcd6
3 changed files with 276 additions and 0 deletions
@@ -18,6 +18,7 @@ import { Tabs, TabsContent, TabsList, TabsTrigger } from '@spoon/ui';
import type { BoxStatus, LifecycleAction } from './box-status-card';
import { BoxStatusCard } from './box-status-card';
import { BoxUserCard } from './box-user-card';
const STATUS_POLL_MS = 10_000;
@@ -261,6 +262,8 @@ export const MachineShell = () => {
onAction={runLifecycle}
/>
<BoxUserCard username={username} />
<Tabs
value={activeTab}
onValueChange={(value) => setActiveTab(value as 'files' | 'terminal')}