| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- import { LayoutDashboard, Users, Play, Star, Tags } from 'lucide-react'
- import { type SidebarData } from '../types'
- import Logo from '@/assets/logo.svg'
- export const sidebarData: SidebarData = {
- teams: [
- {
- name: 'تلنتیار',
- logo: Logo,
- plan: 'ادمین پنل',
- },
- ],
- navGroups: [
- {
- title: 'عمومی',
- items: [
- {
- title: 'داشبورد',
- url: '/',
- icon: LayoutDashboard,
- },
- {
- title: 'کاربران',
- url: '/users',
- icon: Users,
- },
- {
- title: 'پست ها',
- url: '/posts',
- icon: Play,
- },
- {
- title: 'ارزیابی',
- url: '/evaluations',
- icon: Star,
- },
- {
- title: 'کد دعوت',
- url: '/referral-codes',
- icon: Tags,
- },
- // {
- // title: 'کامنت ها',
- // url: '/chats',
- // badge: '3',
- // icon: MessagesSquare,
- // },
- // {
- // title: 'Secured by Clerk',
- // icon: ClerkLogo,
- // items: [
- // {
- // title: 'Sign In',
- // url: '/clerk/sign-in',
- // },
- // {
- // title: 'Sign Up',
- // url: '/clerk/sign-up',
- // },
- // {
- // title: 'User Management',
- // url: '/clerk/user-management',
- // },
- // ],
- // },
- ],
- },
- // {
- // title: 'صفحات',
- // items: [
- // {
- // title: 'Auth',
- // icon: ShieldCheck,
- // 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: 'خطاها',
- // // icon: Bug,
- // // items: [
- // // {
- // // title: 'Unauthorized',
- // // url: '/errors/unauthorized',
- // // icon: Lock,
- // // },
- // // {
- // // title: 'Forbidden',
- // // url: '/errors/forbidden',
- // // icon: UserX,
- // // },
- // // {
- // // title: 'Not Found',
- // // url: '/errors/not-found',
- // // icon: FileX,
- // // },
- // // {
- // // title: 'Internal Server Error',
- // // url: '/errors/internal-server-error',
- // // icon: ServerOff,
- // // },
- // // {
- // // title: 'Maintenance Error',
- // // url: '/errors/maintenance-error',
- // // icon: Construction,
- // // },
- // // ],
- // // },
- // ],
- // },
- // {
- // title: 'دیگر',
- // items: [
- // {
- // title: 'Settings',
- // icon: Settings,
- // items: [
- // {
- // title: 'Profile',
- // url: '/settings',
- // icon: UserCog,
- // },
- // {
- // title: 'Account',
- // url: '/settings/account',
- // icon: Wrench,
- // },
- // {
- // title: 'Appearance',
- // url: '/settings/appearance',
- // icon: Palette,
- // },
- // {
- // title: 'Notifications',
- // url: '/settings/notifications',
- // icon: Bell,
- // },
- // {
- // title: 'Display',
- // url: '/settings/display',
- // icon: Monitor,
- // },
- // ],
- // },
- // {
- // title: 'Help Center',
- // url: '/help-center',
- // icon: HelpCircle,
- // },
- // ],
- // },
- ],
- }
|