larxius commited on
Commit
167d7da
·
verified ·
1 Parent(s): 2dc0cc0

Update frontend/src/components/Layout.jsx

Browse files
Files changed (1) hide show
  1. frontend/src/components/Layout.jsx +4 -3
frontend/src/components/Layout.jsx CHANGED
@@ -216,12 +216,13 @@ export const Layout = ({ children }) => {
216
  <span className="text-[#0b132a] dark:text-white">Lar</span>
217
  <span className="text-[#5856d6]">Shield</span>
218
  </h1>
219
- <p className="text-[12px] text-[#d97706] uppercase tracking-[0.16em] m-0 font-semibold leading-tight mt-1">
220
  {user?.role === 'super_admin' ? 'SUPER ADMIN' :
221
  user?.role === 'admin' ? 'ADMIN' :
222
  user?.role === 'support_engineer' ? 'SUPPORT ENGINEER' :
223
- user?.role === 'org_admin' ? 'ORGANIZATION ADMIN' :
224
- (user?.subscription_tier ? `${user.subscription_tier.toUpperCase()} TIER` : 'FREE TIER')}
 
225
  </p>
226
  </div>
227
  </div>
 
216
  <span className="text-[#0b132a] dark:text-white">Lar</span>
217
  <span className="text-[#5856d6]">Shield</span>
218
  </h1>
219
+ <p className="text-[12px] text-[#64748b] dark:text-slate-400 uppercase tracking-[0.14em] m-0 font-medium leading-tight mt-1">
220
  {user?.role === 'super_admin' ? 'SUPER ADMIN' :
221
  user?.role === 'admin' ? 'ADMIN' :
222
  user?.role === 'support_engineer' ? 'SUPPORT ENGINEER' :
223
+ user?.role === 'org_admin' ? 'ORG ADMIN' :
224
+ user?.role === 'executive_user' ? 'EXECUTIVE' :
225
+ (user?.subscription_tier ? `${user.subscription_tier.toUpperCase()} TIER` : 'ORG ADMIN')}
226
  </p>
227
  </div>
228
  </div>