-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.ts
126 lines (119 loc) · 1.64 KB
/
data.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
const projects = {
BD: 28,
US: 492,
NP: 3,
BY: 0,
IN: 90,
MT: 2,
ES: 22,
CZ: 4,
AU: 57,
DO: 2,
JM: 7,
HR: 7,
AT: 8,
TR: 12,
NL: 21,
RO: 2,
GB: 121,
BE: 14,
GR: 4,
MY: 25,
BW: 1,
DK: 5,
FR: 26,
PK: 19,
SA: 10,
NG: 22,
EG: 8,
SG: 12,
CA: 53,
SE: 3,
NO: 2,
AE: 26,
CO: 12,
ID: 5,
MU: 24,
ZA: 71,
RS: 4,
MA: 25,
IT: 35,
BS: 1,
GP: 1,
IL: 15,
BR: 12,
PT: 3,
MX: 12,
GH: 3,
HK: 7,
CH: 21,
DE: 52,
PL: 20,
CL: 6,
PH: 10,
RU: 7,
ZW: 1,
MD: 1,
KW: 7,
OM: 1,
KE: 3,
LK: 1,
NZ: 4,
AL: 3,
VN: 2,
QA: 2,
DZ: 1,
CM: 4,
UA: 5,
VE: 0,
IE: 8,
AZ: 1,
BB: 1,
CN: 5,
HU: 10,
UY: 1,
TZ: 1,
IS: 2,
PE: 3,
KH: 1,
BH: 1,
BG: 3,
PA: 3,
EC: 3,
PR: 1,
LV: 1,
PY: 1,
KR: 20,
JP: 30,
AR: 10,
TH: 8,
FI: 4,
SI: 3,
LT: 2,
SK: 2,
CR: 3,
GE: 1,
ME: 2,
FJ: 1,
SD: 2,
MG: 1,
TG: 1,
SZ: 1,
};
export const totalCountries = 195;
export const worldDominaation = Math.ceil(
(Object.values(projects).length * 100) / totalCountries,
);
export const totalProjects = Object.values(projects).reduce(
(total, project) => total + project,
0,
);
export const totalWebsiteFixes = 4100;
export const totalClients = totalProjects;
export const lastUpdate = '05 Nov 23';
export const getProjectsByCountryCode = (code: string) => {
// @ts-ignore
return projects[code] ?? 0;
};
export const cvLink =
'https://drive.google.com/file/d/1A6I4qF3WBwlKskaAT23G5volEAJ-9i4T/view?usp=sharing';