'use client'; import React from 'react'; import { Box } from '@/ui/Box'; import { Stack } from '@/ui/Stack'; import { Text } from '@/ui/Text'; export type ProfileTab = 'overview' | 'history' | 'stats' | 'leagues' | 'liveries' | 'settings'; interface ProfileNavTabsProps { activeTab: ProfileTab; onTabChange: (tab: ProfileTab) => void; tabs?: { id: ProfileTab; label: string }[]; } const DEFAULT_TABS: { id: ProfileTab; label: string }[] = [ { id: 'overview', label: 'Overview' }, { id: 'history', label: 'History' }, { id: 'stats', label: 'Stats' }, { id: 'leagues', label: 'Leagues' }, { id: 'liveries', label: 'Liveries' }, { id: 'settings', label: 'Settings' }, ]; export function ProfileNavTabs({ activeTab, onTabChange, tabs = DEFAULT_TABS }: ProfileNavTabsProps) { return ( ); }