feat: Initial Nuxt app
Some checks failed
NuxtHub deployment / deploy (push) Failing after 21s
WordPress deployment / deploy (push) Successful in 8s

This commit is contained in:
2025-08-27 13:37:40 -04:00
parent 677d367226
commit 312a6f1b62
43 changed files with 40550 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
<script setup lang="ts">
definePageMeta({ layout: "auth" });
const { loggedIn } = useUserSession();
useSeoMeta({ title: loggedIn.value ? "Déconnexion" : "Connexion" });
</script>
<template>
<LogoutForm v-if="loggedIn" />
<LoginForm v-else />
</template>

View File

@@ -0,0 +1,9 @@
<script setup lang="ts">
useSeoMeta({ title: "Accueil" });
</script>
<template>
<UPage>
<UPageHero title="Nuxt UI rocks" />
</UPage>
</template>