diff --git a/frontend/src/components/Header.tsx b/frontend/src/components/Header.tsx index ff86a5f..958632d 100644 --- a/frontend/src/components/Header.tsx +++ b/frontend/src/components/Header.tsx @@ -55,13 +55,23 @@ export function Header() { const tierName = subscription?.tier_name || subscription?.tier || 'Scout' - // Navigation items - consistent for logged in/out - const navItems = [ - { href: '/tld-pricing', label: 'TLD Prices', icon: TrendingUp }, - { href: '/auctions', label: 'Auctions', icon: Gavel }, + // Public navigation - for visitors (consistent naming with concept) + const publicNavItems = [ + { href: '/auctions', label: 'Market', icon: Gavel }, + { href: '/tld-pricing', label: 'TLD Intel', icon: TrendingUp }, { href: '/pricing', label: 'Pricing', icon: CreditCard }, ] + // Command Center navigation - for logged in users + const commandCenterNavItems = [ + { href: '/dashboard', label: 'Dashboard', icon: LayoutDashboard }, + { href: '/auctions', label: 'Market', icon: Gavel }, + { href: '/tld-pricing', label: 'Intelligence', icon: TrendingUp }, + ] + + // Use appropriate nav items based on auth status + const navItems = isAuthenticated ? commandCenterNavItems : publicNavItems + const isActive = (href: string) => { if (href === '/') return pathname === '/' return pathname.startsWith(href) @@ -108,20 +118,6 @@ export function Header() {