diff --git a/components/Services/Services.vue b/components/Services/Services.vue
index 1ac9ca0..81e568a 100644
--- a/components/Services/Services.vue
+++ b/components/Services/Services.vue
@@ -27,11 +27,13 @@
Doch auch wenn ich mal voll ausgelastet bin - keine Sorge!
Mein Netzwerk an Profis kann dir sicher auch weiterhelfen.
-
-
+
@@ -83,7 +85,13 @@ const services = [
}
]
-const network = [
+
+const shuffle =
(unshuffled : T[]) => unshuffled
+ .map(value => ({ value, sort: Math.random() }))
+ .sort((a, b) => a.sort - b.sort)
+ .map(({ value }) => value)
+
+const network = shuffle([
{
name: 'Robert Janus',
img: '/img/network/robert.jpg',
@@ -109,5 +117,5 @@ const network = [
flavour: 'Effizient und kommunikativ. "You build it, you run it."',
link: 'https://masagu.dev',
},
-]
+])