// System Map — bird's-eye visualization of how the dapps interconnect.
function SystemMap() {
return (
UNBLOCK RESEARCH · ECOSYSTEM ARCHITECTURE
One platform. Eleven dapps. One token.
Each surface below opens to a working interface. The Personal Dapp (UBP) is the entry point — every other dapp authenticates through it.
{/* Application layer */}
{[
['UBP', 'Personal Dapp', 'identity · workspace'],
['LAB', 'Open Labbook', 'collab · git for science'],
['PUB', 'Publication', 'review · royalties'],
['INST', 'Institution / Grant DAO', 'funding · milestones'],
['LP', 'DAO Launchpad', 'IP-tokens · vesting'],
['TRID', 'Trust + Reputation + Identity', 'TIS v3 · SBTs'],
['CMP', 'Compute Marketplace', 'GPU bidding · ZK exec'],
['STR', 'Decentralized Storage', 'IPFS · pay-per-query'],
['CHN', 'UB-Chain Explorer', 'L1 · Cerberus shards'],
['DAPP', 'Dapp Store', 'extensions · audited'],
].map(([id, n, sub]) => (
))}
{[
['DID + ZKP + SBT', 'Decentralized identifiers, zero-knowledge proofs, soulbound tokens.'],
['UBR token', 'Utility + governance. Fees, bounties, royalties, staking.'],
['Smart contracts', 'Royalty splits, vesting, milestones, repro pools — auto-executed.'],
].map(([k, v]) => (
))}
{[
['CONSENSUS', 'Cerberus BFT · 8 shards · 500 ms blocks · 980 ms finality'],
['EXECUTION', 'Custom EVM · optimistic parallel · async I/O · 100K+ TPS'],
['COMPUTE NODES', 'GPU/CPU · ZK-verified · spot market + reserved tiers'],
['STORAGE NODES', 'IPFS clusters · encrypted shards · FAIR-compliant'],
].map(([k, v]) => (
))}
{/* Footer note */}
↳ DRAG BELOW TO REORDER ARTBOARDS · CLICK A LABEL TO FOCUS FULLSCREEN · ESC TO RETURN
UNBLOCK RESEARCH ALLIANCE · v0.4 · 2026
);
}
function Section({ title, children, flex }) {
return (
);
}
window.SystemMap = SystemMap;