diff --git a/apps/clock/apps/web/src/routes/(app)/+page.svelte b/apps/clock/apps/web/src/routes/(app)/+page.svelte new file mode 100644 index 000000000..4459fe2b9 --- /dev/null +++ b/apps/clock/apps/web/src/routes/(app)/+page.svelte @@ -0,0 +1,118 @@ + + + + Clock - Dashboard + + +{#if isLoading} + +{:else} +
+
+

Clock

+

Dein Zeit-Management Hub

+
+ + +
+
+
+ +
+
+
+ {new Date().toLocaleTimeString('de-DE', { + hour: '2-digit', + minute: '2-digit', + second: '2-digit', + })} +
+
+ {new Date().toLocaleDateString('de-DE', { + weekday: 'long', + year: 'numeric', + month: 'long', + day: 'numeric', + })} +
+
+
+
+ + +
+ {#each quickLinks as link} + +
+
+ +
+
+
{link.label}
+
{link.description}
+
+
+
+ {/each} +
+
+{/if} + +