Welcome dialog: New page for look and feel, redesign pages, merge database and exercise creating in one step

This commit is contained in:
2025-07-05 14:35:48 +02:00
parent 48c59936ec
commit b69c63ea53
8 changed files with 196 additions and 88 deletions

View File

@@ -5,7 +5,7 @@ import bandSection from './bandsSection.vue';
import UpcomingConcertsSection from './upcomingConcertsSection.vue';
import TopLocationsSection from './topLocationsSection.vue';
import { usePreferencesStore } from '@/stores/preferences.store';
import welcomeDialog from './welcomeDialog.vue';
import welcomeDialog from './welcomeDialog/dialog.vue';
import { ref } from 'vue';
const concertStore = useConcertStore()
@@ -17,8 +17,8 @@ concertStore.getUpcomingConcerts()
locationStore.getTopLocations()
// First startup
showWelcomeDialog.value = true
if (preferencesStore.firstStartup) {
showWelcomeDialog.value = true
}
</script>