- export const sidebarMenuItems = [
- {
- id: 'browse',
- label: 'Browse',
- icon: '🔍',
- url: {
- pathname: '/',
- },
- },
- {
- id: 'compose',
- label: 'Compose',
- icon: '🎵',
- url: {
- pathname: '/my/create/ringtones',
- },
- },
- {
- id: 'bin',
- label: 'Bin',
- icon: '🗑',
- url: {
- pathname: '/my/bin',
- },
- },
- ]
-
- export const moreLinkMenuItem = {
- label: 'More',
- icon: '···',
- url: {},
- }
|