From f7ba6bdc5bac76b57e219d5fa6e4117d0fbdf933 Mon Sep 17 00:00:00 2001 From: rasmus Date: Thu, 13 Mar 2025 10:33:24 +0100 Subject: [PATCH] Changed a bit --- src/components/Home.vue | 4 +- src/components/Tours/Eight.vue | 7 ++++ src/components/Tours/Eleven.vue | 62 +++++++++++++++++++++++++++++++ src/components/Tours/Fourteen.vue | 28 ++++++++++++++ src/components/Tours/Nine.vue | 21 +++++++++++ src/components/Tours/Seven.vue | 49 +++++++++++++++++++++++- src/components/Tours/Six.vue | 3 -- src/components/Tours/Ten.vue | 29 +++++++++++++++ src/components/Tours/Twelve.vue | 24 ++++++++++++ src/components/Tours/thirteen.vue | 29 +++++++++++++++ src/main.ts | 12 ++++++ 11 files changed, 261 insertions(+), 7 deletions(-) create mode 100644 src/components/Tours/Eleven.vue create mode 100644 src/components/Tours/Fourteen.vue create mode 100644 src/components/Tours/Nine.vue create mode 100644 src/components/Tours/Ten.vue create mode 100644 src/components/Tours/Twelve.vue create mode 100644 src/components/Tours/thirteen.vue 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 @@ \ 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 @@ + + + \ 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 @@ + + + \ 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 @@ + + + \ 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 @@ + + + \ 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 @@ + + + \ 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 @@ + + + \ 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}, ] })