1import { 2 BuildIcon, 3 DeploymentIcon, 4 OverviewIcon, 5 SettingsIcon, 6 EasSubmitIcon, 7 ChannelIcon, 8 BranchIcon, 9 UpdateIcon, 10 CredentialIcon, 11 SecretsIcon, 12 SnackLogo, 13} from '@expo/styleguide'; 14 15export const entries = [ 16 { 17 label: 'Account Settings', 18 url: 'https://expo.dev/accounts/[account]/settings', 19 Icon: SettingsIcon, 20 }, 21 { 22 label: 'User Settings', 23 url: 'https://expo.dev/settings', 24 Icon: SettingsIcon, 25 }, 26 { 27 label: 'Snacks', 28 url: 'https://expo.dev/accounts/[account]/snacks', 29 Icon: SnackLogo, 30 }, 31 { 32 label: 'Project Overview', 33 url: 'https://expo.dev/accounts/[account]/projects/[project]', 34 Icon: OverviewIcon, 35 }, 36 { 37 label: 'Project Deployments', 38 url: 'https://expo.dev/accounts/[account]/projects/[project]/deployments', 39 Icon: DeploymentIcon, 40 }, 41 { 42 label: 'Project Builds', 43 url: 'https://expo.dev/accounts/[account]/projects/[project]/builds', 44 Icon: BuildIcon, 45 }, 46 { 47 label: 'Project Submissions', 48 url: 'https://expo.dev/accounts/[account]/projects/[project]/submissions', 49 Icon: EasSubmitIcon, 50 }, 51 { 52 label: 'Project Channels', 53 url: 'https://expo.dev/accounts/[account]/projects/[project]/channels', 54 Icon: ChannelIcon, 55 }, 56 { 57 label: 'Project Branches', 58 url: 'https://expo.dev/accounts/[account]/projects/[project]/branches', 59 Icon: BranchIcon, 60 }, 61 { 62 label: 'Project Updates', 63 url: 'https://expo.dev/accounts/[account]/projects/[project]/updates', 64 Icon: UpdateIcon, 65 }, 66 { 67 label: 'Project Credentials', 68 url: 'https://expo.dev/accounts/[account]/projects/[project]/credentials', 69 Icon: CredentialIcon, 70 }, 71 { 72 label: 'Project Secrets', 73 url: 'https://expo.dev/accounts/[account]/projects/[project]/secrets', 74 Icon: SecretsIcon, 75 }, 76 { 77 label: 'Project Settings', 78 url: 'https://expo.dev/accounts/[account]/projects/[project]/settings', 79 Icon: SettingsIcon, 80 }, 81]; 82