// Research DAO Launchpad — IP-token issuance, project funding rounds, vesting. function LaunchpadDapp() { const sidebar = ( <> > ); const projects = [ { id: 'PROT', name: 'Protea — open protein folding', desc: 'Distributed protein structure prediction trained on 14M open sequences.', tag: 'BIO·ML', raised: 0.78, target: '1.2M', tis: 87, days: '3d 4h', tone: 'accent' }, { id: 'CRYO', name: 'CryoLayer Cooperative', desc: 'A self-governing cryopreservation co-op for biosamples & DNA archives.', tag: 'BIOTECH', raised: 0.41, target: '800K', tis: 79, days: '6d', tone: 'info' }, { id: 'ASTR', name: 'AstroGate sleep atlas', desc: 'Multi-lab atlas linking astrocyte signaling to sleep states.', tag: 'NEURO', raised: 0.92, target: '600K', tis: 84, days: '12h', tone: 'warn' }, { id: 'CLIM', name: 'ClimateNote · open eddy data', desc: 'On-chain ingestion of distributed flux towers, paid by access.', tag: 'CLIMATE', raised: 0.34, target: '2.0M', tis: 81, days: '14d', tone: 'default' }, { id: 'PSYC', name: 'PsycRepro cohort', desc: 'A standing rapid-reproduction lab funded by token & access fees.', tag: 'META-SCI', raised: 0.62, target: '420K', tis: 88, days: '8d', tone: 'accent' }, { id: 'DRUG', name: 'Off-patent reformulation DAO', desc: 'Public-domain drug reformulation pipeline, royalty-shared.', tag: 'PHARMA', raised: 0.20, target: '3.6M', tis: 76, days: '21d', tone: 'default' }, ]; return ( Filter by field List a project >} /> {projects.map(p => ( {p.id} {p.tag} closes {p.days} {p.name} {p.desc} RAISED {Math.round(p.raised * 100)}% TARGET {p.target} UBR Read brief Stake ))} ); } window.LaunchpadDapp = LaunchpadDapp;