feat(ui): redesign home page as Interactive Status Board

- Full-width layout (removed max-w constraints)
- Restored CcsLogo in hero section with live clock
- Added real-time provider status cards with animated indicators
- Health progress bar with color-coded status
- Icon-based quick launch grid (G/C/A/K/L/D shortcuts)
- System navigation panel with all major routes
- Shared resources summary with counts
- Added Progress UI component for status bars
- Subtle grid background for control center aesthetic

Design Proposal 4: Interactive Status Board implementation
This commit is contained in:
kaitranntt
2025-12-13 02:26:57 -05:00
parent dbc13718ef
commit cf567bb924
2 changed files with 479 additions and 294 deletions
+25
View File
@@ -0,0 +1,25 @@
'use client';
import * as React from 'react';
import * as ProgressPrimitive from '@radix-ui/react-progress';
import { cn } from '@/lib/utils';
const Progress = React.forwardRef<
React.ElementRef<typeof ProgressPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root>
>(({ className, value, ...props }, ref) => (
<ProgressPrimitive.Root
ref={ref}
className={cn('relative h-2 w-full overflow-hidden rounded-full bg-primary/20', className)}
{...props}
>
<ProgressPrimitive.Indicator
className="h-full w-full flex-1 bg-primary transition-all"
style={{ transform: `translateX(-${100 - (value || 0)}%)` }}
/>
</ProgressPrimitive.Root>
));
Progress.displayName = ProgressPrimitive.Root.displayName;
export { Progress };
+454 -294
View File
@@ -1,140 +1,150 @@
import { useState, useEffect } from 'react';
import { useNavigate } from 'react-router-dom';
import { Card, CardContent } from '@/components/ui/card';
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';
import { Skeleton } from '@/components/ui/skeleton';
import { Badge } from '@/components/ui/badge';
import { Progress } from '@/components/ui/progress';
import {
Key,
Zap,
Users,
Search,
Stethoscope,
AlertTriangle,
Terminal,
ArrowRight,
Command,
Activity,
Clock,
CheckCircle2,
XCircle,
AlertCircle,
Cpu,
Database,
Settings,
Terminal,
Sparkles,
Circle,
} from 'lucide-react';
import { CcsLogo } from '@/components/ccs-logo';
import { useOverview } from '@/hooks/use-overview';
import { useSharedSummary } from '@/hooks/use-shared';
import { useHealth } from '@/hooks/use-health';
import { useCliproxyAuth } from '@/hooks/use-cliproxy';
import { cn } from '@/lib/utils';
const HEALTH_STATUS = {
ok: { label: 'Operational', class: 'bg-emerald-500/20 text-emerald-500 border-emerald-500/30' },
warning: { label: 'Degraded', class: 'bg-amber-500/20 text-amber-500 border-amber-500/30' },
error: { label: 'Issues', class: 'bg-red-500/20 text-red-500 border-red-500/30' },
} as const;
// Live clock component
function LiveClock() {
const [time, setTime] = useState(new Date());
// Three Pillars configuration - matches README branding
const THREE_PILLARS = [
useEffect(() => {
const timer = setInterval(() => setTime(new Date()), 1000);
return () => clearInterval(timer);
}, []);
return (
<div className="font-mono text-4xl font-bold tracking-tight tabular-nums">
{time.toLocaleTimeString('en-US', { hour12: false })}
</div>
);
}
// Provider status configuration
const PROVIDERS = [
{ id: 'gemini', name: 'Gemini', icon: '◆', color: 'bg-blue-500' },
{ id: 'codex', name: 'Codex', icon: '⬡', color: 'bg-green-500' },
{ id: 'agy', name: 'Antigravity', icon: '◇', color: 'bg-purple-500' },
] as const;
// Quick launch shortcuts - icon based
const QUICK_LAUNCH = [
{
id: 'api',
title: 'API Keys',
description: 'Configure GLM, Kimi with your own API keys',
icon: Key,
path: '/api',
gradient: 'from-orange-500/20 to-amber-500/10',
iconBg: 'bg-orange-500/20 text-orange-500',
key: 'G',
label: 'Gemini',
command: 'ccs gemini',
color: 'hover:bg-blue-500/20 hover:border-blue-500/50',
},
{
id: 'oauth',
title: 'OAuth Providers',
description: 'Gemini, Codex, Antigravity - zero config',
icon: Zap,
path: '/cliproxy',
gradient: 'from-blue-500/20 to-cyan-500/10',
iconBg: 'bg-blue-500/20 text-blue-500',
key: 'C',
label: 'Codex',
command: 'ccs codex',
color: 'hover:bg-green-500/20 hover:border-green-500/50',
},
{
id: 'accounts',
title: 'Multiple Accounts',
description: 'Isolated Claude instances for work & personal',
icon: Users,
path: '/accounts',
gradient: 'from-violet-500/20 to-purple-500/10',
iconBg: 'bg-violet-500/20 text-violet-500',
key: 'A',
label: 'Agy',
command: 'ccs agy',
color: 'hover:bg-purple-500/20 hover:border-purple-500/50',
},
{
key: 'K',
label: 'Kimi',
command: 'ccs kimi',
color: 'hover:bg-amber-500/20 hover:border-amber-500/50',
},
{
key: 'L',
label: 'GLM',
command: 'ccs glm',
color: 'hover:bg-orange-500/20 hover:border-orange-500/50',
},
{
key: 'D',
label: 'Default',
command: 'ccs',
color: 'hover:bg-primary/20 hover:border-primary/50',
},
];
// Quick launch shortcuts
const QUICK_LAUNCH = [
{ key: 'G', label: 'Gemini', command: 'ccs gemini' },
{ key: 'C', label: 'Codex', command: 'ccs codex' },
{ key: 'A', label: 'Agy', command: 'ccs agy' },
// System status items
const SYSTEM_ITEMS = [
{ id: 'api', label: 'API Keys', icon: Key, path: '/api' },
{ id: 'oauth', label: 'OAuth', icon: Zap, path: '/cliproxy' },
{ id: 'accounts', label: 'Accounts', icon: Users, path: '/accounts' },
{ id: 'health', label: 'Doctor', icon: Stethoscope, path: '/health' },
{ id: 'settings', label: 'Settings', icon: Settings, path: '/settings' },
{ id: 'shared', label: 'Shared', icon: Database, path: '/shared' },
];
export function HomePage() {
const navigate = useNavigate();
const { data: overview, isLoading: isOverviewLoading } = useOverview();
const { data: shared, isLoading: isSharedLoading } = useSharedSummary();
const { data: health, isLoading: isHealthLoading } = useHealth();
const { data: cliproxyAuth } = useCliproxyAuth();
if (isOverviewLoading || isSharedLoading) {
if (isOverviewLoading || isSharedLoading || isHealthLoading) {
return <HomePageSkeleton />;
}
const healthInfo = overview?.health?.status
? HEALTH_STATUS[overview.health.status as keyof typeof HEALTH_STATUS]
: HEALTH_STATUS.ok;
const healthPercent = health?.summary
? Math.round((health.summary.passed / health.summary.total) * 100)
: 0;
const healthStatus = overview?.health?.status ?? 'ok';
const pillarCounts = {
api: overview?.profiles ?? 0,
oauth: overview?.cliproxy ?? 0,
accounts: overview?.accounts ?? 0,
};
// Build provider status from auth data
const providerStatus = PROVIDERS.map((provider) => {
const authInfo = cliproxyAuth?.authStatus?.find((a) => a.provider === provider.id);
return {
...provider,
authenticated: authInfo?.authenticated ?? false,
accounts: authInfo?.accounts?.length ?? 0,
};
});
return (
<div className="relative min-h-screen">
{/* Gradient Mesh Background */}
<div className="fixed inset-0 -z-10 overflow-hidden">
<div className="absolute -top-1/2 -right-1/2 w-full h-full bg-gradient-to-bl from-primary/5 via-transparent to-transparent rounded-full blur-3xl" />
<div className="absolute -bottom-1/2 -left-1/2 w-full h-full bg-gradient-to-tr from-primary/5 via-transparent to-transparent rounded-full blur-3xl" />
<div className="min-h-screen">
{/* Subtle grid background */}
<div className="fixed inset-0 -z-10 opacity-[0.02]">
<div
className="absolute inset-0"
style={{
backgroundImage: `linear-gradient(to right, currentColor 1px, transparent 1px), linear-gradient(to bottom, currentColor 1px, transparent 1px)`,
backgroundSize: '48px 48px',
}}
/>
</div>
<div className="p-6 max-w-6xl mx-auto space-y-8 animate-in fade-in slide-in-from-bottom-4 duration-500">
{/* Hero Header */}
<header className="relative">
<Card className="overflow-hidden border-primary/10 bg-card/80 backdrop-blur-xl">
<CardContent className="p-8">
<div className="flex flex-col md:flex-row md:items-center md:justify-between gap-6">
<div className="space-y-2">
<div className="flex items-center gap-3">
<div className="p-2.5 rounded-xl bg-gradient-to-br from-primary/20 to-primary/5 border border-primary/20">
<Sparkles className="w-6 h-6 text-primary" />
</div>
<div>
<h1 className="text-2xl font-bold tracking-tight">CCS</h1>
<p className="text-sm text-muted-foreground">Multi-Account AI Management</p>
</div>
</div>
</div>
<div className="flex items-center gap-4">
<Badge variant="outline" className="font-mono text-xs px-3 py-1">
v{overview?.version ?? '0.0.0'}
</Badge>
<Badge variant="outline" className={cn('px-3 py-1 border', healthInfo.class)}>
<span className="w-1.5 h-1.5 rounded-full bg-current mr-2 animate-pulse" />
{healthInfo.label}
</Badge>
</div>
</div>
{/* Command Palette Search Bar */}
<div className="mt-6 group cursor-pointer" onClick={() => navigate('/health')}>
<div className="flex items-center gap-3 px-4 py-3 rounded-xl border border-border/50 bg-muted/30 hover:bg-muted/50 hover:border-primary/30 transition-all">
<Search className="w-4 h-4 text-muted-foreground" />
<span className="text-sm text-muted-foreground flex-1">
Search commands, profiles, or run diagnostics...
</span>
<kbd className="hidden sm:inline-flex h-6 items-center gap-1 rounded border bg-muted px-2 font-mono text-xs text-muted-foreground">
<Command className="w-3 h-3" />K
</kbd>
</div>
</div>
</CardContent>
</Card>
</header>
{/* Configuration Warning */}
<div className="p-6 lg:p-8 space-y-6 animate-in fade-in slide-in-from-bottom-4 duration-500">
{/* Configuration Warning - Full Width */}
{shared?.symlinkStatus && !shared.symlinkStatus.valid && (
<Alert
variant="warning"
@@ -146,237 +156,387 @@ export function HomePage() {
</Alert>
)}
{/* Three Pillars Section */}
<section className="space-y-4">
<div className="flex items-center gap-2">
<h2 className="text-lg font-semibold tracking-tight">The Three Pillars</h2>
<span className="text-xs text-muted-foreground"> What do you want to do?</span>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
{THREE_PILLARS.map((pillar) => {
const Icon = pillar.icon;
const count = pillarCounts[pillar.id as keyof typeof pillarCounts];
return (
<Card
key={pillar.id}
className={cn(
'group cursor-pointer overflow-hidden transition-all duration-300',
'hover:shadow-lg hover:shadow-primary/5 hover:-translate-y-1',
'border-border/50 bg-gradient-to-br',
pillar.gradient
)}
onClick={() => navigate(pillar.path)}
>
<CardContent className="p-6 space-y-4">
<div className="flex items-start justify-between">
<div
className={cn(
'p-3 rounded-xl transition-transform group-hover:scale-110',
pillar.iconBg
)}
>
<Icon className="w-6 h-6" />
</div>
<span className="text-3xl font-bold font-mono opacity-80">{count}</span>
</div>
<div className="space-y-1">
<h3 className="font-semibold text-lg group-hover:text-primary transition-colors">
{pillar.title}
</h3>
<p className="text-sm text-muted-foreground leading-relaxed">
{pillar.description}
</p>
</div>
<div className="flex items-center text-sm text-primary opacity-0 group-hover:opacity-100 transition-opacity">
<span>Configure</span>
<ArrowRight className="w-4 h-4 ml-1 group-hover:translate-x-1 transition-transform" />
</div>
</CardContent>
</Card>
);
})}
</div>
</section>
{/* Main Status Board Grid - Full Width */}
<div className="grid grid-cols-1 xl:grid-cols-12 gap-6">
{/* Left Column: Hero + System Health */}
<div className="xl:col-span-4 space-y-6">
{/* Hero Card with Logo */}
<Card className="overflow-hidden border-border/50 bg-card/80 backdrop-blur-sm">
<CardContent className="p-6">
<div className="flex items-center gap-4 mb-6">
<CcsLogo size="lg" showText={false} />
<div>
<h1 className="text-2xl font-bold tracking-tight">CCS</h1>
<p className="text-sm text-muted-foreground">Control Center</p>
</div>
<Badge variant="outline" className="ml-auto font-mono text-xs">
v{overview?.version ?? '0.0.0'}
</Badge>
</div>
{/* Quick Launch & Health Grid */}
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
{/* Quick Launch */}
<Card className="lg:col-span-2 border-border/50 bg-card/80 backdrop-blur-sm">
<CardContent className="p-6 space-y-4">
<div className="flex items-center justify-between">
<h3 className="font-semibold flex items-center gap-2">
<Terminal className="w-4 h-4 text-muted-foreground" />
Quick Launch
</h3>
<span className="text-xs text-muted-foreground">Click to copy command</span>
</div>
<div className="grid grid-cols-3 sm:grid-cols-6 gap-3">
{QUICK_LAUNCH.map((item) => (
<button
key={item.key}
className="group flex flex-col items-center gap-2 p-4 rounded-xl border border-border/50 bg-muted/20 hover:bg-primary/10 hover:border-primary/30 transition-all"
onClick={() => navigator.clipboard.writeText(item.command)}
title={item.command}
{/* Live Clock */}
<div className="text-center py-6 border-y border-border/30">
<LiveClock />
<p className="text-xs text-muted-foreground mt-2 uppercase tracking-widest">
System Time
</p>
</div>
{/* Quick Stats */}
<div className="grid grid-cols-3 gap-4 mt-6">
<div className="text-center">
<p className="text-2xl font-bold font-mono text-primary">
{overview?.profiles ?? 0}
</p>
<p className="text-xs text-muted-foreground">Profiles</p>
</div>
<div className="text-center">
<p className="text-2xl font-bold font-mono text-primary">
{overview?.cliproxy ?? 0}
</p>
<p className="text-xs text-muted-foreground">OAuth</p>
</div>
<div className="text-center">
<p className="text-2xl font-bold font-mono text-primary">
{overview?.accounts ?? 0}
</p>
<p className="text-xs text-muted-foreground">Accounts</p>
</div>
</div>
</CardContent>
</Card>
{/* System Health Card */}
<Card
className="overflow-hidden border-border/50 bg-card/80 backdrop-blur-sm cursor-pointer hover:border-primary/30 transition-colors"
onClick={() => navigate('/health')}
>
<CardContent className="p-6">
<div className="flex items-center justify-between mb-4">
<h3 className="font-semibold flex items-center gap-2">
<Activity className="w-4 h-4 text-muted-foreground" />
System Health
</h3>
<Badge
variant="outline"
className={cn(
'px-2 py-0.5 text-xs',
healthStatus === 'ok' &&
'bg-emerald-500/10 text-emerald-500 border-emerald-500/30',
healthStatus === 'warning' &&
'bg-amber-500/10 text-amber-500 border-amber-500/30',
healthStatus === 'error' && 'bg-red-500/10 text-red-500 border-red-500/30'
)}
>
<kbd className="w-10 h-10 flex items-center justify-center rounded-lg bg-muted font-mono text-lg font-bold group-hover:bg-primary/20 group-hover:text-primary transition-colors">
{item.key}
</kbd>
<span className="text-xs text-muted-foreground group-hover:text-primary transition-colors">
{item.label}
</span>
{healthStatus === 'ok' ? (
<CheckCircle2 className="w-3 h-3 mr-1" />
) : healthStatus === 'warning' ? (
<AlertCircle className="w-3 h-3 mr-1" />
) : (
<XCircle className="w-3 h-3 mr-1" />
)}
{healthStatus === 'ok'
? 'Healthy'
: healthStatus === 'warning'
? 'Degraded'
: 'Issues'}
</Badge>
</div>
<div className="space-y-3">
<div className="flex items-center justify-between text-sm">
<span className="text-muted-foreground">Health Score</span>
<span className="font-mono font-bold">{healthPercent}%</span>
</div>
<Progress
value={healthPercent}
className={cn(
'h-2',
healthStatus === 'ok' && '[&>[role=progressbar]]:bg-emerald-500',
healthStatus === 'warning' && '[&>[role=progressbar]]:bg-amber-500',
healthStatus === 'error' && '[&>[role=progressbar]]:bg-red-500'
)}
/>
<div className="flex justify-between text-xs text-muted-foreground">
<span>{health?.summary?.passed ?? 0} passed</span>
<span>{health?.summary?.warnings ?? 0} warnings</span>
<span>{health?.summary?.errors ?? 0} errors</span>
</div>
</div>
<div className="flex items-center justify-end mt-4 text-xs text-primary">
<span>View Details</span>
<ArrowRight className="w-3 h-3 ml-1" />
</div>
</CardContent>
</Card>
</div>
{/* Center Column: Provider Status + Quick Launch */}
<div className="xl:col-span-5 space-y-6">
{/* Provider Status Board */}
<Card className="overflow-hidden border-border/50 bg-card/80 backdrop-blur-sm">
<CardContent className="p-6">
<div className="flex items-center justify-between mb-6">
<h3 className="font-semibold flex items-center gap-2">
<Cpu className="w-4 h-4 text-muted-foreground" />
Provider Status
</h3>
<button
onClick={() => navigate('/cliproxy')}
className="text-xs text-primary hover:underline flex items-center gap-1"
>
Manage <ArrowRight className="w-3 h-3" />
</button>
))}
{/* Account shortcuts */}
{overview?.accounts && overview.accounts > 0 && (
<>
<button
className="group flex flex-col items-center gap-2 p-4 rounded-xl border border-border/50 bg-muted/20 hover:bg-violet-500/10 hover:border-violet-500/30 transition-all"
onClick={() => navigate('/accounts')}
title="Switch account"
</div>
<div className="space-y-4">
{providerStatus.map((provider) => (
<div
key={provider.id}
className="flex items-center gap-4 p-3 rounded-lg border border-border/50 bg-muted/20 hover:bg-muted/40 transition-colors"
>
<div className="w-10 h-10 flex items-center justify-center rounded-lg bg-muted font-mono text-lg font-bold group-hover:bg-violet-500/20 group-hover:text-violet-500 transition-colors">
<Users className="w-5 h-5" />
{/* Status Indicator */}
<div className="relative">
<Circle
className={cn(
'w-3 h-3 fill-current',
provider.authenticated ? 'text-emerald-500' : 'text-muted-foreground/30'
)}
/>
{provider.authenticated && (
<span className="absolute inset-0 animate-ping">
<Circle className="w-3 h-3 fill-emerald-500 opacity-50" />
</span>
)}
</div>
<span className="text-xs text-muted-foreground group-hover:text-violet-500 transition-colors">
Accounts
{/* Provider Info */}
<div className="flex-1">
<div className="flex items-center gap-2">
<span className="font-medium">{provider.name}</span>
{provider.authenticated && (
<Badge variant="outline" className="text-[10px] px-1.5 py-0">
{provider.accounts} {provider.accounts === 1 ? 'account' : 'accounts'}
</Badge>
)}
</div>
<p className="text-xs text-muted-foreground">
{provider.authenticated ? 'Connected' : 'Not authenticated'}
</p>
</div>
{/* Status Bar */}
<div className="w-24">
<Progress
value={provider.authenticated ? 100 : 0}
className={cn(
'h-1.5',
provider.authenticated && '[&>[role=progressbar]]:bg-emerald-500'
)}
/>
</div>
</div>
))}
</div>
</CardContent>
</Card>
{/* Quick Launch Grid */}
<Card className="overflow-hidden border-border/50 bg-card/80 backdrop-blur-sm">
<CardContent className="p-6">
<div className="flex items-center justify-between mb-6">
<h3 className="font-semibold flex items-center gap-2">
<Terminal className="w-4 h-4 text-muted-foreground" />
Quick Launch
</h3>
<span className="text-xs text-muted-foreground">Click to copy</span>
</div>
<div className="grid grid-cols-6 gap-3">
{QUICK_LAUNCH.map((item) => (
<button
key={item.key}
className={cn(
'group flex flex-col items-center gap-2 p-4 rounded-xl border border-border/50 bg-muted/10 transition-all',
item.color
)}
onClick={() => navigator.clipboard.writeText(item.command)}
title={item.command}
>
<kbd className="w-10 h-10 flex items-center justify-center rounded-lg bg-background border border-border/50 font-mono text-lg font-bold group-hover:border-current transition-colors">
{item.key}
</kbd>
<span className="text-[10px] text-muted-foreground group-hover:text-current transition-colors">
{item.label}
</span>
</button>
</>
)}
{/* Doctor shortcut */}
<button
className="group flex flex-col items-center gap-2 p-4 rounded-xl border border-border/50 bg-muted/20 hover:bg-emerald-500/10 hover:border-emerald-500/30 transition-all"
onClick={() => navigate('/health')}
title="Run diagnostics"
>
<div className="w-10 h-10 flex items-center justify-center rounded-lg bg-muted font-mono text-lg font-bold group-hover:bg-emerald-500/20 group-hover:text-emerald-500 transition-colors">
<Stethoscope className="w-5 h-5" />
</div>
<span className="text-xs text-muted-foreground group-hover:text-emerald-500 transition-colors">
Doctor
</span>
</button>
</div>
</CardContent>
</Card>
{/* Health & Resources */}
<Card className="border-border/50 bg-card/80 backdrop-blur-sm">
<CardContent className="p-6 space-y-6">
{/* Health Summary */}
<div className="space-y-3">
<h3 className="font-semibold text-sm text-muted-foreground uppercase tracking-wider">
System Health
</h3>
<div
className="flex items-center justify-between p-4 rounded-xl bg-muted/30 hover:bg-muted/50 cursor-pointer transition-colors"
onClick={() => navigate('/health')}
>
<div className="flex items-center gap-3">
<div
className={cn(
'w-3 h-3 rounded-full',
overview?.health?.status === 'ok'
? 'bg-emerald-500'
: overview?.health?.status === 'warning'
? 'bg-amber-500'
: 'bg-red-500'
)}
/>
<span className="font-mono text-2xl font-bold">
{overview?.health?.passed ?? 0}/{overview?.health?.total ?? 0}
</span>
</div>
<span className="text-xs text-muted-foreground">checks passed</span>
))}
</div>
</div>
</CardContent>
</Card>
</div>
{/* Resources Summary */}
<div className="space-y-3">
<h3 className="font-semibold text-sm text-muted-foreground uppercase tracking-wider">
Shared Resources
{/* Right Column: Navigation + Resources */}
<div className="xl:col-span-3 space-y-6">
{/* System Navigation */}
<Card className="overflow-hidden border-border/50 bg-card/80 backdrop-blur-sm">
<CardContent className="p-6">
<h3 className="font-semibold flex items-center gap-2 mb-4">
<Sparkles className="w-4 h-4 text-muted-foreground" />
Navigation
</h3>
<div
className="grid grid-cols-3 gap-2 cursor-pointer"
onClick={() => navigate('/shared')}
>
<div className="flex flex-col items-center p-3 rounded-lg bg-muted/30 hover:bg-muted/50 transition-colors">
<span className="font-mono text-xl font-bold text-primary">
<div className="space-y-2">
{SYSTEM_ITEMS.map((item) => {
const Icon = item.icon;
return (
<button
key={item.id}
className="w-full flex items-center gap-3 p-3 rounded-lg border border-border/50 bg-muted/10 hover:bg-muted/30 hover:border-primary/30 transition-all text-left group"
onClick={() => navigate(item.path)}
>
<Icon className="w-4 h-4 text-muted-foreground group-hover:text-primary transition-colors" />
<span className="flex-1 text-sm">{item.label}</span>
<ArrowRight className="w-3 h-3 text-muted-foreground opacity-0 group-hover:opacity-100 transition-opacity" />
</button>
);
})}
</div>
</CardContent>
</Card>
{/* Shared Resources */}
<Card
className="overflow-hidden border-border/50 bg-card/80 backdrop-blur-sm cursor-pointer hover:border-primary/30 transition-colors"
onClick={() => navigate('/shared')}
>
<CardContent className="p-6">
<div className="flex items-center justify-between mb-4">
<h3 className="font-semibold flex items-center gap-2">
<Database className="w-4 h-4 text-muted-foreground" />
Shared Resources
</h3>
<ArrowRight className="w-4 h-4 text-muted-foreground" />
</div>
<div className="grid grid-cols-3 gap-3">
<div className="text-center p-3 rounded-lg bg-muted/20">
<p className="text-xl font-bold font-mono text-primary">
{shared?.commands ?? 0}
</span>
<span className="text-xs text-muted-foreground">cmds</span>
</p>
<p className="text-[10px] text-muted-foreground uppercase tracking-wide">
Commands
</p>
</div>
<div className="flex flex-col items-center p-3 rounded-lg bg-muted/30 hover:bg-muted/50 transition-colors">
<span className="font-mono text-xl font-bold text-primary">
<div className="text-center p-3 rounded-lg bg-muted/20">
<p className="text-xl font-bold font-mono text-primary">
{shared?.skills ?? 0}
</span>
<span className="text-xs text-muted-foreground">skills</span>
</p>
<p className="text-[10px] text-muted-foreground uppercase tracking-wide">
Skills
</p>
</div>
<div className="flex flex-col items-center p-3 rounded-lg bg-muted/30 hover:bg-muted/50 transition-colors">
<span className="font-mono text-xl font-bold text-primary">
<div className="text-center p-3 rounded-lg bg-muted/20">
<p className="text-xl font-bold font-mono text-primary">
{shared?.agents ?? 0}
</span>
<span className="text-xs text-muted-foreground">agents</span>
</p>
<p className="text-[10px] text-muted-foreground uppercase tracking-wide">
Agents
</p>
</div>
</div>
</div>
</CardContent>
</Card>
</CardContent>
</Card>
{/* Uptime Indicator */}
<Card className="overflow-hidden border-border/50 bg-card/80 backdrop-blur-sm">
<CardContent className="p-6">
<div className="flex items-center gap-3">
<div className="relative">
<div className="w-3 h-3 rounded-full bg-emerald-500" />
<div className="absolute inset-0 w-3 h-3 rounded-full bg-emerald-500 animate-ping opacity-50" />
</div>
<div>
<p className="text-sm font-medium">System Online</p>
<p className="text-xs text-muted-foreground flex items-center gap-1">
<Clock className="w-3 h-3" />
Config server running
</p>
</div>
</div>
</CardContent>
</Card>
</div>
</div>
</div>
</div>
);
}
// Skeleton loader component
// Skeleton loader component - Full Width
function HomePageSkeleton() {
return (
<div className="p-6 max-w-6xl mx-auto space-y-8">
{/* Hero Skeleton */}
<div className="rounded-xl border p-8">
<div className="flex items-center gap-4">
<Skeleton className="h-12 w-12 rounded-xl" />
<div>
<Skeleton className="h-7 w-[120px] mb-2" />
<Skeleton className="h-4 w-[200px]" />
</div>
</div>
<Skeleton className="h-12 w-full mt-6 rounded-xl" />
</div>
{/* Pillars Skeleton */}
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
{[1, 2, 3].map((i) => (
<div key={i} className="p-6 border rounded-xl space-y-4">
<div className="flex items-start justify-between">
<Skeleton className="h-12 w-12 rounded-xl" />
<Skeleton className="h-8 w-8" />
<div className="p-6 lg:p-8 space-y-6">
<div className="grid grid-cols-1 xl:grid-cols-12 gap-6">
{/* Left Column */}
<div className="xl:col-span-4 space-y-6">
<div className="rounded-xl border p-6 space-y-6">
<div className="flex items-center gap-4">
<Skeleton className="h-12 w-12 rounded" />
<div>
<Skeleton className="h-6 w-20 mb-2" />
<Skeleton className="h-4 w-28" />
</div>
</div>
<Skeleton className="h-16 w-full" />
<div className="grid grid-cols-3 gap-4">
{[1, 2, 3].map((i) => (
<Skeleton key={i} className="h-12" />
))}
</div>
<Skeleton className="h-6 w-32" />
<Skeleton className="h-4 w-full" />
</div>
))}
</div>
{/* Quick Launch Skeleton */}
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
<div className="lg:col-span-2 border rounded-xl p-6">
<Skeleton className="h-6 w-32 mb-4" />
<div className="grid grid-cols-6 gap-3">
{[1, 2, 3, 4, 5, 6].map((i) => (
<Skeleton key={i} className="h-20 rounded-xl" />
))}
<div className="rounded-xl border p-6">
<Skeleton className="h-4 w-32 mb-4" />
<Skeleton className="h-2 w-full mb-2" />
<Skeleton className="h-3 w-full" />
</div>
</div>
<div className="border rounded-xl p-6 space-y-4">
<Skeleton className="h-4 w-24" />
<Skeleton className="h-16 rounded-xl" />
<Skeleton className="h-4 w-24" />
<div className="grid grid-cols-3 gap-2">
{/* Center Column */}
<div className="xl:col-span-5 space-y-6">
<div className="rounded-xl border p-6 space-y-4">
<Skeleton className="h-4 w-32" />
{[1, 2, 3].map((i) => (
<Skeleton key={i} className="h-16 rounded-lg" />
<Skeleton key={i} className="h-16 w-full rounded-lg" />
))}
</div>
<div className="rounded-xl border p-6">
<Skeleton className="h-4 w-32 mb-4" />
<div className="grid grid-cols-6 gap-3">
{[1, 2, 3, 4, 5, 6].map((i) => (
<Skeleton key={i} className="h-20 rounded-xl" />
))}
</div>
</div>
</div>
{/* Right Column */}
<div className="xl:col-span-3 space-y-6">
<div className="rounded-xl border p-6 space-y-2">
<Skeleton className="h-4 w-24 mb-4" />
{[1, 2, 3, 4, 5, 6].map((i) => (
<Skeleton key={i} className="h-10 w-full rounded-lg" />
))}
</div>
<div className="rounded-xl border p-6">
<Skeleton className="h-4 w-32 mb-4" />
<div className="grid grid-cols-3 gap-3">
{[1, 2, 3].map((i) => (
<Skeleton key={i} className="h-16 rounded-lg" />
))}
</div>
</div>
</div>
</div>
</div>