import type { TabId } from './types' // API Base URL for klausur-service export const API_BASE = process.env.NEXT_PUBLIC_KLAUSUR_SERVICE_URL || 'http://localhost:8086' // Tab definitions export const tabs: { id: TabId; name: string; icon: JSX.Element }[] = [ { id: 'overview', name: 'Übersicht', icon: ( ), }, { id: 'accounts', name: 'Konten', icon: ( ), }, { id: 'ai-settings', name: 'KI-Einstellungen', icon: ( ), }, { id: 'templates', name: 'Vorlagen', icon: ( ), }, { id: 'logs', name: 'Audit-Log', icon: ( ), }, ]