edit: structure contenu contact, news & insta + panneau follow hors rezo + déplacement msgData.js plus haut dans dossiers

This commit is contained in:
2026-03-20 07:02:53 +01:00
parent 6cd8a2e634
commit 0694466f94
9 changed files with 255 additions and 17 deletions
+2
View File
@@ -19,6 +19,7 @@ import NewsletterPannel from './indieComponents/NewsletterPannel.vue'
import ContactPannel from './indieComponents/ContactPannel.vue'
import InstaPannel from './indieComponents/InstaPannel.vue'
import MessagePannel from './indieComponents/MessagePannel.vue'
import FollowPannel from './indieComponents/FollowPannel.vue'
// création app racine
const app = createApp(App);
@@ -39,6 +40,7 @@ app.component('NewsPan', NewsletterPannel);
app.component('ContactPan', ContactPannel);
app.component('InstaPan', InstaPannel);
app.component('MessagePan', MessagePannel);
app.component('FollowPan', FollowPannel);
//Montage dans div#app de index.html
app.mount('#app');