| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- import {
- IconBarrierBlock,
- IconBrowserCheck,
- IconBug,
- IconChecklist,
- IconError404,
- IconHelp,
- IconLayoutDashboard,
- IconLock,
- IconLockAccess,
- IconMessages,
- IconNotification,
- IconPackages,
- IconPalette,
- IconServerOff,
- IconSettings,
- IconTool,
- IconUserCog,
- IconUserOff,
- IconUsers,
- } from '@tabler/icons-react'
- import { AudioWaveform, Command, GalleryVerticalEnd } from 'lucide-react'
- import { type SidebarData } from '../types'
- export const sidebarData: SidebarData = {
- user: {
- name: 'satnaing',
- email: 'satnaingdev@gmail.com',
- avatar: '/avatars/shadcn.jpg',
- },
- teams: [
- {
- name: 'Shadcn Admin',
- logo: Command,
- plan: 'Vite + ShadcnUI',
- },
- {
- name: 'Acme Inc',
- logo: GalleryVerticalEnd,
- plan: 'Enterprise',
- },
- {
- name: 'Acme Corp.',
- logo: AudioWaveform,
- plan: 'Startup',
- },
- ],
- navGroups: [
- {
- title: 'General',
- items: [
- {
- title: 'Dashboard',
- url: '/dashboard',
- icon: IconLayoutDashboard,
- },
- {
- title: 'Tasks',
- url: '/tasks',
- icon: IconChecklist,
- },
- {
- title: 'Apps',
- url: '/apps',
- icon: IconPackages,
- },
- {
- title: 'Chats',
- url: '/chats',
- badge: '3',
- icon: IconMessages,
- },
- {
- title: 'Users',
- url: '/users',
- icon: IconUsers,
- },
- ],
- },
- {
- title: 'Pages',
- items: [
- {
- title: 'Auth',
- icon: IconLockAccess,
- items: [
- {
- title: 'Sign In',
- url: '/sign-in',
- },
- {
- title: 'Sign In (2 Col)',
- url: '/sign-in-2',
- },
- {
- title: 'Sign Up',
- url: '/sign-up',
- },
- {
- title: 'Forgot Password',
- url: '/forgot-password',
- },
- {
- title: 'OTP',
- url: '/otp',
- },
- ],
- },
- {
- title: 'Errors',
- icon: IconBug,
- items: [
- {
- title: 'Unauthorized',
- url: '/401',
- icon: IconLock,
- },
- {
- title: 'Forbidden',
- url: '/403',
- icon: IconUserOff,
- },
- {
- title: 'Not Found',
- url: '/404',
- icon: IconError404,
- },
- {
- title: 'Internal Server Error',
- url: '/500',
- icon: IconServerOff,
- },
- {
- title: 'Maintenance Error',
- url: '/503',
- icon: IconBarrierBlock,
- },
- ],
- },
- ],
- },
- {
- title: 'Other',
- items: [
- {
- title: 'Settings',
- icon: IconSettings,
- items: [
- {
- title: 'Profile',
- url: '/settings',
- icon: IconUserCog,
- },
- {
- title: 'Account',
- url: '/settings/account',
- icon: IconTool,
- },
- {
- title: 'Appearance',
- url: '/settings/appearance',
- icon: IconPalette,
- },
- {
- title: 'Notifications',
- url: '/settings/notifications',
- icon: IconNotification,
- },
- {
- title: 'Display',
- url: '/settings/display',
- icon: IconBrowserCheck,
- },
- ],
- },
- {
- title: 'Help Center',
- url: '/help-center',
- icon: IconHelp,
- },
- ],
- },
- ],
- }
|