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