@@ -9,20 +9,17 @@ const HOTELS = [
9
9
{
10
10
name : "Mövenpick Hotel Amsterdam City Centre" ,
11
11
link : "https://movenpick.accor.com/en/europe/netherlands/amsterdam/hotel-amsterdam.html?utm_source=google&utm_medium=local&utm_campaign=hotel-MHR-Amsterdam-city-center&y_source=1_MTUzNjI2OTgtNzE1LWxvY2F0aW9uLndlYnNpdGU%3D" ,
12
- description :
13
- "Piet Heinkade 11\n1019 BR Amsterdam, Netherlands\nPhone: +31 20 519 1200" ,
12
+ description : `Piet Heinkade 11\n1019 BR Amsterdam, Netherlands\nPhone: <a class="hover:text-primary underline" href="tel:+31 20 519 1200">+31 20 519 1200</a>` ,
14
13
} ,
15
14
{
16
15
name : "Inntel Hotels Amsterdam Landmark" ,
17
16
link : "https://www.inntelhotelsamsterdamlandmark.nl/" ,
18
- description :
19
- "VOC-kade 600\n1018 LG Amsterdam, Netherlands\n Phone: +31 20 227 2550" ,
17
+ description : `VOC-kade 600\n1018 LG Amsterdam, Netherlands\n Phone: <a class="hover:text-primary underline" href="tel:+31 20 227 2550">+31 20 227 2550</a>` ,
20
18
} ,
21
19
{
22
20
name : "DoubleTree by Hilton Amsterdam Central Station" ,
23
21
link : "https://www.hilton.com/en/hotels/amscsdi-doubletree-amsterdam-centraal-station/?SEO_id=GMB-EMEA-DI-AMSCSDI" ,
24
- description :
25
- "Oosterdoksstraat 4 \n1011 DK Amsterdam, Netherlands\nPhone: +31 20 530 0800" ,
22
+ description : `Oosterdoksstraat 4 \n1011 DK Amsterdam, Netherlands\nPhone: <a class="hover:text-primary underline" href="tel:+31 20 530 0800">+31 20 530 0800</a>` ,
26
23
} ,
27
24
]
28
25
@@ -54,11 +51,11 @@ export function Venue() {
54
51
< div className = "grid grid-cols-1 gap-10 md:grid-cols-2" >
55
52
< div className = "flex flex-col gap-2" >
56
53
< h2 className = "text-3xl" > Conference</ h2 >
57
- < p >
54
+ < address className = "not-italic" >
58
55
< strong > Pakhuis De Zwijger</ strong >
59
56
< br /> Piet Heinkade 179, 1019 HC < br />
60
57
Amsterdam, Netherlands
61
- </ p >
58
+ </ address >
62
59
< div className = "flex flex-col gap-2" >
63
60
< h3 className = "mt-4 text-xl font-semibold" >
64
61
How to get to the venue?
@@ -83,18 +80,23 @@ export function Venue() {
83
80
</ p >
84
81
< div className = "mt-10 flex flex-col gap-4" >
85
82
{ HOTELS . map ( hotel => (
86
- < div key = { hotel . name } >
83
+ < address className = "not-italic" key = { hotel . name } >
87
84
< strong >
88
85
< a
89
86
className = "flex items-center gap-1 hover:underline"
87
+ target = "_blank"
88
+ rel = "noreferrer"
90
89
href = { hotel . link }
91
90
>
92
91
{ hotel . name }
93
92
< ExternalLink size = { 14 } />
94
93
</ a >
95
94
</ strong >
96
- < p className = "whitespace-pre-wrap" > { hotel . description } </ p >
97
- </ div >
95
+ < span
96
+ className = "whitespace-pre-wrap"
97
+ dangerouslySetInnerHTML = { { __html : hotel . description } }
98
+ />
99
+ </ address >
98
100
) ) }
99
101
</ div >
100
102
</ div >
0 commit comments