generated from Real-Dev-Squad/website-template
-
Notifications
You must be signed in to change notification settings - Fork 64
/
constants.js
58 lines (57 loc) · 1.21 KB
/
constants.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const BASE_IMAGE_URL =
'https://raw.githubusercontent.com/Real-Dev-Squad/website-static/main/members';
const BASE_API_URL = process.env.NEXT_PUBLIC_BASE_API_URL;
const USER_DATA_URL = `${BASE_API_URL}/users/self`;
const WALLET_URL = `${BASE_API_URL}/wallet`;
const CURRENCIES = {
NEELAM: 'neelam',
DINERO: 'dinero',
};
const PATHS = {
HOME: 'https://www.realdevsquad.com',
PROFILE: 'https://my.realdevsquad.com/',
};
const NAV_MENU = [
{
name: 'Home',
url: 'https://www.realdevsquad.com/',
isActive: false,
},
{
name: 'Welcome',
url: 'https://welcome.realdevsquad.com/',
isActive: false,
},
{
name: 'Events',
url: 'http://realdevsquad.com/events.html',
isActive: false,
},
{
name: 'Members',
url: 'https://members.realdevsquad.com/',
isActive: false,
},
{
name: 'Crypto',
url: 'https://crypto.realdevsquad.com/',
isActive: true,
},
{
name: 'Status',
url: 'https://status.realdevsquad.com/',
isActive: false,
},
];
const LOGIN_URL =
'https://github.com/login/oauth/authorize?client_id=23c78f66ab7964e5ef97';
export {
BASE_IMAGE_URL,
BASE_API_URL,
USER_DATA_URL,
WALLET_URL,
CURRENCIES,
LOGIN_URL,
PATHS,
NAV_MENU,
};