diff --git a/src/pages/Dashboard.js b/src/pages/Dashboard.js
index 09c7582..ecf5542 100644
--- a/src/pages/Dashboard.js
+++ b/src/pages/Dashboard.js
@@ -46,12 +46,12 @@ const Dashboard = () => {
const getStatusBadge = (status) => {
const statusConfig = {
- pending_email: { icon: Clock, label: 'Pending Email', className: 'bg-[#F2CC8F] text-[#3D405B]' },
- pending_approval: { icon: Clock, label: 'Pending Approval', className: 'bg-[#A3B1C6] text-white' },
+ pending_email: { icon: Clock, label: 'Pending Email', className: 'bg-orange-100 text-orange-700' },
+ pending_approval: { icon: Clock, label: 'Pending Approval', className: 'bg-gray-200 text-gray-700' },
pre_approved: { icon: CheckCircle, label: 'Pre-Approved', className: 'bg-[#81B29A] text-white' },
- payment_pending: { icon: AlertCircle, label: 'Payment Pending', className: 'bg-[#E07A5F] text-white' },
+ payment_pending: { icon: AlertCircle, label: 'Payment Pending', className: 'bg-orange-500 text-white' },
active: { icon: CheckCircle, label: 'Active', className: 'bg-[#81B29A] text-white' },
- inactive: { icon: AlertCircle, label: 'Inactive', className: 'bg-[#6B708D] text-white' }
+ inactive: { icon: AlertCircle, label: 'Inactive', className: 'bg-gray-400 text-white' }
};
const config = statusConfig[status] || statusConfig.inactive;
@@ -79,30 +79,30 @@ const Dashboard = () => {
};
return (
-
+
-
+
{/* Welcome Section */}
-
+
Welcome Back, {user?.first_name}!
-
+
Here's an overview of your membership status and upcoming events.
{/* Email Verification Alert */}
{user && !user.email_verified && (
-
+
-
+
-
+
Verify Your Email Address
-
+
Please verify your email address to complete your registration.
Check your inbox for the verification link.
@@ -110,7 +110,7 @@ const Dashboard = () => {
onClick={handleResendVerification}
disabled={resendLoading}
variant="outline"
- className="border-2 border-[#E07A5F] text-[#E07A5F] hover:bg-[#E07A5F] hover:text-white"
+ className="border-2 border-[#664fa3] text-[#664fa3] hover:bg-[#664fa3] hover:text-white"
>
{resendLoading ? 'Sending...' : 'Resend Verification Email'}
@@ -121,22 +121,22 @@ const Dashboard = () => {
)}
{/* Status Card */}
-
+
-
+
Membership Status
{getStatusBadge(user?.status)}
-
+
{getStatusMessage(user?.status)}