mirror of
https://github.com/Studio-Saelix/sencho.git
synced 2026-08-31 04:38:11 +00:00
refactor: use nautical icons for Skipper and Admiral tiers (#257)
* refactor: use nautical icons for Skipper and Admiral tiers Replace Crown/Users with Compass (Skipper) and ShipWheel (Admiral) across TierBadge, ProGate, AdmiralGate, and SettingsModal upgrade cards. * feat(sso): add Admiral tier badge next to SSO Authentication title
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Crown, Globe, Users } from 'lucide-react';
|
||||
import { Compass, Globe, ShipWheel } from 'lucide-react';
|
||||
import { Badge } from '@/components/ui/badge';
|
||||
import { useLicense, type LicenseTier, type LicenseVariant, type LicenseStatus } from '@/context/LicenseContext';
|
||||
|
||||
@@ -11,8 +11,8 @@ interface TierBadgeProps {
|
||||
|
||||
const tierConfig = {
|
||||
community: { icon: Globe, label: 'Community' },
|
||||
pro: { icon: Crown, label: 'Skipper' },
|
||||
team: { icon: Users, label: 'Admiral' },
|
||||
pro: { icon: Compass, label: 'Skipper' },
|
||||
team: { icon: ShipWheel, label: 'Admiral' },
|
||||
} as const;
|
||||
|
||||
function resolveTier(tier: LicenseTier, variant: LicenseVariant, status: LicenseStatus) {
|
||||
|
||||
Reference in New Issue
Block a user