import React from 'react';
import { useNavigate } from 'react-router-dom';
import { Card } from '../components/ui/card';
import { Button } from '../components/ui/button';
import Navbar from '../components/Navbar';
import { XCircle, ArrowLeft, CreditCard, Mail } from 'lucide-react';
const PaymentCancel = () => {
const navigate = useNavigate();
return (
{/* Cancel Icon */}
{/* Cancel Message */}
Payment Cancelled
Your payment was cancelled. No charges have been made to your account.
{/* Info Card */}
What Happened?
You cancelled the payment process or closed the checkout page. Your membership has not been activated yet.
Ready to Complete Your Membership?
-
Return to the plans page to complete your subscription
-
Contact us if you experienced any issues during checkout
Note:{' '}
Your membership application is still validated. You can complete payment whenever you're ready.
{/* Action Buttons */}
{/* Support Section */}
Need Assistance?
If you encountered any technical issues or have questions about the payment process, our support team is here to help.
);
};
export default PaymentCancel;