Files
streakfit-web/app/app.vue
T
neckfireandClaude Opus 4.8 8ee9596529
Build & Deploy / build (push) Failing after 5s
StreakFit — PWA Nuxt (thème flamme, logo SF animé)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-19 03:00:18 +02:00

25 lines
467 B
Vue

<script setup lang="ts">
const auth = useAuthStore()
const booting = ref(true)
useSeoMeta({
title: 'StreakFit',
description: 'Garde la flamme. Entraîne-toi, suis ta série, progresse.'
})
onMounted(async () => {
await auth.fetchMe()
booting.value = false
})
</script>
<template>
<UApp>
<NuxtLoadingIndicator color="#F97316" />
<SfLoadingScreen v-if="booting" />
<NuxtLayout v-else>
<NuxtPage />
</NuxtLayout>
</UApp>
</template>