Implements useProgressionStore with conditional localStorage persistence (only after RGPD consent), immersive ConsentBanner with narrator style, WelcomeBack component for returning visitors, and connects progress bar in header to store. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
270 B
Vue
16 lines
270 B
Vue
<template>
|
|
<div class="min-h-screen bg-sky-dark text-sky-text flex flex-col">
|
|
<LayoutAppHeader />
|
|
|
|
<main class="flex-1">
|
|
<slot />
|
|
</main>
|
|
|
|
<LayoutAppFooter />
|
|
|
|
<ClientOnly>
|
|
<LayoutConsentBanner />
|
|
</ClientOnly>
|
|
</div>
|
|
</template>
|