import Button from '@/components/ui/Button' import { SiteInfo } from '@/lib/constants' import ThemeToggle from '@/components/ThemeToggle' import { TabsList, TabsTrigger } from '@/components/ui/Tabs' import { useSettingsStore } from '@/stores/settings' import { cn } from '@/lib/utils' import { useTranslation } from 'react-i18next' import { ZapIcon, GithubIcon } from 'lucide-react' interface NavigationTabProps { value: string currentTab: string children: React.ReactNode } function NavigationTab({ value, currentTab, children }: NavigationTabProps) { return ( {children} ) } function TabsNavigation() { const currentTab = useSettingsStore.use.currentTab() const { t } = useTranslation() return (
{t('header.documents')} {t('header.knowledgeGraph')} {t('header.retrieval')} {t('header.api')}
) } export default function SiteHeader() { const { t } = useTranslation() return (
) }