// Traylor-themed content for the Proxa hub POC. const TRAYLOR_STATS = [ { key: 'all', num: 248, label: 'Total Items' }, { key: 'col', num: 14, label: 'Projects' }, { key: 'rec', num: 86, label: 'Records' }, { key: 'doc', num: 42, label: 'Docs' }, { key: 'ws', num: 11, label: 'Worksheets' }, { key: 'img', num: 53, label: 'Images' }, { key: 'other', num: 36, label: 'Other files' }, { key: 'kb', num: 119, label: 'In KB' }, ]; // type: doc | ws | rec | img | other (matches design system pill colors) const TRAYLOR_ITEMS = [ { id: 1, name: 'Cedar Narrows Water Supply Tunnel — TBM daily log', type: 'rec', coll: 'Cedar Narrows WST', updated: '12m ago', owner: 'M. Reyes' }, { id: 2, name: 'RFI #214 — Segment ring tolerance', type: 'doc', coll: 'Cedar Narrows WST', updated: '1h ago', owner: 'J. Carter' }, { id: 3, name: 'Q1 2026 cost-to-complete forecast', type: 'ws', coll: 'Finance', updated: '2h ago', owner: 'A. Patel' }, { id: 4, name: 'Chesapeake Bay Bridge-Tunnel — geotech report', type: 'doc', coll: 'CBBT Parallel', updated: 'Yesterday',owner: 'L. Nguyen' }, { id: 5, name: 'Site walk — North shaft, Apr 22', type: 'rec', coll: 'Cedar Narrows WST', updated: 'Yesterday',owner: 'M. Reyes' }, { id: 6, name: 'Crew shift schedule — May', type: 'ws', coll: 'Operations', updated: 'Apr 22', owner: 'D. Hayes' }, { id: 7, name: 'TBM cutterhead inspection.png', type: 'img', coll: 'Cedar Narrows WST', updated: 'Apr 21', owner: 'M. Reyes' }, { id: 8, name: 'Submittal — grout mix design rev 3', type: 'doc', coll: 'Cedar Narrows WST', updated: 'Apr 21', owner: 'L. Nguyen' }, { id: 9, name: 'Owner call — Metro Vancouver, Apr 18', type: 'rec', coll: 'Cedar Narrows WST', updated: 'Apr 18', owner: 'D. Hayes' }, { id: 10, name: 'Safety incident report — minor, Pier 3', type: 'doc', coll: 'CBBT Parallel', updated: 'Apr 17', owner: 'J. Carter' }, { id: 11, name: 'Equipment hours log — March', type: 'ws', coll: 'Operations', updated: 'Apr 15', owner: 'A. Patel' }, { id: 12, name: 'Tunnel face photo — STA 12+450', type: 'img', coll: 'Cedar Narrows WST', updated: 'Apr 14', owner: 'M. Reyes' }, { id: 13, name: 'Subcontractor scope — Aecon mech', type: 'doc', coll: 'Cedar Narrows WST', updated: 'Apr 12', owner: 'L. Nguyen' }, { id: 14, name: 'Weekly progress meeting — Apr 11', type: 'rec', coll: 'Cedar Narrows WST', updated: 'Apr 11', owner: 'D. Hayes' }, { id: 15, name: 'Fort Lauderdale Tunnel — pursuit memo', type: 'doc', coll: 'Pursuits', updated: 'Apr 10', owner: 'A. Patel' }, ]; const TYPE_LABELS = { doc: 'Doc', ws: 'Worksheet', rec: 'Record', img: 'Image', other: 'Other' }; const TYPE_ICONS = { doc: 'IconDoc', ws: 'IconSheet', rec: 'IconRecord', img: 'IconImage', other: 'IconFile' }; Object.assign(window, { TRAYLOR_STATS, TRAYLOR_ITEMS, TYPE_LABELS, TYPE_ICONS });