@@ -11,6 +11,10 @@ export enum SessionType {
1111export type Speaker = {
1212 name : string ;
1313 image : string ;
14+ company ?: {
15+ name : string ;
16+ icon : string ;
17+ } ;
1418} ;
1519
1620export interface Session {
@@ -43,54 +47,106 @@ export const SPEAKERS = {
4347 PATRICK : {
4448 name : "Patrick McCorry" ,
4549 image : "/speakers/patrick.jpg" ,
50+ company : {
51+ name : "Arbitrum" ,
52+ icon : "/companies/arbitrum.svg" ,
53+ } ,
4654 } ,
4755 AUSTIN : {
4856 name : "Austin Griffith" ,
4957 image : "/speakers/austin.png" ,
58+ company : {
59+ name : "Ethereum Foundation" ,
60+ icon : "/companies/ethereum-foundation.png" ,
61+ } ,
5062 } ,
5163 CARLOS : {
5264 name : "Carlos Sánchez" ,
5365 image : "/speakers/carlos.jpg" ,
66+ company : {
67+ name : "BuidlGuidl" ,
68+ icon : "/companies/buidlguidl.svg" ,
69+ } ,
5470 } ,
5571 SHIV : {
5672 name : "Shiv Bhonde" ,
5773 image : "/speakers/shiv.jpeg" ,
74+ company : {
75+ name : "BuidlGuidl" ,
76+ icon : "/companies/buidlguidl.svg" ,
77+ } ,
5878 } ,
5979 PABLO : {
6080 name : "Pablo Alayeto" ,
6181 image : "/speakers/pablo.png" ,
82+ company : {
83+ name : "BuidlGuidl" ,
84+ icon : "/companies/buidlguidl.svg" ,
85+ } ,
6286 } ,
6387 PHILIP : {
6488 name : "Philip Krause" ,
6589 image : "/speakers/philip.png" ,
90+ company : {
91+ name : "BuidlGuidl" ,
92+ icon : "/companies/buidlguidl.svg" ,
93+ } ,
6694 } ,
6795 ELLIOT : {
6896 name : "Elliott Alexander" ,
6997 image : "/speakers/elliott.png" ,
98+ company : {
99+ name : "Ethereum Foundation" ,
100+ icon : "/companies/ethereum-foundation.png" ,
101+ } ,
70102 } ,
71103 HORSEFACTS : {
72104 name : "Horsefacts" ,
73105 image : "/speakers/horsefacts.jpg" ,
106+ company : {
107+ name : "Farcaster" ,
108+ icon : "/companies/farcaster.svg" ,
109+ } ,
74110 } ,
75111 SHYAM : {
76112 name : "Shyam" ,
77113 image : "/speakers/shyam.jpg" ,
114+ company : {
115+ name : "Ethereum Foundation" ,
116+ icon : "/companies/ethereum-foundation.png" ,
117+ } ,
78118 } ,
79119 EDA : {
80120 name : "Eda Akturk" ,
81121 image : "/speakers/eda.jpg" ,
122+ company : {
123+ name : "Hyperlane" ,
124+ icon : "/companies/hyperlane.jpeg" ,
125+ } ,
82126 } ,
83127 KEVIN : {
84128 name : "Kevin Jones" ,
85129 image : "/speakers/kevin.jpg" ,
130+ company : {
131+ name : "Edge & Node" ,
132+ icon : "/companies/edge-and-node.png" ,
133+ } ,
86134 } ,
87135 SPENCER : {
88136 name : "Spencer Faber" ,
89137 image : "/speakers/spencer.jpg" ,
138+ company : {
139+ name : "BuidlGuidl" ,
140+ icon : "/companies/buidlguidl.svg" ,
141+ } ,
90142 } ,
91143 JEFFREY : {
92144 name : "Jeffrey Scholz" ,
93145 image : "/speakers/jeffrey.jpg" ,
146+ company : {
147+ name : "RareSkills" ,
148+ icon : "/companies/rareskills.jpeg" ,
149+ } ,
94150 } ,
95151 NIKOLAI : {
96152 name : "Nikolai" ,
@@ -99,6 +155,10 @@ export const SPEAKERS = {
99155 HUNTER : {
100156 name : "Hunter B." ,
101157 image : "/speakers/hunter.jpg" ,
158+ company : {
159+ name : "Arbitrum" ,
160+ icon : "/companies/arbitrum.svg" ,
161+ } ,
102162 } ,
103163 MONICA : {
104164 name : "Monica Zeng" ,
@@ -107,10 +167,18 @@ export const SPEAKERS = {
107167 DAMU : {
108168 name : "Damian Martinelli" ,
109169 image : "/speakers/damu.jpg" ,
170+ company : {
171+ name : "BuidlGuidl" ,
172+ icon : "/companies/buidlguidl.svg" ,
173+ } ,
110174 } ,
111175 SOPHIA : {
112176 name : "Sophia" ,
113177 image : "/speakers/sophia.jpg" ,
178+ company : {
179+ name : "Celo" ,
180+ icon : "/companies/celo.svg" ,
181+ } ,
114182 } ,
115183} ;
116184
0 commit comments