Home Page

+ Added Information
+ First and Second Entrie
This commit is contained in:
2025-11-22 22:50:05 +01:00
parent a118026b04
commit 99af5fe13e
11 changed files with 225 additions and 43 deletions

View File

@@ -19,7 +19,11 @@ function toggleDrawer() {
}
onMounted(() => {
theme.change(localStorage.getItem('theme') || 'light');
theme.change(
localStorage.getItem('theme') || window.matchMedia('(prefers-color-scheme: dark)').matches
? 'dark'
: 'light',
);
showDrawer.value = localStorage.getItem('drawer')?.startsWith('Y') || false;
});
</script>
@@ -40,7 +44,9 @@ onMounted(() => {
<v-app-bar-nav-icon @click="toggleDrawer()"></v-app-bar-nav-icon>
</template>
<v-app-bar-title class="title"> Judoteam - Stadtlohn </v-app-bar-title>
<v-app-bar-title class="title" @click="$router.push({ name: 'Home' })"
><span class="pointer">Judoteam - Stadtlohn</span></v-app-bar-title
>
<v-tooltip>
<template #activator="{ props }">