Skip to content
This repository was archived by the owner on May 13, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions src/server/static-react/src/constants/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@ export interface TabDefinition {
group: "main" | "advanced";
}

export interface SidebarItem {
id: string;
label: string;
icon: string;
group: string;
}

// Tab Definitions
// Main tabs: core user-facing features (5 tabs max visible)
// Advanced tabs: developer/power-user tools in "More" dropdown
Expand Down Expand Up @@ -59,18 +52,6 @@ export const DEFAULT_TABS: readonly TabDefinition[] = [
{ id: "conflicts", label: "Sync Conflicts", icon: "⚡", group: "advanced" },
];

// Sidebar Navigation Items (used by Sidebar component)
export const SIDEBAR_ITEMS: readonly SidebarItem[] = [
{ id: "agent", label: "Agent", icon: "\u{1F916}", group: "MAIN" },
{ id: "data-browser", label: "Browse", icon: "\u{1F4CA}", group: "DATA" },
{ id: "query", label: "Query", icon: "\u{1F50D}", group: "DATA" },
{ id: "schemas", label: "Schemas", icon: "\u{1F4CB}", group: "DATA" },
{ id: "smart-folder", label: "Import", icon: "\u{1F4E5}", group: "IMPORT" },
{ id: "file-upload", label: "Files", icon: "\u{1F4C4}", group: "IMPORT" },
{ id: "people", label: "People", icon: "\u{1F465}", group: "SOCIAL" },
{ id: "discovery", label: "Discover", icon: "\u{1F310}", group: "SOCIAL" },
];

// Button Text Constants
export const BUTTON_TEXT = {
approve: "Approve",
Expand Down
Loading