tunnel: création de toute la structure et contenu textes, sans les images de drag, interactivté et style (bug avec le dossier typo dans /public => déplacer dans assets)

This commit is contained in:
2026-03-11 00:14:29 +01:00
parent cf2ce6ba2f
commit e92655ac93
16 changed files with 1181 additions and 2 deletions
+6 -1
View File
@@ -4,13 +4,18 @@ import './assets/style.css'
// import app vue racine
import App from './App.vue'
// import composants
import AboutPannel from './components/AboutPannel.vue'
import ContactPannel from './components/ContactPannel.vue'
import WorkshopPannel from './components/WorkshopPannel.vue'
// création app racine
const app = createApp(App);
//Composants
app.component('aboutPannel', AboutPannel);
app.component('contactPannel', ContactPannel);
app.component('workshopPannel', WorkshopPannel);