diff --git a/ui/src/pages/DashboardPage.tsx b/ui/src/pages/DashboardPage.tsx
index a6a9488..f67d1e5 100644
--- a/ui/src/pages/DashboardPage.tsx
+++ b/ui/src/pages/DashboardPage.tsx
@@ -9,15 +9,7 @@ import {
import { useAuth } from '../auth/useAuth';
import { useTenant, useLicense } from '../api/hooks';
import styles from '../styles/platform.module.css';
-
-function tierColor(tier: string): 'primary' | 'success' | 'warning' | 'error' {
- switch (tier?.toLowerCase()) {
- case 'enterprise': return 'success';
- case 'pro': return 'primary';
- case 'starter': return 'warning';
- default: return 'primary';
- }
-}
+import { tierColor } from '../utils/tier';
export function DashboardPage() {
const { tenantId } = useAuth();
@@ -67,25 +59,16 @@ export function DashboardPage() {
return (
{/* Tenant Header */}
-
-
-
- {tenant?.name ?? tenantId}
-
- {tenant?.tier && (
-
- )}
-
-
+
+
+ {tenant?.name ?? tenantId}
+
+ {tenant?.tier && (
+
+ )}
{/* KPI Strip */}
diff --git a/ui/src/pages/LicensePage.tsx b/ui/src/pages/LicensePage.tsx
index 5a25bf8..04fbfd3 100644
--- a/ui/src/pages/LicensePage.tsx
+++ b/ui/src/pages/LicensePage.tsx
@@ -8,6 +8,7 @@ import {
import { useAuth } from '../auth/useAuth';
import { useLicense } from '../api/hooks';
import styles from '../styles/platform.module.css';
+import { tierColor } from '../utils/tier';
const FEATURE_LABELS: Record
= {
topology: 'Topology',
@@ -23,16 +24,6 @@ const LIMIT_LABELS: Record = {
max_environments: 'Max Environments',
};
-function tierColor(tier: string): 'primary' | 'success' | 'warning' | 'error' {
- switch (tier?.toUpperCase()) {
- case 'BUSINESS': return 'success';
- case 'HIGH': return 'primary';
- case 'MID': return 'warning';
- case 'LOW': return 'error';
- default: return 'primary';
- }
-}
-
function daysRemaining(expiresAt: string): number {
const now = Date.now();
const exp = new Date(expiresAt).getTime();
@@ -127,7 +118,7 @@ export function LicensePage() {
{label}
);
diff --git a/ui/src/utils/tier.ts b/ui/src/utils/tier.ts
new file mode 100644
index 0000000..13c02b7
--- /dev/null
+++ b/ui/src/utils/tier.ts
@@ -0,0 +1,20 @@
+export type TierColor = 'primary' | 'success' | 'warning' | 'error' | 'auto';
+
+export function tierColor(tier: string): TierColor {
+ switch (tier?.toUpperCase()) {
+ case 'BUSINESS':
+ case 'ENTERPRISE':
+ return 'success';
+ case 'HIGH':
+ case 'PRO':
+ return 'primary';
+ case 'MID':
+ case 'STARTER':
+ return 'warning';
+ case 'LOW':
+ case 'FREE':
+ return 'auto';
+ default:
+ return 'auto';
+ }
+}