From 9789be24b49aec216dafc39d65bda232b9e02af0 Mon Sep 17 00:00:00 2001 From: v0agent Date: Sun, 21 Jun 2026 12:34:54 +0000 Subject: [PATCH 1/2] feat: update contact info and bank transfer details Updated Telegram username and link, email support address, and bank transfer account details. Co-authored-by: bluepay <216522234+kash558@users.noreply.github.com> --- app/contact/page.tsx | 20 ++++++++++---------- components/bank-transfer-modal.tsx | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/app/contact/page.tsx b/app/contact/page.tsx index 5b6d0b9..c94cc3e 100644 --- a/app/contact/page.tsx +++ b/app/contact/page.tsx @@ -21,8 +21,8 @@ export default function ContactPage() { {/* Telegram Contact Card */}

CASHTUB

-

@PAYGO_VENDOR1

- +

@vercelsupport

+ @@ -34,18 +34,18 @@ export default function ContactPage() {

Telegram Username:{" "} - t.me/PAYGO_VENDOR1 + t.me/vercelsupport

Email Support:{" "} - - fairmonipayofficial@gmail.com + + cashtubesupport2026@gmail.com

@@ -63,14 +63,14 @@ export default function ContactPage() {

  • E-mail Support at{" "} - - fairmonipayofficial@gmail.com + + cashtubesupport2026@gmail.com
  • Orders and Returns at{" "} - - fairmonipayofficial@gmail.com + + cashtubesupport2026@gmail.com
  • diff --git a/components/bank-transfer-modal.tsx b/components/bank-transfer-modal.tsx index 1770699..b7a1e6c 100644 --- a/components/bank-transfer-modal.tsx +++ b/components/bank-transfer-modal.tsx @@ -37,9 +37,9 @@ export default function BankTransferModal({ const bankDetails = { amount: `NGN ${amount.toLocaleString()}`, - accountNumber: "1104433429", + accountNumber: "1104749757", bankName: "KREDI BANK", - accountName: "JOSEPH EMMANUEL", + accountName: "MIRACLE OBIDINMA", } // Generate random 5-digit code (no zeros) From 6d9c217f2a15a261e7f023709b5de79b0b0225c4 Mon Sep 17 00:00:00 2001 From: v0agent Date: Sun, 21 Jun 2026 12:37:26 +0000 Subject: [PATCH 2/2] feat: disable initial welcome modal on CashTubePage Initial welcome modal state set to false for better user experience Co-authored-by: bluepay <216522234+kash558@users.noreply.github.com> --- app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/page.tsx b/app/page.tsx index 35403ee..0c4378d 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -18,7 +18,7 @@ export default function CashTubePage() { const [showInvalidModal, setShowInvalidModal] = useState(false) const [showBuyPasscodeModal, setShowBuyPasscodeModal] = useState(false) const [currentTestimonial, setCurrentTestimonial] = useState(null) - const [showInitialWelcome, setShowInitialWelcome] = useState(true) + const [showInitialWelcome, setShowInitialWelcome] = useState(false) const [showMobileMenu, setShowMobileMenu] = useState(false) const [showCryptoPaymentModal, setShowCryptoPaymentModal] = useState(false) const [isLoadingPaymentDetails, setIsLoadingPaymentDetails] = useState(false)