Skip to content

Commit 41449b5

Browse files
committed
venue updates
1 parent 08063a2 commit 41449b5

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

src/app/conf/2025/venue.tsx

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {
44
SquareParking,
55
TicketsPlane,
66
} from "lucide-react"
7+
import Link from "next/link"
78

89
const HOTELS = [
910
{
@@ -38,8 +39,7 @@ const HOW_TO_GET_TO_VENUE = [
3839
},
3940
{
4041
title: "Parking at venue",
41-
description:
42-
"Limited parking is available at the venue. We recommend using public transportation when possible.",
42+
description: `Limited parking is available at the venue. We recommend using public transportation when possible. Learn more about parking at <a class="hover:text-primary underline" href="https://dezwijger.nl/about-us-en/contact" target="_blank">Pakhuis de Zwijger</a>. If you require an accessible parking spot, park at Vriesseveem 4 or Withoedenveem 16 where you can park if you have a Disability Parking Card.`,
4343
icon: <SquareParking size={20} />,
4444
},
4545
]
@@ -52,7 +52,15 @@ export function Venue() {
5252
<div className="flex flex-col gap-2">
5353
<h2 className="text-3xl">Conference</h2>
5454
<address className="not-italic">
55-
<strong>Pakhuis De Zwijger</strong>
55+
<strong>
56+
<Link
57+
className="underline hover:text-primary"
58+
target="_blank"
59+
href="https://dezwijger.nl/"
60+
>
61+
Pakhuis De Zwijger
62+
</Link>
63+
</strong>
5664
<br /> Piet Heinkade 179, 1019 HC <br />
5765
Amsterdam, Netherlands
5866
</address>
@@ -66,7 +74,12 @@ export function Venue() {
6674
{icon}
6775
<h5 className="text-lg">{title}</h5>
6876
</div>
69-
<p className="ml-9 max-w-96">{description}</p>
77+
<p
78+
className="ml-9 max-w-96"
79+
dangerouslySetInnerHTML={{
80+
__html: description,
81+
}}
82+
/>
7083
</div>
7184
))}
7285
</div>

0 commit comments

Comments
 (0)