File size: 10,659 Bytes
a8b4b87 | 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 | import React from 'react';
import { Link, useLocation } from 'wouter';
import { cn } from '@/lib/utils';
import {
Activity,
Brain,
Cable,
Cpu,
Database,
Eye,
FlaskConical,
FolderSync,
History,
Layers,
LayoutTemplate,
Settings,
Menu,
Gauge,
Shield,
Sparkles,
ExternalLink,
Users,
GitBranch,
ListChecks,
Map,
Telescope,
Target,
Wand2,
Boxes,
Network,
Zap,
FlaskRound,
Merge,
ScanLine,
Leaf,
RotateCcw,
Clapperboard,
SlidersHorizontal,
SearchCheck,
Code2,
Infinity as InfinityIcon,
} from 'lucide-react';
const coreItems = [
{ name: 'Operational Core', href: '/operational-core', icon: InfinityIcon },
{ name: 'Cockpit', href: '/cockpit', icon: Activity },
{ name: 'Brain', href: '/brain', icon: Brain },
{ name: 'Compute', href: '/compute', icon: Cpu },
{ name: 'Connections', href: '/connections', icon: Cable },
{ name: 'Syncs', href: '/syncs', icon: FolderSync },
{ name: 'Runs', href: '/runs', icon: History },
{ name: 'Templates', href: '/templates', icon: LayoutTemplate },
{ name: 'Settings', href: '/settings', icon: Settings },
{ name: 'Admin Usage', href: '/admin/usage', icon: Gauge },
{ name: 'AGI Forecast', href: '/agi-forecast', icon: Telescope },
];
const fabricItems = [
{ name: 'Sources', href: '/sources', icon: Database },
{ name: 'Models', href: '/models', icon: Boxes },
{ name: 'Destinations', href: '/destinations', icon: Network },
{ name: 'Mappings', href: '/mappings', icon: GitBranch },
{ name: 'Policies', href: '/policies', icon: ListChecks },
{ name: 'Observability', href: '/observability', icon: Telescope },
{ name: 'Outcomes', href: '/outcomes', icon: Target },
{ name: 'Agents', href: '/agents', icon: Users },
{ name: 'Roadmap', href: '/roadmap', icon: Map },
];
const sovereignItems = [
{ name: 'AI Hub', href: '/sovereign-ai-hub', icon: Shield },
{ name: 'Model Fleet', href: '/sovereign-ai-hub/model-fleet', icon: Layers },
{ name: 'Inference', href: '/sovereign-ai-hub/inference', icon: Eye },
{ name: 'Distillery', href: '/sovereign-ai-hub/distillery', icon: FlaskConical },
{ name: 'PRAXIS', href: '/sovereign-ai-hub/praxis', icon: Wand2 },
{ name: 'Data Estate', href: '/sovereign-ai-hub/data-estate', icon: Database },
{ name: 'Cognitive', href: '/sovereign-ai-hub/cognitive', icon: Brain },
];
const innovationItems = [
{ name: 'Innovation Brief', href: '/innovation', icon: Zap },
{ name: 'Audience SQL', href: '/innovation/audience-sql', icon: FlaskRound },
{ name: 'Lineage Graph', href: '/innovation/lineage', icon: ScanLine },
{ name: 'Drift Repair', href: '/innovation/drift-repair', icon: GitBranch },
{ name: 'Golden Record', href: '/innovation/golden-record', icon: Merge },
{ name: 'Cost & Carbon', href: '/innovation/cost-carbon', icon: Leaf },
{ name: 'Closed Loop', href: '/innovation/closed-loop', icon: RotateCcw },
{ name: 'Sim Theater', href: '/innovation/sim-theater', icon: Clapperboard },
{ name: 'Mapper Accuracy', href: '/innovation/mapper-accuracy', icon: SlidersHorizontal },
{ name: 'Dest Discovery', href: '/innovation/destination-discovery', icon: SearchCheck },
{ name: 'Policy DSL', href: '/innovation/policy-dsl', icon: Code2 },
];
const externalNavItems = [
{ name: 'A11oy Conductor', href: '/', icon: Sparkles },
];
function NavLink({ item, isActive, collapsed }: { item: { name: string; href: string; icon: React.ComponentType<{ className?: string }> }; isActive: boolean; collapsed: boolean }) {
return (
<Link
href={item.href}
aria-label={collapsed ? item.name : undefined}
aria-current={isActive ? 'page' : undefined}
className={cn(
"flex items-center gap-3 px-3 py-2 rounded-lg transition-all duration-150 text-[13px] font-medium",
isActive
? "bg-[#0e0e0e] text-[#c9b787]"
: "text-[#8a8a8a] hover:bg-[#141414] hover:text-[#f5f5f5]"
)}
>
<item.icon className={cn("w-[18px] h-[18px] shrink-0", isActive ? "text-[#c9b787]" : "text-[#666]")} aria-hidden="true" />
{!collapsed && <span>{item.name}</span>}
</Link>
);
}
function NavSection({ label, items, location, collapsed }: { label: string; items: ReadonlyArray<{ name: string; href: string; icon: React.ComponentType<{ className?: string }> }>; location: string; collapsed: boolean }) {
return (
<>
{!collapsed && (
<p className="px-3 pt-1 pb-2 text-[10px] font-mono uppercase tracking-[0.18em] text-[#555]">
{label}
</p>
)}
{items.map((item) => {
const isActive = item.href === '/' ? location === '/' : (location === item.href || location.startsWith(item.href + '/'));
return <NavLink key={item.name} item={item} isActive={isActive} collapsed={collapsed} />;
})}
</>
);
}
export function Layout({ children }: { children: React.ReactNode }) {
const [location] = useLocation();
const [isSidebarOpen, setIsSidebarOpen] = React.useState(true);
const breadcrumb = (location === '/cockpit' || location === '/') ? 'Cockpit' : location.split('/').filter(Boolean).map(s => s.charAt(0).toUpperCase() + s.slice(1).replace(/-/g, ' ')).join(' / ');
return (
<div className="flex h-screen w-full overflow-hidden" style={{ background: '#0a0a0a', color: '#f5f5f5' }}>
<aside
className={cn(
"flex flex-col border-r border-[rgba(255,255,255,0.06)] transition-all duration-300 z-10 shrink-0",
isSidebarOpen ? "w-60" : "w-16"
)}
style={{ background: '#0e0e0e' }}
>
<div className="flex h-14 items-center justify-between px-4 border-b border-[rgba(255,255,255,0.06)]">
{isSidebarOpen && (
<Link href="/" className="flex items-center gap-2.5 font-display font-bold text-base tracking-tight">
<div className="w-7 h-7 rounded-lg flex items-center justify-center border border-[rgba(201,183,135,0.3)]" style={{ background: 'rgba(201,183,135,0.08)' }}>
<span className="font-mono text-[11px] font-bold text-[#c9b787]">A</span>
</div>
<span className="text-[#f5f5f5]">Amaru</span>
</Link>
)}
<button
onClick={() => setIsSidebarOpen(!isSidebarOpen)}
aria-label={isSidebarOpen ? "Collapse sidebar" : "Expand sidebar"}
aria-expanded={isSidebarOpen}
className="p-1.5 rounded-lg hover:bg-[#0e0e0e] text-[#666] hover:text-[#f5f5f5] transition-colors"
>
<Menu className="w-4 h-4" aria-hidden="true" />
</button>
</div>
<nav aria-label="Main navigation" className="flex-1 overflow-y-auto py-3 px-2 space-y-0.5">
<NavSection label="Amaru Core" items={coreItems} location={location} collapsed={!isSidebarOpen} />
<div className="my-3 mx-3 h-px bg-[rgba(255,255,255,0.04)]" />
<NavSection label="Activation Fabric" items={fabricItems} location={location} collapsed={!isSidebarOpen} />
<div className="my-3 mx-3 h-px bg-[rgba(255,255,255,0.04)]" />
<NavSection label="Sovereign AI Hub" items={sovereignItems} location={location} collapsed={!isSidebarOpen} />
<div className="my-3 mx-3 h-px bg-[rgba(255,255,255,0.04)]" />
<NavSection label="One-of-One" items={innovationItems} location={location} collapsed={!isSidebarOpen} />
<div className="my-3 mx-3 h-px bg-[rgba(255,255,255,0.04)]" />
{isSidebarOpen && (
<p className="px-3 pt-1 pb-2 text-[10px] font-mono uppercase tracking-[0.18em] text-[#555]">
Cross-Platform
</p>
)}
{externalNavItems.map((item) => (
<a
key={item.name}
href={item.href}
target="_blank"
rel="noopener noreferrer"
aria-label={!isSidebarOpen ? item.name : undefined}
className="flex items-center gap-3 px-3 py-2 rounded-lg transition-all duration-150 text-[13px] font-medium text-[#8a8a8a] hover:bg-[#141414] hover:text-[#f5f5f5]"
>
<item.icon className="w-[18px] h-[18px] shrink-0 text-[#666]" aria-hidden="true" />
{isSidebarOpen && (
<span className="flex-1 flex items-center justify-between">
{item.name}
<ExternalLink className="w-3 h-3 opacity-40" />
</span>
)}
</a>
))}
</nav>
<div className="p-3 border-t border-[rgba(255,255,255,0.06)]">
{isSidebarOpen ? (
<div className="flex items-center gap-3 px-1">
<div className="w-8 h-8 rounded-full flex items-center justify-center font-mono font-bold text-[10px] border border-[rgba(255,255,255,0.08)] text-[#c9b787]" style={{ background: 'rgba(201,183,135,0.08)' }}>
OP
</div>
<div className="flex flex-col">
<span className="text-[13px] font-medium text-[#f5f5f5] leading-none">Operator</span>
<span className="text-[11px] text-[#666] mt-0.5">SZL System</span>
</div>
</div>
) : (
<div className="w-8 h-8 rounded-full flex items-center justify-center font-mono font-bold text-[10px] border border-[rgba(255,255,255,0.08)] text-[#c9b787] mx-auto" style={{ background: 'rgba(201,183,135,0.08)' }} title="Operator">
OP
</div>
)}
</div>
</aside>
<main id="main-content" tabIndex={-1} className="flex-1 flex flex-col min-w-0 overflow-hidden relative">
<header className="h-14 flex items-center px-6 border-b border-[rgba(255,255,255,0.06)] shrink-0 justify-between glass-panel">
<div className="flex items-center gap-2 text-[13px] text-[#8a8a8a]">
<span className="text-[#f5f5f5] font-medium">{breadcrumb}</span>
</div>
<div className="flex items-center gap-5">
<div className="flex items-center gap-2 text-[10px] font-mono tracking-[0.15em] uppercase text-[#666]">
<span className="w-1.5 h-1.5 rounded-full bg-[#5a8a6e]" style={{ boxShadow: '0 0 6px rgba(90,138,110,0.5)' }}></span>
Governed Environment
</div>
</div>
</header>
<div className="flex-1 overflow-y-auto scroll-smooth" style={{ background: '#0a0a0a' }}>
<div className="mx-auto w-full max-w-[1440px] animate-fade-in-up px-6 py-6 lg:px-8 lg:py-8">
{children}
</div>
</div>
</main>
</div>
);
}
|