Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions app/contact/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export default function ContactPage() {
{/* Telegram Contact Card */}
<div className="flex flex-col items-center justify-center p-6 bg-white rounded-lg shadow-md border border-gray-200">
<h2 className="text-2xl font-bold text-gray-800 mb-2">CASHTUB</h2>
<p className="text-gray-600 mb-4">@PAYGO_VENDOR1</p>
<Link href="https://t.me/PAYGO_VENDOR1" target="_blank" rel="noopener noreferrer" passHref>
<p className="text-gray-600 mb-4">@vercelsupport</p>
<Link href="https://t.me/vercelsupport" target="_blank" rel="noopener noreferrer" passHref>
<Button className="bg-gradient-to-r from-blue-500 to-blue-600 hover:from-blue-600 hover:to-blue-700 text-white px-8 py-3 rounded-full text-lg font-medium shadow-lg">
SEND MESSAGE
</Button>
Expand All @@ -34,18 +34,18 @@ export default function ContactPage() {
<p>
<span className="font-bold">Telegram Username:</span>{" "}
<Link
href="https://t.me/PAYGO_VENDOR1"
href="https://t.me/vercelsupport"
target="_blank"
rel="noopener noreferrer"
className="text-blue-600 hover:underline"
>
t.me/PAYGO_VENDOR1
t.me/vercelsupport
</Link>
</p>
<p>
<span className="font-bold">Email Support:</span>{" "}
<a href="mailto:fairmonipayofficial@gmail.com" className="text-blue-600 hover:underline">
fairmonipayofficial@gmail.com
<a href="mailto:cashtubesupport2026@gmail.com" className="text-blue-600 hover:underline">
cashtubesupport2026@gmail.com
</a>
</p>
<p>
Expand All @@ -63,14 +63,14 @@ export default function ContactPage() {
</li>
<li>
E-mail Support at{" "}
<a href="mailto:fairmonipayofficial@gmail.com" className="text-blue-600 hover:underline">
fairmonipayofficial@gmail.com
<a href="mailto:cashtubesupport2026@gmail.com" className="text-blue-600 hover:underline">
cashtubesupport2026@gmail.com
</a>
</li>
<li>
Orders and Returns at{" "}
<a href="mailto:fairmonipayofficial@gmail.com" className="text-blue-600 hover:underline">
fairmonipayofficial@gmail.com
<a href="mailto:cashtubesupport2026@gmail.com" className="text-blue-600 hover:underline">
cashtubesupport2026@gmail.com
</a>
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function CashTubePage() {
const [showInvalidModal, setShowInvalidModal] = useState(false)
const [showBuyPasscodeModal, setShowBuyPasscodeModal] = useState(false)
const [currentTestimonial, setCurrentTestimonial] = useState<Testimonial | null>(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)
Expand Down
4 changes: 2 additions & 2 deletions components/bank-transfer-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down