-
Notifications
You must be signed in to change notification settings - Fork 4
/
constants.ts
67 lines (52 loc) · 1.43 KB
/
constants.ts
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
59
60
61
62
63
64
65
66
67
export const SEO = {
DESCRIPTION:
"Refuge Worldwide is a community radio station and fundraising platform based in Berlin.",
ROOT: "https://refugeworldwide.com",
};
export const TWITTER_URL = "https://twitter.com/RefugeWorldwide";
export const INSTAGRAM_URL = "https://instagram.com/RefugeWorldwide/";
export const SOUNDCLOUD_URL = "https://soundcloud.com/RefugeWorldwide/";
export const MIXCLOUD_URL = "https://www.mixcloud.com/RefugeWorldwide/";
export const PATREON_URL = "https://www.patreon.com/refugeworldwide";
export const CONTACT_URL = "mailto:[email protected]";
export const SHOP_URL = "https://shop.refugeworldwide.com";
export const DISCORD_INVITE_URL =
"https://bit.ly/discord_refugeworldwide_invite";
export const DISCORD_SERVER_ID = "1077626733458620487";
export const DISCORD_CHANNEL_ID = "1077626735132164096";
export const TELEGRAM_URL = "https://t.me/refugeworldwide";
export const ALPHABET = [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K",
"L",
"M",
"N",
"O",
"P",
"Q",
"R",
"S",
"T",
"U",
"V",
"W",
"X",
"Y",
"Z",
"#",
];
export const REGEX = {
NUMERIC: new RegExp(/^\d+$/iu),
SPECIAL: new RegExp(/\W|_/iu),
};
export const ENDPOINT = `https://graphql.contentful.com/content/v1/spaces/${process.env.NEXT_PUBLIC_CONTENTFUL_SPACE_ID}/environments/${process.env.NEXT_PUBLIC_CONTENTFUL_ENVIRONMENT_ID}`;
export const FATHOM_SITE_ID = "WFNPQSZU";