Enhance Home page with new sections and image presets
Added new event images and introduced HomeEntrieWithImagePreset component for consistent image-text layouts. Updated Home.vue to include new sections for club values and events (Nikolausturnier, Wettkämpfe, Kinoabende) with tab navigation. Refactored carousel and improved HomeEntrie for better mobile/desktop title handling. Renamed CarouseWithTitle.vue to CarouselItemWithTitle.vue for clarity.
This commit is contained in:
@@ -20,9 +20,8 @@ function toggleDrawer() {
|
||||
|
||||
onMounted(() => {
|
||||
theme.change(
|
||||
localStorage.getItem('theme') || (window.matchMedia('(prefers-color-scheme: dark)').matches
|
||||
? 'dark'
|
||||
: 'light')
|
||||
localStorage.getItem('theme') ||
|
||||
(window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'),
|
||||
);
|
||||
showDrawer.value = localStorage.getItem('drawer')?.startsWith('Y') || false;
|
||||
});
|
||||
@@ -48,7 +47,7 @@ onMounted(() => {
|
||||
><span class="pointer">Judoteam - Stadtlohn</span></v-app-bar-title
|
||||
>
|
||||
|
||||
<v-tooltip>
|
||||
<v-tooltip v-if="!$vuetify.display.mobile">
|
||||
<template #activator="{ props }">
|
||||
<v-btn icon v-bind="props">
|
||||
<v-icon>mdi-account</v-icon>
|
||||
|
||||
Reference in New Issue
Block a user