export interface menu { header?: string; title?: string; icon?: any; id?: number; to?: string; chip?: string; BgColor?: string; chipBgColor?: string; chipColor?: string; chipVariant?: string; chipIcon?: string; children?: menu[]; disabled?: boolean; type?: string; subCaption?: string; } const sidebarItem: menu[] = [ { header: 'dashboards', id: 1, children: [ { title: 'Dashboard1', icon: 'widget-add-line-duotone', to: '/dashboards/dashboard1' }, { title: 'Dashboard2', icon: 'chart-line-duotone', to: '/dashboards/dashboard2' }, { title: 'Dashboard3', icon: 'screencast-2-line-duotone', to: '/dashboards/dashboard3' }, { title: 'Front Pages', icon: 'home-angle-linear', to: '/', children: [ { title: 'Homepage', to: '/front-page/homepage' }, { title: 'About Us', to: '/front-page/about-us' }, { title: 'Blog', to: '/front-page/blog/posts' }, { title: 'Blog Details', to: '/front-page/blog/early-black-friday-amazon-deals-cheap-tvs-headphones' }, { title: 'Contact Us', to: '/front-page/contact-us' }, { title: 'Portfolio', to: '/front-page/portfolio' }, { title: 'Pricing', to: '/front-page/pricing' } ] }, ] }, { header: 'apps', id: 1, children: [ { title: 'ECommerce', icon: 'cart-3-line-duotone', to: '/ecommerce/', children: [ { title: 'Shop', to: '/ecommerce/products' }, { title: 'Detail', to: '/ecommerce/product/detail/1' }, { title: 'List', to: '/ecommerce/productlist' }, { title: 'Checkout', to: '/ecommerce/checkout' }, { title: 'Add Product', to: '/ecommerce/add-product' }, { title: 'Edit Product', to: '/ecommerce/edit-product' } ] }, { title: 'Blog', icon: 'widget-4-line-duotone', to: '/', children: [ { title: 'Blog Posts', to: '/apps/blog/posts' }, { title: 'Blog Details', to: '/apps/blog/early-black-friday-amazon-deals-cheap-tvs-headphones' } ] }, { title: 'User Profile', icon: 'shield-user-line-duotone', to: '/', children: [ { title: 'Profile', to: '/apps/user/profile' }, { title: 'Followers', to: '/apps/user/profile/followers' }, { title: 'Friends', to: '/apps/user/profile/friends' }, { title: 'Gallery', to: '/apps/user/profile/gallery' } ] }, { title: 'Invoice', icon: 'bill-check-outline', to: '/', children: [ { title: 'List', to: '/apps/invoice' }, { title: 'Details', to: '/apps/invoice/details/102' }, { title: 'Create', to: '/apps/invoice/create' }, { title: 'Edit', to: '/apps/invoice/edit/102' } ] }, { title: 'Calendar', icon: 'calendar-mark-line-duotone', to: '/apps/calendar' }, { title: 'Email', icon: 'letter-linear', to: '/apps/email' }, { title: 'Chats', icon: 'chat-round-line-line-duotone', to: '/apps/chats' }, { title: 'Notes', icon: 'document-text-line-duotone', to: '/apps/notes' }, { title: 'Kanban', icon: 'airbuds-case-minimalistic-line-duotone', to: '/apps/kanban' }, { title: 'Contact', icon: 'iphone-line-duotone', to: '/apps/contacts' }, { title: 'Tickets', icon: 'ticker-star-outline', to: '/apps/tickets' }, ] }, { header: 'Widgets', id: 2, children: [ { title: 'Banners', icon: 'gallery-wide-line-duotone', to: '/template/widgets/banners' }, { title: 'Cards', icon: 'layers-minimalistic-line-duotone', to: '/template/widgets/cards' }, { title: 'Charts', icon: 'chart-line-duotone', to: '/template/widgets/charts' }, ] }, { header: 'UI Components', id: 3, children: [ { title: 'Alerts', icon: 'danger-triangle-line-duotone', to: '/template/ui-components/alerts' }, { title: 'Avatar', icon: 'user-circle-line-duotone', to: '/template/ui-components/avatar' }, { title: 'Buttons', icon: 'ghost-line-duotone', to: '/template/ui-components/buttons' }, { title: 'Cards', icon: 'layers-minimalistic-line-duotone', to: '/template/ui-components/cards' }, { title: 'Chip', icon: 'tag-horizontal-line-duotone', to: '/template/ui-components/chip' }, { title: 'Dialogs', icon: 'window-frame-line-duotone', to: '/template/ui-components/dialogs' }, { title: 'Expansion Panel', icon: 'hamburger-menu-line-duotone', to: '/template/ui-components/expansionPanel' }, { title: 'List', icon: 'list-line-duotone', to: '/template/ui-components/list' }, { title: 'Menus', icon: 'menu-dots-line-duotone', to: '/template/ui-components/menus' }, { title: 'Ratting', icon: 'star-line-duotone', to: '/template/ui-components/ratting' }, { title: 'Tables', icon: 'tablet-line-duotone', to: '/template/ui-components/tables' }, { title: 'Tabs', icon: 'notebook-line-duotone', to: '/template/ui-components/tabs' }, { title: 'Tooltip', icon: 'chat-round-dots-line-duotone', to: '/template/ui-components/tooltip' } ] }, { header: 'Style Components', id: 3, children: [ { title: 'Shadow', icon: 'copy-line-duotone', to: '/template/style-components/shadow' }, { title: 'Typography', icon: 'text-bold-circle-line-duotone', to: '/template/style-components/typography' } ] }, { header: 'Shared Components', id: 3, children: [ { title: 'Overview', icon: 'widget-5-line-duotone', to: '/template/shared-components' }, { title: 'UiParentCard & UiChildCard', icon: 'layers-minimalistic-line-duotone', to: '/template/shared-components/UiParentCard' }, { title: 'WidgetCard & WidgetCardv2', icon: 'chart-square-line-duotone', to: '/template/shared-components/WidgetCards' }, { title: 'Card Components', icon: 'card-2-line-duotone', to: '/template/shared-components/CardComponents' }, { title: 'BaseBreadcrumb', icon: 'route-line-duotone', to: '/template/shared-components/BaseBreadcrumb' }, { title: 'UiTextfieldPrimary', icon: 'text-field-line-duotone', to: '/template/shared-components/UiTextfieldPrimary' }, { title: 'AppBaseCard', icon: 'sidebar-minimalistic-line-duotone', to: '/template/shared-components/AppBaseCard' }, ] }, ]; export default sidebarItem;