'use client'; import { useState } from 'react'; import { Building2, ExternalLink, Users, GitBranch, Lock, Globe } from 'lucide-react'; const ORGS = [ { name: 'BlackRoad-OS-Inc', repos: 7, private: true, focus: 'Corporate core', color: '#FF1D6C' }, { name: 'BlackRoad-OS', repos: 1332, private: false, focus: 'Core platform', color: '#2979FF' }, { name: 'blackboxprogramming', repos: 68, private: false, focus: 'Personal SDKs', color: '#9C27B0' }, { name: 'BlackRoad-AI', repos: 52, private: false, focus: 'AI/ML stack', color: '#F5A623' }, { name: 'BlackRoad-Cloud', repos: 30, private: false, focus: 'Infrastructure', color: '#2979FF' }, { name: 'BlackRoad-Security', repos: 30, private: false, focus: 'Security tools', color: '#FF1D6C' }, { name: 'BlackRoad-Foundation', repos: 30, private: false, focus: 'CRM/projects', color: '#9C27B0' }, { name: 'BlackRoad-Hardware', repos: 30, private: false, focus: 'IoT/hardware', color: '#F5A623' }, { name: 'BlackRoad-Media', repos: 29, private: false, focus: 'Social/content', color: '#FF1D6C' }, { name: 'BlackRoad-Interactive', repos: 29, private: false, focus: 'Games/graphics', color: '#2979FF' }, { name: 'BlackRoad-Education', repos: 24, private: false, focus: 'Learning', color: '#9C27B0' }, { name: 'BlackRoad-Gov', repos: 23, private: false, focus: 'Governance', color: '#F5A623' }, { name: 'Blackbox-Enterprises', repos: 21, private: false, focus: 'Enterprise', color: '#FF1D6C' }, { name: 'BlackRoad-Archive', repos: 21, private: false, focus: 'Archival', color: '#2979FF' }, { name: 'BlackRoad-Labs', repos: 20, private: false, focus: 'Research', color: '#9C27B0' }, { name: 'BlackRoad-Studio', repos: 19, private: false, focus: 'Creative tools', color: '#F5A623' }, { name: 'BlackRoad-Ventures', repos: 17, private: false, focus: 'Investment', color: '#FF1D6C' }, ]; export default function OrgsPage() { const [search, setSearch] = useState(''); const filtered = ORGS.filter(o => o.name.toLowerCase().includes(search.toLowerCase()) || o.focus.toLowerCase().includes(search.toLowerCase())); const total = ORGS.reduce((s, o) => s + o.repos, 0); return (

Organizations

{ORGS.length} organizations · {total.toLocaleString()} repositories

setSearch(e.target.value)} className="px-3 py-2 bg-gray-800 border border-gray-700 rounded-lg text-sm focus:outline-none focus:border-pink-500 w-48" />
{filtered.map(org => (
{org.private ? : }

{org.name}

{org.focus}

{org.repos.toLocaleString()} repos {org.private ? 'Private' : 'Public'}
))}

© BlackRoad OS, Inc. — All {ORGS.length} organizations and {total.toLocaleString()} repositories are proprietary.

); }