@@ -9,20 +9,17 @@ const HOTELS = [
99 {
1010 name : "Mövenpick Hotel Amsterdam City Centre" ,
1111 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>` ,
1413 } ,
1514 {
1615 name : "Inntel Hotels Amsterdam Landmark" ,
1716 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>` ,
2018 } ,
2119 {
2220 name : "DoubleTree by Hilton Amsterdam Central Station" ,
2321 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>` ,
2623 } ,
2724]
2825
@@ -54,11 +51,11 @@ export function Venue() {
5451 < div className = "grid grid-cols-1 gap-10 md:grid-cols-2" >
5552 < div className = "flex flex-col gap-2" >
5653 < h2 className = "text-3xl" > Conference</ h2 >
57- < p >
54+ < address className = "not-italic" >
5855 < strong > Pakhuis De Zwijger</ strong >
5956 < br /> Piet Heinkade 179, 1019 HC < br />
6057 Amsterdam, Netherlands
61- </ p >
58+ </ address >
6259 < div className = "flex flex-col gap-2" >
6360 < h3 className = "mt-4 text-xl font-semibold" >
6461 How to get to the venue?
@@ -83,18 +80,23 @@ export function Venue() {
8380 </ p >
8481 < div className = "mt-10 flex flex-col gap-4" >
8582 { HOTELS . map ( hotel => (
86- < div key = { hotel . name } >
83+ < address className = "not-italic" key = { hotel . name } >
8784 < strong >
8885 < a
8986 className = "flex items-center gap-1 hover:underline"
87+ target = "_blank"
88+ rel = "noreferrer"
9089 href = { hotel . link }
9190 >
9291 { hotel . name }
9392 < ExternalLink size = { 14 } />
9493 </ a >
9594 </ 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 >
98100 ) ) }
99101 </ div >
100102 </ div >
0 commit comments