From c94b22444aefd5726a4be2261c7a26e1fa8a2407 Mon Sep 17 00:00:00 2001
From: vgaNAR6ta
Date: Sat, 4 Apr 2026 04:14:10 +0200
Subject: [PATCH] edit: ajout des panneaux donations et tickets
---
.../src/indieComponents/DonationPannel.vue | 118 +++++++++++++++
.../src/indieComponents/GraffOverlay.vue | 2 +-
.../src/indieComponents/TicketPannel.vue | 136 ++++++++++++++++++
.../src/infoComponents/InfoMenu.vue | 37 +++++
v1-com-officielle/src/main.js | 4 +
5 files changed, 296 insertions(+), 1 deletion(-)
create mode 100644 v1-com-officielle/src/indieComponents/DonationPannel.vue
create mode 100644 v1-com-officielle/src/indieComponents/TicketPannel.vue
diff --git a/v1-com-officielle/src/indieComponents/DonationPannel.vue b/v1-com-officielle/src/indieComponents/DonationPannel.vue
new file mode 100644
index 0000000..2dd8212
--- /dev/null
+++ b/v1-com-officielle/src/indieComponents/DonationPannel.vue
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+ Nous faire une donation:
+
+
+
+
+
+
+
+
Si tu penses que tu as les moyens de nous faire une petite donation, toute participation est la bienvenue et ça nous aiderait bien à démarrer le projet ^^
+
+
+
+
+
+
+
+
diff --git a/v1-com-officielle/src/indieComponents/GraffOverlay.vue b/v1-com-officielle/src/indieComponents/GraffOverlay.vue
index 1327488..b02d3ff 100644
--- a/v1-com-officielle/src/indieComponents/GraffOverlay.vue
+++ b/v1-com-officielle/src/indieComponents/GraffOverlay.vue
@@ -63,7 +63,7 @@
}
#TsContainer{
- top: -161%;
+ top: -155%;
left: 131.2px;
}
#graffTs{
diff --git a/v1-com-officielle/src/indieComponents/TicketPannel.vue b/v1-com-officielle/src/indieComponents/TicketPannel.vue
new file mode 100644
index 0000000..d66a090
--- /dev/null
+++ b/v1-com-officielle/src/indieComponents/TicketPannel.vue
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+ Réserver une place
+
+
+
+
+
+
+
+
+ Afin de pouvoir estimer le nombre
+
+ de participation, nous avons mis en place
+
+ un système de "prévente à prix libre"
+
+
+ Lors de la réservation, tu indiques
+
+ une intention de don le jour même,
+
+ c'est-à-dire la somme que tu penses
+
+ pouvoir donner le jour J.
+
+
+ Cette réservation ne t'engage
+
+ à rien en terme de paiement,
+
+ et tu pourras toujours revenir sur le montant indiqué, lors de l'évènement.
+
+
+ De notre coté, on s'engage à te garder une place jusqu'au début des shows,
+
+ si jamais la jauge est atteinte.
+
+
Je veux une place !
+
+
+
+
+
+
+
diff --git a/v1-com-officielle/src/infoComponents/InfoMenu.vue b/v1-com-officielle/src/infoComponents/InfoMenu.vue
index 8578786..84e0529 100644
--- a/v1-com-officielle/src/infoComponents/InfoMenu.vue
+++ b/v1-com-officielle/src/infoComponents/InfoMenu.vue
@@ -42,6 +42,8 @@
si tu as envie de participer !
NOUS SUIVRE HORS DES RÉSEAUX!
+ NOUS FAIRE UNE DONATION
+ RÉSERVER MA PLACE!
@@ -110,6 +112,18 @@
@focus="focusPannel('link')"
:class="{zBase: isFocused!=='link', zFocus: isFocused==='link'}">
+
+
+
+
diff --git a/v1-com-officielle/src/main.js b/v1-com-officielle/src/main.js
index a2bd8e9..e4fa42b 100644
--- a/v1-com-officielle/src/main.js
+++ b/v1-com-officielle/src/main.js
@@ -23,6 +23,8 @@ import MessagePannel from './indieComponents/MessagePannel.vue'
import FollowPannel from './indieComponents/FollowPannel.vue'
import VisualizerPannel from './indieComponents/VisualizerPannel.vue'
import LinkPannel from './indieComponents/LinkPannel.vue'
+import DonationPannel from './indieComponents/DonationPannel.vue'
+import TicketPannel from './indieComponents/TicketPannel.vue'
import Infobubble from './indieComponents/Infobulle.vue'
@@ -50,6 +52,8 @@ app.component('MessagePan', MessagePannel);
app.component('FollowPan', FollowPannel);
app.component('VisualizerPan', VisualizerPannel);
app.component('LinkPan', LinkPannel);
+app.component('DonationPan', DonationPannel);
+app.component('TicketPan', TicketPannel);
app.component('Infobulle', Infobubble);
app.component('ColorPan', ColorBtn);