File tree Expand file tree Collapse file tree 3 files changed +35
-0
lines changed
Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ interface EventData {
1414 date : string ;
1515 salutaion ?: string ;
1616 speakers ?: Speaker [ ] ;
17+ partners ?: { name : string ; role : string } [ ] ;
1718 price ?: string [ ] ;
1819 form ?: boolean ;
1920 formLink ?: string ;
@@ -88,6 +89,21 @@ const EventDatas: EventData[] = [
8889 formLink : "" ,
8990 src : `${ basePath } event_tickets.webp` ,
9091 } ,
92+ {
93+ id : 2 ,
94+ title : "Venue Partner Announced" ,
95+ eventName : "Venue Partner" ,
96+ type : "Venue" ,
97+ venue : "Kottayam" ,
98+ date : "2025-09-26 to 2025-09-28" ,
99+ partners : [
100+ {
101+ name : "Hotel Floral Park" ,
102+ role : "Venue Partner for RoboIgnite 2025" ,
103+ } ,
104+ ] ,
105+ src : `${ basePath } venue.webp` ,
106+ } ,
91107 {
92108 id : 4 ,
93109 title : "Expert Talk – The Growing Field of Robotics and Its Opportunities" ,
Original file line number Diff line number Diff line change @@ -82,6 +82,25 @@ const Events = () => {
8282 </ div >
8383 </ div >
8484 </ div >
85+ { /* Venue / Partners */ }
86+ { ! ! event . partners && (
87+ < div
88+ className = "flex items-start gap-3 p-4 rounded-xl backdrop-blur-sm bg-white/10 hover:bg-white/15 transition-all duration-300" >
89+ < MapPin className = "w-5 h-5 text-blue-300 flex-shrink-0 mt-0.5" />
90+ < div className = "flex flex-col gap-2" >
91+ { event . partners . map ( ( partner , idx ) => (
92+ < div key = { idx } className = "flex flex-col" >
93+ < span className = "text-sm font-semibold text-gray-100" >
94+ { partner . name }
95+ </ span >
96+ < span className = "text-sm text-gray-300" >
97+ { partner . role }
98+ </ span >
99+ </ div >
100+ ) ) }
101+ </ div >
102+ </ div >
103+ ) }
85104
86105 < div className = "flex flex-col gap-y-3 mb-5" >
87106 { /* Speakers */ }
You can’t perform that action at this time.
0 commit comments