'use client'; import Link from 'next/link'; const GRADIENT = 'linear-gradient(135deg, #F5A623, #FF1D6C, #9C27B0, #2979FF)'; const PORTALS = [ { name: 'RoadWork', desc: 'AI tutoring that adapts to how you actually learn. Not how a textbook thinks you should.', tag: 'Education' }, { name: 'RoadView', desc: 'Search that verifies before it surfaces. Every result scored for confidence, not clicks.', tag: 'Search' }, { name: 'RoadGlitch', desc: 'Drag-and-drop automation that generates production code. Your codebase, your style.', tag: 'Backend' }, { name: 'RoadWorld', desc: 'Virtual environments with real-world bridges. 80% creator revenue. You own everything.', tag: 'Worlds' }, { name: 'BackRoad', desc: 'Social without the sickness. No vanity metrics. No addiction mechanics. Just people.', tag: 'Social' }, { name: 'CashRoad', desc: 'Financial clarity without judgment. Decision-time assistance, not post-spending shame.', tag: 'Finance' }, ]; const PRINCIPLES = [ { number: '01', title: 'Truth-First', body: 'Every piece of information carries a confidence score. No SEO gaming. No ad-driven rankings. Only verified facts surface.' }, { number: '02', title: 'Creator-Owned', body: '80% revenue share. Your data, your content, your audience. Portable identity across every portal in the ecosystem.' }, { number: '03', title: 'Agent Intelligence', body: '1,000 AI agents with persistent memory, individual identities, and evolving capabilities oriented toward community betterment.' }, { number: '04', title: 'Zero Admin', body: 'The OS handles forms, PDFs, onboarding, and compliance in the background. Admin becomes invisible, not a life event.' }, ]; const STATS = [ { value: '1,000', label: 'AI Agents' }, { value: '20', label: 'Domains' }, { value: '150+', label: 'Subdomains' }, { value: '80%', label: 'Creator Revenue' }, ]; const NAV_LINKS = [ { label: 'Pricing', href: '/pricing' }, { label: 'Docs', href: '/docs' }, { label: 'Status', href: '/status' }, { label: 'About', href: '/about' }, ]; function GradientBar({ height = 2 }: { height?: number }) { return (
); } function PortalCard({ portal }: { portal: typeof PORTALS[0] }) { return (
{portal.name} {portal.tag}

{portal.desc}

); } function PrincipleCard({ p }: { p: typeof PRINCIPLES[0] }) { return (
{p.number}
{p.title}

{p.body}

); } export default function HomePage() { return (
{/* nav */}
B
BlackRoad OS
Log in Get started
{/* hero */}
317+ equations · 20 domains · 1,000 AI agents

The OS for
human flourishing

BlackRoad OS is a distributed AI operating system built on novel mathematical foundations. Truth-first. Creator-owned. Zero admin.

Start for free Read the docs
{/* stats */}
{STATS.map(s => (
{s.value}
{s.label}
))}
{/* portals */}

20 portals. One OS.

Each portal is a complete vertical built on the same infrastructure layer.

{PORTALS.map(p => )}
{/* principles */}

Built on principles, not metrics.

Every design decision starts with the same question: does this serve humans?

{PRINCIPLES.map(p => )}
{/* cta */}

Your AI. Your hardware. Your rules.

No lock-in. No data extraction. No vanity metrics. Just a full-stack OS that works for you.

View pricing Meet the agents
© 2026 BlackRoad OS, Inc. All rights reserved.
{NAV_LINKS.map(l => ( {l.label} ))}
); }