diff --git a/frontend/src/pages/AccountSettingsPage.tsx b/frontend/src/pages/AccountSettingsPage.tsx index 583a5a68..7f89e402 100644 --- a/frontend/src/pages/AccountSettingsPage.tsx +++ b/frontend/src/pages/AccountSettingsPage.tsx @@ -167,23 +167,23 @@ export function AccountSettingsPage() {
- -

Account Settings

+ +

Account Settings

-

+

Manage your account, subscription, and team

{/* Account Info Section */} -
-

Account Information

+
+

Account Information

{/* Account Name */}
-
) : (
- {account?.name} + {account?.name} {isAccountOwner && ( @@ -241,10 +241,10 @@ export function AccountSettingsPage() { {/* Display Code */}
-
@@ -252,8 +252,8 @@ export function AccountSettingsPage() {
{/* Subscription Section */} -
-

Subscription

+
+

Subscription

{/* Plan & Status */} @@ -261,9 +261,9 @@ export function AccountSettingsPage() { @@ -277,7 +277,7 @@ export function AccountSettingsPage() { sub.status === 'trialing' && 'bg-blue-500/10 text-blue-400', sub.status === 'past_due' && 'bg-yellow-500/10 text-yellow-400', sub.status === 'canceled' && 'bg-red-400/10 text-red-400', - sub.status === 'orphaned' && 'bg-accent text-muted-foreground' + sub.status === 'orphaned' && 'bg-accent text-[#848b9b]' )} > {sub.status.charAt(0).toUpperCase() + sub.status.slice(1).replace('_', ' ')} @@ -286,7 +286,7 @@ export function AccountSettingsPage() {
{sub?.current_period_end && ( -

+

Current period ends: {new Date(sub.current_period_end).toLocaleDateString()}

)} @@ -329,14 +329,14 @@ export function AccountSettingsPage() { {/* Team Members Section (owners only) */} {isAccountOwner && ( -
+
- -

Team Members

+ +

Team Members

{members.length === 0 ? ( -

No team members yet.

+

No team members yet.

) : (
{members.map((member) => ( @@ -345,12 +345,12 @@ export function AccountSettingsPage() { className="flex items-center justify-between py-3 first:pt-0 last:pb-0" >
-

{member.name}

-

{member.email}

+

{member.name}

+

{member.email}

{member.account_role === 'owner' ? ( - + owner ) : ( @@ -366,8 +366,8 @@ export function AccountSettingsPage() { } }} className={cn( - 'rounded-md border border-border bg-card px-2 py-0.5 text-xs', - 'text-foreground focus:border-primary focus:outline-hidden' + 'rounded-md border border-[#1e2130] bg-[#14161d] px-2 py-0.5 text-xs', + 'text-[#e2e5eb] focus:border-primary focus:outline-hidden' )} > @@ -382,7 +382,7 @@ export function AccountSettingsPage() { {member.account_role !== 'owner' && ( ))}
@@ -236,7 +236,7 @@ export function FeedbackPage() { {/* Message */}
-