diff --git a/src/components/Home.vue b/src/components/Home.vue
index 208dd25..e467a6b 100644
--- a/src/components/Home.vue
+++ b/src/components/Home.vue
@@ -9,9 +9,9 @@ import Card from "./Tags/Card.vue";
Ride To Kerteminde
Ride To Faaborg
- Just A normal Ride
+ Just A Normal Ride
Ride To Flyvesandet
- Ride To Lindøhoved
+ Ride To Lindøhoved
First Of The Year
Staircase To Nowhere?
Long Ride
diff --git a/src/components/Tours/Eight.vue b/src/components/Tours/Eight.vue
index 9f737a1..962fb64 100644
--- a/src/components/Tours/Eight.vue
+++ b/src/components/Tours/Eight.vue
@@ -3,5 +3,12 @@
+ Staircase To Nowhere?
+ 2023-09-10 08∶43
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Tours/Eleven.vue b/src/components/Tours/Eleven.vue
new file mode 100644
index 0000000..87131d6
--- /dev/null
+++ b/src/components/Tours/Eleven.vue
@@ -0,0 +1,62 @@
+
+
+
+ Ride To Flyvesandet
+ 2024-07-19 06∶50
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Tours/Fourteen.vue b/src/components/Tours/Fourteen.vue
new file mode 100644
index 0000000..03817d5
--- /dev/null
+++ b/src/components/Tours/Fourteen.vue
@@ -0,0 +1,28 @@
+
+
+
+ Ride To Kerteminde
+ 2024-09-29 08∶20
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Tours/Nine.vue b/src/components/Tours/Nine.vue
new file mode 100644
index 0000000..11409ff
--- /dev/null
+++ b/src/components/Tours/Nine.vue
@@ -0,0 +1,21 @@
+
+
+
+ First Of The Year
+ 2024-05-08 10∶19
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Tours/Seven.vue b/src/components/Tours/Seven.vue
index c42db42..9055719 100644
--- a/src/components/Tours/Seven.vue
+++ b/src/components/Tours/Seven.vue
@@ -8,8 +8,53 @@
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Tours/Six.vue b/src/components/Tours/Six.vue
index f0c8154..be081ec 100644
--- a/src/components/Tours/Six.vue
+++ b/src/components/Tours/Six.vue
@@ -15,9 +15,6 @@
-
-
-
diff --git a/src/components/Tours/Ten.vue b/src/components/Tours/Ten.vue
new file mode 100644
index 0000000..8a7cdae
--- /dev/null
+++ b/src/components/Tours/Ten.vue
@@ -0,0 +1,29 @@
+
+
+
+ Ride To Lindøhoved
+ 2024-07-11 07∶20
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Tours/Twelve.vue b/src/components/Tours/Twelve.vue
new file mode 100644
index 0000000..316fc6f
--- /dev/null
+++ b/src/components/Tours/Twelve.vue
@@ -0,0 +1,24 @@
+
+
+
+ Just A normal Ride
+ 2024-08-03 06∶50
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Tours/thirteen.vue b/src/components/Tours/thirteen.vue
new file mode 100644
index 0000000..016e84a
--- /dev/null
+++ b/src/components/Tours/thirteen.vue
@@ -0,0 +1,29 @@
+
+
+
+ Ride To Faaborg
+ 2024-08-31 08∶00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/main.ts b/src/main.ts
index 290aa7a..96911e7 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -13,6 +13,12 @@ import Five from "./components/Tours/Five.vue";
import Six from "./components/Tours/Six.vue";
import Seven from "./components/Tours/Seven.vue";
import Eight from "./components/Tours/Eight.vue";
+import Nine from "./components/Tours/Nine.vue";
+import Ten from "./components/Tours/Ten.vue";
+import Eleven from "./components/Tours/Eleven.vue";
+import Twelve from "./components/Tours/Twelve.vue";
+import Thirteen from "./components/Tours/thirteen.vue";
+import Fourteen from "./components/Tours/Fourteen.vue";
const router = createRouter({
history: createWebHistory(),
@@ -28,6 +34,12 @@ const router = createRouter({
{path: '/Tours/6', name: '6', component: Six},
{path: '/Tours/7', name: '7', component: Seven},
{path: '/Tours/8', name: '8', component: Eight},
+ {path: '/Tours/9', name: '9', component: Nine},
+ {path: '/Tours/10', name: '10', component: Ten},
+ {path: '/Tours/11', name: '11', component: Eleven},
+ {path: '/Tours/12', name: '12', component: Twelve},
+ {path: '/Tours/13', name: '13', component: Thirteen},
+ {path: '/Tours/14', name: '14', component: Fourteen},
]
})