|
| 1 | +--- |
| 2 | +const agenda = [ |
| 3 | + { |
| 4 | + time: '08:30', |
| 5 | + title: 'Registration and Morning Refreshments', |
| 6 | + isSpecialEvent: true |
| 7 | + }, |
| 8 | + { |
| 9 | + time: '09:00', |
| 10 | + title: 'Welcome to XT25', |
| 11 | + subTitle: 'Malcolm Sparks | JUXT | CTO & Founder', |
| 12 | + isSpecialEvent: true |
| 13 | + }, |
| 14 | + { |
| 15 | + time: '09:20', |
| 16 | + title: 'Risk Factors and Data Lineage in Derivative Pricing', |
| 17 | + subTitle: |
| 18 | + 'Charlie Browne | GoldenSource | Head of Market Data, Quant & Risk Solutions' |
| 19 | + }, |
| 20 | + { |
| 21 | + time: '09:50', |
| 22 | + title: 'Unlocking Success: Navigating Tech Projects in Investment Banking', |
| 23 | + subTitle: |
| 24 | + 'Jing Ai | Global Tier-1 Bank | Director - Equity Derivatives Platform' |
| 25 | + }, |
| 26 | + { |
| 27 | + time: '10:20', |
| 28 | + title: "7 Patterns of Revolut's Software Success", |
| 29 | + subTitle: 'Donato Lucia | Revolut | Head of Platform' |
| 30 | + }, |
| 31 | + { |
| 32 | + time: '10:50', |
| 33 | + title: 'Coffee and Networking', |
| 34 | + isSpecialEvent: true |
| 35 | + }, |
| 36 | + { |
| 37 | + time: '11:10', |
| 38 | + title: 'Taking Control of Your Trading System', |
| 39 | + subTitle: [ |
| 40 | + 'Peter Windle | HSBC | Distinguished Engineer, Managing Director', |
| 41 | + 'Head of FICC IT Architecture & Engineering' |
| 42 | + ] |
| 43 | + }, |
| 44 | + { |
| 45 | + time: '11:40', |
| 46 | + title: 'Talk Title Coming Soon', |
| 47 | + subTitle: [ |
| 48 | + 'Samantha Reiss Gibson | S&P Global | Managing Director', |
| 49 | + ' VP, Head of Product - Public Markets, Regulatory & Compliance, Data Science' |
| 50 | + ] |
| 51 | + }, |
| 52 | + { |
| 53 | + time: '12:10', |
| 54 | + title: |
| 55 | + 'From Unstructured to Actionable: AI-Powered Regulatory Intelligence', |
| 56 | + subTitle: 'Henry Garner | JUXT | Principal Engineer & AI Chapter Lead' |
| 57 | + }, |
| 58 | + { |
| 59 | + time: '12:40', |
| 60 | + title: 'Lunch', |
| 61 | + isSpecialEvent: true |
| 62 | + }, |
| 63 | + { |
| 64 | + time: '13:45', |
| 65 | + title: 'XTDB Lightning Talk', |
| 66 | + isSpecialEvent: false |
| 67 | + }, |
| 68 | + { |
| 69 | + time: '14:00', |
| 70 | + title: 'Why Banks Are Building Sequencer Architectures', |
| 71 | + subTitle: 'Dave Clack | Adaptive Financial Consulting | CPO' |
| 72 | + }, |
| 73 | + { |
| 74 | + time: '14:30', |
| 75 | + title: |
| 76 | + "Becoming a Digital Retail Bank: What We've Learned on Kroo's Journey", |
| 77 | + subTitle: 'Alexey Gabsatarov | Kroo Bank | CTO' |
| 78 | + }, |
| 79 | + { |
| 80 | + time: '15:00', |
| 81 | + title: 'Coffee and Networking', |
| 82 | + isSpecialEvent: true |
| 83 | + }, |
| 84 | + { |
| 85 | + time: '15:20', |
| 86 | + title: 'Pragmatic Solutions to Extreme Fintech Challenges - Expert Panel', |
| 87 | + subTitle: [], |
| 88 | + isSpecialEvent: false |
| 89 | + }, |
| 90 | + { |
| 91 | + time: '16:20', |
| 92 | + title: 'Risk-First Software Development', |
| 93 | + subTitle: 'Rob Moffat | FINOS | Senior Technical Architect' |
| 94 | + }, |
| 95 | + { |
| 96 | + time: '16:50', |
| 97 | + title: 'XT25 Wrap Up', |
| 98 | + subTitle: 'Jon Pither | JUXT | CEO & Founder', |
| 99 | + isSpecialEvent: true |
| 100 | + }, |
| 101 | + { |
| 102 | + time: '17:00', |
| 103 | + title: 'Evening Reception', |
| 104 | + subTitle: 'Canapés, Drinks, Networking', |
| 105 | + isSpecialEvent: true |
| 106 | + } |
| 107 | +] |
| 108 | +--- |
| 109 | + |
| 110 | +{ |
| 111 | + agenda.map(({ time, title, subTitle, isSpecialEvent }, index) => { |
| 112 | + // Check if this item and the next item are both special events |
| 113 | + const nextItem = index < agenda.length - 1 ? agenda[index + 1] : null |
| 114 | + const isConsecutiveSpecialEvent = isSpecialEvent && nextItem?.isSpecialEvent |
| 115 | + |
| 116 | + return ( |
| 117 | + <div> |
| 118 | + <div |
| 119 | + class:list={[ |
| 120 | + 'grid grid-cols-1 sm:grid-cols-5 sm:divide-x sm:divide-juxt', |
| 121 | + { 'bg-zinc-900': !isSpecialEvent, 'bg-[#2f2f2f]': isSpecialEvent } |
| 122 | + ]} |
| 123 | + > |
| 124 | + <p class='px-5 pt-5 sm:p-5 font-semibold text-lg align-text-top text-center text-white'> |
| 125 | + {time} |
| 126 | + </p> |
| 127 | + <div class='px-5 pb-5 sm:p-5 sm:col-span-4'> |
| 128 | + <h2 class='font-bold text-2xl text-juxt'>{title}</h2> |
| 129 | + {subTitle && |
| 130 | + (Array.isArray(subTitle) ? subTitle : [subTitle]).map((s) => ( |
| 131 | + <p class='font-light text-sl text-white'>{s}</p> |
| 132 | + ))} |
| 133 | + </div> |
| 134 | + </div> |
| 135 | + |
| 136 | + {/* Add a small gap if this is a special event followed by another special event */} |
| 137 | + {isConsecutiveSpecialEvent && <div class='h-4' />} |
| 138 | + </div> |
| 139 | + ) |
| 140 | + }) |
| 141 | +} |
0 commit comments