diff --git a/src/components/ChangePasswordDialog.js b/src/components/ChangePasswordDialog.js index 916bdf1..4530e03 100644 --- a/src/components/ChangePasswordDialog.js +++ b/src/components/ChangePasswordDialog.js @@ -66,7 +66,7 @@ const ChangePasswordDialog = ({ open, onOpenChange }) => { return ( - +
diff --git a/src/components/ChangeRoleDialog.js b/src/components/ChangeRoleDialog.js index dafa8d3..736a005 100644 --- a/src/components/ChangeRoleDialog.js +++ b/src/components/ChangeRoleDialog.js @@ -77,7 +77,7 @@ export default function ChangeRoleDialog({ open, onClose, user, onSuccess }) { return ( - + diff --git a/src/components/CreateMemberDialog.js b/src/components/CreateMemberDialog.js index 02b077e..4d3308b 100644 --- a/src/components/CreateMemberDialog.js +++ b/src/components/CreateMemberDialog.js @@ -181,7 +181,7 @@ const CreateMemberDialog = ({ open, onOpenChange, onSuccess }) => { value={formData.first_name} onChange={(e) => handleChange('first_name', e.target.value)} className="rounded-xl border-2 border-[var(--neutral-800)] focus:border-brand-purple " - placeholder="John" + placeholder="Jane" /> {errors.first_name && (

{errors.first_name}

diff --git a/src/components/CreateStaffDialog.js b/src/components/CreateStaffDialog.js index 166806f..01f36c4 100644 --- a/src/components/CreateStaffDialog.js +++ b/src/components/CreateStaffDialog.js @@ -106,7 +106,7 @@ const CreateStaffDialog = ({ open, onOpenChange, onSuccess }) => { return ( - + @@ -165,7 +165,7 @@ const CreateStaffDialog = ({ open, onOpenChange, onSuccess }) => { value={formData.first_name} onChange={(e) => handleChange('first_name', e.target.value)} className="rounded-xl border-2 border-[var(--neutral-800)] focus:border-brand-purple " - placeholder="John" + placeholder="Jane" /> {errors.first_name && (

{errors.first_name}

diff --git a/src/components/InviteStaffDialog.js b/src/components/InviteStaffDialog.js index 17e62e9..a37276e 100644 --- a/src/components/InviteStaffDialog.js +++ b/src/components/InviteStaffDialog.js @@ -123,7 +123,7 @@ const InviteStaffDialog = ({ open, onOpenChange, onSuccess }) => { return ( - + @@ -196,7 +196,7 @@ const InviteStaffDialog = ({ open, onOpenChange, onSuccess }) => { value={formData.first_name} onChange={(e) => handleChange('first_name', e.target.value)} className="rounded-xl border-2 border-[var(--neutral-800)] focus:border-brand-purple " - placeholder="John" + placeholder="Jane" />
diff --git a/src/components/PaymentActivationDialog.js b/src/components/PaymentActivationDialog.js index 34074ac..aeab9c9 100644 --- a/src/components/PaymentActivationDialog.js +++ b/src/components/PaymentActivationDialog.js @@ -156,8 +156,8 @@ const PaymentActivationDialog = ({ open, onOpenChange, user, onSuccess }) => { if (!user) return null; return ( - - + + Activate Manual Payment diff --git a/src/components/PublicNavbar.js b/src/components/PublicNavbar.js index 132ce49..0575131 100644 --- a/src/components/PublicNavbar.js +++ b/src/components/PublicNavbar.js @@ -75,8 +75,24 @@ const PublicNavbar = () => {
-
- +
+ {user && ( + + Welcome, {user.first_name} + + )} + {(user?.role === 'admin' || user?.role === 'superadmin') && ( + + Dashboard + + )} + + + + + Newsletters + + + + + Financials + + + + + Bylaws + + + + + + )} + {/* { style={{ fontFamily: "'Nunito Sans', sans-serif" }} > Contact Us - + */}
@@ -219,6 +299,18 @@ const PublicNavbar = () => {
+ {/* User Info */} + {user && ( +
+

+ Welcome, +

+

+ {user.first_name} {user.last_name} +

+
+ )} + {/* Navigation Links */}