import {
  BarChart2,
  Bolt,
  Briefcase,
  Calendar,
  ChartLine,
  ClipboardList,
  Cog,
  Download,
  FileChartLine,
  Grid,
  Handshake,
  Megaphone,
  Newspaper,
  Palette,
  SquareActivity,
  UserRoundCog,
  Users,
} from 'lucide-react';

export const MENU_SIDEBAR_MAIN = [
  {
    children: [
      {
        title: 'Home',
        path: '#',
        icon: Bolt,
      },
      {
        title: 'Updates',
        path: '/layout-20',
        icon: Users,
      },
      {
        title: 'Inbox',
        path: '#',
        icon: UserRoundCog,
      },
      {
        title: 'Clients',
        path: '#',
        icon: Cog,
        badge: 'Beta',
      },
      {
        title: 'My Tasks',
        path: '#',
        icon: ChartLine,
      },
    ],
  },
];

export const MENU_SIDEBAR_RESOURCES = [
  {
    title: 'Resources',
    children: [
      {
        title: 'About Metronic',
        path: '#',
        icon: Download,
      },
      {
        title: 'Advertise',
        path: '#',
        icon: FileChartLine,
        badge: 'Pro',
      },
      {
        title: 'Help',
        path: '#',
        icon: SquareActivity,
      },
      {
        title: 'Blog',
        path: '#',
        icon: Newspaper,
      },
      {
        title: 'Careers',
        path: '#',
        icon: Briefcase,
      },
      {
        title: 'Press',
        path: '#',
        icon: Megaphone,
      },
    ],
  },
];

export const MENU_SIDEBAR_WORKSPACES = [
  {
    title: 'Workspaces',
    children: [
      {
        title: 'Business Concepts',
        path: '#',
        icon: Briefcase,
      },
      {
        title: 'KeenThemes Studio',
        path: '#',
        icon: Palette,
      },
      {
        title: 'Teams',
        path: '#',
        icon: Handshake,
        badge: 'Pro',
      },
      {
        title: 'Reports',
        path: '#',
        icon: BarChart2,
      },
    ],
  },
];

export const MENU_TOOLBAR = [
  {
    title: 'List',
    path: '/layout-14',
    icon: ClipboardList,
  },
  {
    title: 'Kanban',
    path: '#',
    icon: Grid,
  },
  {
    title: 'Calendar',
    path: '#',
    icon: Calendar,
  },
  {
    title: 'Dashboard',
    path: '#',
    icon: Bolt,
  },
];
