StreakFit — PWA Nuxt (thème flamme, logo SF animé)
Build & Deploy / build (push) Failing after 5s

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-19 03:00:18 +02:00
co-authored by Claude Opus 4.8
commit 8ee9596529
41 changed files with 24630 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<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>