backend api, swagger, tooling, frontend skeleton

This commit is contained in:
2026-01-21 22:05:02 +01:00
parent a9d1ad79ca
commit 88624f3bed
107 changed files with 34393 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
<template>
<main class="container">
<h1>Emplacements</h1>
<p>Arborescence a connecter a l'API.</p>
</main>
</template>

12
frontend/pages/index.vue Normal file
View File

@@ -0,0 +1,12 @@
<template>
<main class="container">
<section class="hero">
<h1>MatosBox</h1>
<p>Inventaire simple pour le materiel, les composants et les outils.</p>
<nav class="grid">
<NuxtLink class="card" to="/objets">Voir les objets</NuxtLink>
<NuxtLink class="card" to="/emplacements">Voir les emplacements</NuxtLink>
</nav>
</section>
</main>
</template>

View File

@@ -0,0 +1,6 @@
<template>
<main class="container">
<h1>Fiche objet</h1>
<p>Detail a connecter a l'API.</p>
</main>
</template>

View File

@@ -0,0 +1,6 @@
<template>
<main class="container">
<h1>Objets</h1>
<p>Liste a connecter a l'API.</p>
</main>
</template>