feat : Implémentation de l'interface utilisateur initiale, incluant la page d'accueil, la mise en page authentifiée et le tableau de bord administrateur.

This commit is contained in:
jeremy bayse
2026-02-21 17:52:27 +01:00
parent 4fc7fdd7cd
commit a0e904d69d
3 changed files with 24 additions and 17 deletions

View File

@@ -19,14 +19,7 @@ const props = defineProps({
<h2 class="text-xl font-semibold leading-tight text-gray-800 dark:text-gray-200">
Administration
</h2>
<div>
<Link :href="route('templates.index')" class="mr-2 px-4 py-2 bg-gray-200 border border-transparent rounded-md font-semibold text-xs text-gray-800 uppercase tracking-widest hover:bg-gray-300 dark:bg-gray-700 dark:text-gray-200 dark:hover:bg-gray-600 transition ease-in-out duration-150">
Gérer les Modèles
</Link>
<Link :href="route('users.index')" class="px-4 py-2 bg-gray-800 border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest hover:bg-gray-700 dark:bg-gray-200 dark:text-gray-800 dark:hover:bg-white transition ease-in-out duration-150">
Gérer les Utilisateurs
</Link>
</div>
</div>
</template>