mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-04 21:23:07 +00:00
Relocate the export and import features functionality from the board header dropdown menu to a new "Data" section in project settings for better UX. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
732 B
TypeScript
19 lines
732 B
TypeScript
import type { LucideIcon } from 'lucide-react';
|
|
import { User, GitBranch, Palette, AlertTriangle, Workflow, Database } 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: 'theme', label: 'Theme', icon: Palette },
|
|
{ id: 'claude', label: 'Models', icon: Workflow },
|
|
{ id: 'data', label: 'Data', icon: Database },
|
|
{ id: 'danger', label: 'Danger Zone', icon: AlertTriangle },
|
|
];
|