Skip to content

Commit dcccf80

Browse files
committed
Small adjustments and fixes
1 parent 70e5883 commit dcccf80

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

src/components/XT25Agenda.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ const agenda = [
4343
},
4444
{
4545
time: '11:40',
46-
title: 'TBC',
46+
title: 'Talk Title Coming Soon',
4747
subTitle: [
48-
'Samantha Reiss Gibson | S&P Global | Managing Director /',
48+
'Samantha Reiss Gibson | S&P Global | Managing Director',
4949
' VP, Head of Product - Public Markets, Regulatory & Compliance, Data Science'
5050
]
5151
},

src/components/XT25Page.astro

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,15 @@ const { contactSubject } = Astro.props
169169
</div>
170170
<div class='w-2/3 md:w-3/5 p-4 flex flex-col justify-center text-white'>
171171
<h3 class='font-bold text-lg md:text-xl mb-4'>{name}</h3>
172-
<p class='text-sm md:text-base font-medium mb-4'>{role}</p>
172+
{Array.isArray(role) ? (
173+
role.map((line) => (
174+
<p class='text-sm md:text-base font-medium mb-1'>
175+
{line}
176+
</p>
177+
))
178+
) : (
179+
<p class='text-sm md:text-base font-medium mb-4'>{role}</p>
180+
)}
173181
{company && (
174182
<p class='font-bold text-sm md:text-base'>{company}</p>
175183
)}

src/data/xt25/speakers.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[
22
{
33
"name": "Peter Windle",
4-
"role": "Distinguished Engineer, Managing Director, Head of FICC IT Architecture and Engineering",
4+
"role": [
5+
"Distinguished Engineer, Managing Director",
6+
"Head of FICC IT Architecture and Engineering"
7+
],
58
"company": "HSBC",
69
"linkedin": "pete-windle-05ba92",
710
"image": "/src/assets/xt25/xt25-pew.png"
@@ -43,7 +46,10 @@
4346
},
4447
{
4548
"name": "Samantha Reiss Gibson",
46-
"role": "Managing Director / VP, Head of Product - Public Markets, Regulatory & Compliance, Data Science",
49+
"role": [
50+
"Managing Director / VP",
51+
"Head of Product - Public Markets, Regulatory & Compliance, Data Science"
52+
],
4753
"company": "S&P Global",
4854
"linkedin": "samantha-reiss-gibson",
4955
"image": "/src/assets/xt25/xt25-srg.jpg"

0 commit comments

Comments
 (0)