mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-16 21:53:07 +00:00
28 lines
832 B
TypeScript
28 lines
832 B
TypeScript
import type { LucideIcon } from 'lucide-react';
|
|
import {
|
|
User,
|
|
GitBranch,
|
|
Palette,
|
|
AlertTriangle,
|
|
Workflow,
|
|
Database,
|
|
Terminal,
|
|
} from 'lucide-react';
|
|
import type { ProjectSettingsViewId } from '../hooks/use-project-settings-view';
|
|
|
|
export interface ProjectNavigationItem {
|
|
id: ProjectSettingsViewId;
|
|
label: string;
|
|
icon: LucideIcon;
|
|
}
|
|
|
|
export const PROJECT_SETTINGS_NAV_ITEMS: ProjectNavigationItem[] = [
|
|
{ id: 'identity', label: 'Identity', icon: User },
|
|
{ id: 'worktrees', label: 'Worktrees', icon: GitBranch },
|
|
{ id: 'commands-scripts', label: 'Commands & Scripts', icon: Terminal },
|
|
{ id: 'theme', label: 'Theme', icon: Palette },
|
|
{ id: 'claude', label: 'Models', icon: Workflow },
|
|
{ id: 'data', label: 'Data', icon: Database },
|
|
{ id: 'danger', label: 'Danger Zone', icon: AlertTriangle },
|
|
];
|