diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..7a73a41
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,2 @@
+{
+}
\ No newline at end of file
diff --git a/src/components/workshop-schedule-item.astro b/src/components/workshop-schedule-item.astro
new file mode 100644
index 0000000..7b1eda2
--- /dev/null
+++ b/src/components/workshop-schedule-item.astro
@@ -0,0 +1,34 @@
+---
+interface Props {
+ name: string;
+ author: string;
+ span: number;
+ link?: string;
+ on: boolean;
+}
+
+const { name, author, span, link, on } = Astro.props;
+---
+
+
+ {name} - {author}
+
+
+
diff --git a/src/pages/directions.md b/src/pages/directions.md
new file mode 100644
index 0000000..bb2cdd7
--- /dev/null
+++ b/src/pages/directions.md
@@ -0,0 +1,68 @@
+---
+layout: "../layouts/PageLayout.astro"
+title: "Getting to the Venue"
+---
+
+# Address
+
+Lijm en Cultuur
+Rotterdamseweg 272
+2628 AT, Delft
+
+Phone: +31 15 262 94 00
+info@lijmencultuur.nl
+
+
+
+# By public transport (recomended)
+
+## Arriving from Rotterdam
+
+*From Delft Station:* (recommended)
+
+Take bus 69, 174 or 50. Get off at the TU-Mekelpark stop.
+
+* Continue walking along the Cornelis Drebbelweg
+* At the end, turn left onto Rotterdamseweg
+* After 200m you will see the entrance gate to the Lijm & Cultuur site.
+
+Note that you can also walk this distance, along the "Schie" canal, which is quite pretty. This takes about 15 minutes.
+
+*From Delft Campus Station:*
+
+* Take the stairs that lead onto the viaduct (Kruithuisweg) and walk left.
+* After 600 meters, take the stairs on the left down to Rotterdamseweg
+* At the bottom of the stairs, turn right along Rotterdamseweg
+* After 500 meters you will see the entrance gate of Lijm & Cultuur on your left side.
+
+## Arriving from Amsterdam/ The Hague
+
+Delft Campus Station:
+See walking directions ‘arriving from Rotterdam’.
+
+Delft Station:
+
+Take bus 69, 174 or 50. Get off at the TU-Mekelpark stop.
+See walking directions ‘arriving from Rotterdam.
+
+
+
+# By car
+
+## Arriving from Rotterdam:
+
+Take exit 10 from the A13 (N470, Delft-Zuid) and continue in the direction TU Delft:
+
+* After taking the roundabout, take the first exit: "TU Delft – Delft tech park".
+* At the end of the exit turn left (Schoemakersstraat) in the direction P Rotterdamseweg.
+* Continue straight after under passing the viaduct (Uytenbogaartsingel).
+* Turn right after 500 meters (Heertjeslaan) and follow the signs for Industrieterrein Rotterdamseweg.
+* After 600 meters turn right (Rotterdamseweg)
+* After 1000 meter you can enter the Lijm & Cultuur terrain on the left side.
+
+## Arriving from Amsterdam / The Hague
+
+Take exit 10 from the A13 (N470, Delft Zuid).
+
+* At the traffic lights take a right turn for "TU Delft – Delft tech park".
+* From here continue as per the directions "arriving from Rotterdam".
\ No newline at end of file