+
{{ ampelStatusEmoji }}
diff --git a/legalconsenthub/pages/index.vue b/legalconsenthub/pages/index.vue
index 3637db9..5b101c8 100644
--- a/legalconsenthub/pages/index.vue
+++ b/legalconsenthub/pages/index.vue
@@ -19,33 +19,57 @@
-
-
+
-
-
-
- #{{ index }} {{ applicationFormElem.name }}
-
-
- Zuletzt bearbeitet: {{ formatDate(applicationFormElem.modifiedAt) }}
-
-
Erstellt: {{ formatDate(applicationFormElem.createdAt) }}
-
-
-
-
+
+
+ #{{ index }} {{ applicationFormElem.name }}
+
+
+ Zuletzt bearbeitet: {{ formatDate(applicationFormElem.modifiedAt) }}
+
+
Erstellt: {{ formatDate(applicationFormElem.createdAt) }}
+
+
+
+
+
+
+
diff --git a/legalconsenthub/utils/date.ts b/legalconsenthub/utils/date.ts
new file mode 100644
index 0000000..cbe902f
--- /dev/null
+++ b/legalconsenthub/utils/date.ts
@@ -0,0 +1,10 @@
+export function formatDate(date: Date): string {
+ return date.toLocaleString('de-DE', {
+ weekday: 'short',
+ day: '2-digit',
+ month: '2-digit',
+ year: '2-digit',
+ hour: '2-digit',
+ minute: '2-digit'
+ })
+}