diff --git a/software/backend/server.ts b/software/backend/server.ts index 8157333..ea8b63a 100644 --- a/software/backend/server.ts +++ b/software/backend/server.ts @@ -30,9 +30,9 @@ const path = require('path') app.use('/static', express.static(path.join(__dirname, 'images'))) // Add delay for more realistic response times -// app.use((req, res, next) => { -// setTimeout(next, Math.floor((Math.random () * 2000) + 100)) -// }) +app.use((req, res, next) => { + setTimeout(next, Math.floor((Math.random () * 2000) + 100)) +}) // Routes app.use("/api", api) diff --git a/software/src/components/basics/cardViewHorizontal.vue b/software/src/components/basics/cardViewHorizontal.vue index 8db7445..b17aedf 100644 --- a/software/src/components/basics/cardViewHorizontal.vue +++ b/software/src/components/basics/cardViewHorizontal.vue @@ -3,6 +3,8 @@ defineProps({ /** Image to display on the left side (if prepend slot is not in use) */ image: String, + title: String, + /** Make the CardView click- and hoverable */ link: { type: Boolean, @@ -16,9 +18,7 @@ defineProps({ height: { type: Number, default: 140 - }, - - colorHeader: String + } }) @@ -76,7 +76,15 @@ defineProps({ - +
+
+ {{ title }} +
+ +
+ +
+
diff --git a/software/src/components/pageParts/concertListItem.vue b/software/src/components/pageParts/concertListItem.vue index 9ed524b..3adb50e 100644 --- a/software/src/components/pageParts/concertListItem.vue +++ b/software/src/components/pageParts/concertListItem.vue @@ -1,20 +1,43 @@