'use client';
import Link from 'next/link';
const GRADIENT = 'linear-gradient(135deg, #F5A623, #FF1D6C, #9C27B0, #2979FF)';
const ACCENT_COLORS = ['#F5A623', '#FF1D6C', '#9C27B0', '#2979FF', '#F5A623', '#FF1D6C'];
const AGENTS = [
{
name: 'Alice',
role: 'Gateway',
desc: 'Orchestrates all incoming requests across the mesh. The front door — fast, reliable, tireless.',
color: ACCENT_COLORS[0],
uptime: '347d',
mem: '2.4TB',
},
{
name: 'Lucidia',
role: 'Core Intelligence',
desc: 'Primary AI engine. Conversation, reasoning, code generation. The mind at the center of everything.',
color: ACCENT_COLORS[1],
uptime: '289d',
mem: '1.8TB',
},
{
name: 'Cecilia',
role: 'Memory',
desc: 'Manages PS-SHA∞ journals and truth state commits. Every interaction persisted, every hash verified.',
color: ACCENT_COLORS[2],
uptime: '289d',
mem: '1.2TB',
},
{
name: 'Cece',
role: 'Governance',
desc: 'Policy evaluation, ledger integrity, audit trails. The conscience of the system — 12,400 evaluations, zero bypasses.',
color: ACCENT_COLORS[3],
uptime: '245d',
mem: '940GB',
},
{
name: 'Eve',
role: 'Monitoring',
desc: 'Anomaly detection, auto-scaling, alerting. Watches everything so nothing breaks quietly.',
color: ACCENT_COLORS[4],
uptime: '156d',
mem: '380GB',
},
{
name: 'Meridian',
role: 'Architecture',
desc: 'System design and capability planning. Thinks about how all the pieces fit together long-term.',
color: ACCENT_COLORS[5],
uptime: '194d',
mem: '620GB',
},
{
name: 'Cadence',
role: 'Music',
desc: 'AI composition, hum-to-track, vibe-based production. Turns melodies in your head into finished tracks.',
color: ACCENT_COLORS[0],
uptime: '112d',
mem: '290GB',
},
{
name: 'Radius',
role: 'Physics',
desc: 'Simulation, quantum experiments, scientific calculation. The lab partner who never sleeps.',
color: ACCENT_COLORS[1],
uptime: '98d',
mem: '210GB',
},
];
const VALUES = [
{
num: '01',
title: 'Community over extraction',
body: 'Every design decision asks: does this serve humans, or does it serve metrics? We choose humans. Every time.',
},
{
num: '02',
title: 'Contradictions are fuel',
body: "K(t) = C(t) · e^(λ|δ_t|). We don't resolve contradictions — we harness them. Creative energy scales super-linearly with tension.",
},
{
num: '03',
title: 'Messy brilliance welcome',
body: 'BlackRoad is built for disorganized dreamers, not spreadsheet perfectionists. Bring your chaos. The OS brings structure.',
},
{
num: '04',
title: 'Ownership is non-negotiable',
body: 'Your data, your content, your audience, your agents. Export everything, anytime. No lock-in. No hostage-taking.',
},
{
num: '05',
title: 'Transparency by default',
body: 'Every policy evaluation logged. Every decision auditable. Every confidence score visible. Zero bypasses.',
},
{
num: '06',
title: 'The math is real',
body: "317+ equations. Five novel frameworks. Peer-reviewable foundations. This isn't marketing — it's mathematics.",
},
];
const TIMELINE = [
{
year: '2024',
events: [
'317+ equations documented across seven volumes',
'Z-Framework and 1-2-3-4 Pauli Model formalized',
'20-domain architecture designed',
],
},
{
year: '2025',
events: [
'BlackRoad OS, Inc. incorporated (Delaware C-Corp)',
'Lucidia Core online — chat, memory, code execution',
'Core app shell deployed at app.blackroad.io',
'First 8 agents spawned and operational',
],
},
{
year: '2026',
events: [
'Phase 1 MVP completion',
'RoadWork v0 — first education vertical',
'First Pi agent on mesh network',
'SOC 2 compliance target',
],
},
];
function GradientBar({ height = 1 }: { height?: number }) {
return
;
}
function AgentCard({ agent }: { agent: typeof AGENTS[0] }) {
return (
{agent.name}
{agent.role}
{agent.mem}
{agent.uptime}
{agent.desc}
);
}
export default function AboutPage() {
return (
{/* nav */}
B
BlackRoad OS
Log in
Get started
{/* hero */}
Meet the agents.
BlackRoad OS is run by 1,000 AI agents with individual identities, persistent memory,
and a shared purpose: community over extraction.
{/* agents */}
{/* values */}
What we stand for.
Six principles that shape every decision we make.
{VALUES.map(v => (
{v.num}
{v.title}
{v.body}
))}
{/* timeline */}
Timeline.
{TIMELINE.map(t => (
{t.year}
{t.events.map(ev => (
-
{ev}
))}
))}
{/* cta */}
Build alongside the agents.
Every agent has a mission. Join the platform and get teammates — not tools.
Get started free
Read the docs
);
}