From fc6f1ce11f9eee37581d718726285a9b499acaea Mon Sep 17 00:00:00 2001 From: austinkelsay Date: Wed, 9 Oct 2024 14:22:48 -0500 Subject: [PATCH] Dont autoplay message carousel --- .../content/carousels/MessagesCarousel.js | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/components/content/carousels/MessagesCarousel.js b/src/components/content/carousels/MessagesCarousel.js index 8e23857..3ad7c7e 100644 --- a/src/components/content/carousels/MessagesCarousel.js +++ b/src/components/content/carousels/MessagesCarousel.js @@ -63,6 +63,15 @@ const MessageCarousel = ({ copyToClipboard }) => { ); const messages = [ + { + title: "Welcome to the PlebDevs Platform testing phase! 👋", + description: "During this testing phase all prices will be reduced by 10x but all purchases, subscriptions, and progress will be reset on launch, cheers!", + showGithub: false, + showX: false, + showNostr: false, + showDonate: false, + showFeedback: true, + }, { title: "PlebDevs 🤝👨‍💻🤝👩‍💻🤝🧑‍💻🤝", description: "Plebdevs is open source software and is still in early development. If you have any questions drop an issue on the Github repo, or reach out to me in the Community tab.", @@ -82,21 +91,12 @@ const MessageCarousel = ({ copyToClipboard }) => { showYoutube: true, showDonate: true, showFeedback: false, - }, - { - title: "Welcome to the PlebDevs Platform testing phase! 👋", - description: "During this testing phase all prices will be reduced by 10x but all purchases, subscriptions, and progress will be reset on launch, cheers!", - showGithub: false, - showX: false, - showNostr: false, - showDonate: false, - showFeedback: true, - }, + } // todo add donate message ]; return ( - + ); };