-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.ts
104 lines (102 loc) · 3.48 KB
/
team.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
const team = [
{
name: 'Shubham Singh',
description: 'Founder & Lead developer',
bio: 'A proud Indian | A Mistake Maker | A Learner | A Tech-Enthusiast',
github: 'https://github.com/ishubhamsingh',
xda: 'https://forum.xda-developers.com/member.php?u=5566914',
telegram: 'https://t.me/ishubhamsingh',
},
{
name: 'Amol Amrit',
description: 'Moderator & Developer',
bio: 'A guy with lots of hobbies | Nightwing | UnnamedDream',
github: 'https://github.com/amolamrit',
xda: 'https://forum.xda-developers.com/member.php?u=5615686',
telegram: 'https://t.me/amolamrit',
},
{
name: 'Aman Kumar',
description: 'SysAdmin',
bio: '| 16 | M | Android Developer | RD |',
github: 'https://github.com/firelord',
xda: 'https://forum.xda-developers.com/member.php?u=6257538',
telegram: 'https://t.me/firelord1',
},
{
name: 'Shubham Bhise',
description: 'Realme 2 Pro (RMX1801/RMX1807) Maintainer',
bio: 'Indian | Android enthusiast',
github: 'https://github.com/sb6596',
xda: 'https://forum.xda-developers.com/member.php?u=7666467',
telegram: 'https://t.me/sb6596',
},
{
name: 'Sagar Makhar',
description:
'Realme X (RMX1901) & ASUS Zenfone Max Pro M1 (X00TD) Maintainer',
bio: '',
github: 'https://github.com/SagarMakhar',
xda: 'https://forum.xda-developers.com/member.php?u=6268432',
telegram: 'https://t.me/sagarmakhar',
},
{
name: 'Gaurav Singh',
description: 'Developer & Designer',
bio: 'Open-source enthusiast',
github: 'https://github.com/illuzan',
xda: 'https://forum.xda-developers.com/m/allstargaurav.7751333/',
telegram: 'https://t.me/illuzan',
},
]
const contributors = [
{
name: 'Arghya Chanda',
description: 'Moderator & Developer',
bio: 'AEX for Whyred | A Tech-Connoisseur',
github: 'https://github.com/arghyac35',
xda: 'https://forum.xda-developers.com/member.php?u=8037603',
telegram: 'https://t.me/arghyac35',
},
{
name: 'ShivaTeja Peddi',
description: 'POCO F1 (beryllium) Maintainer',
bio: '',
github: 'https://github.com/ShivaTejapeddi',
xda: 'https://forum.xda-developers.com/member.php?u=7638319',
telegram: 'https://t.me/peddishivateja',
},
{
name: 'Davide Della Maddalena',
description: 'Zuk Z2 Manteiner',
bio: 'Android enthusiast | Vintage audio lover | Industrial Technical',
github: 'https://github.com/dmd79',
xda: 'https://forum.xda-developers.com/member.php?u=2823824',
telegram: 'https://t.me/dmd79',
},
{
name: 'Abdul Sakil Mondal',
description: 'Redmi Note 5 Pro (whyred) Maintainer',
bio: 'Android Lover | Learner | Indian | Civil Engineer | Part Time Developer',
github: 'https://github.com/SakilMondal',
xda: 'https://forum.xda-developers.com/member.php?u=6151980',
telegram: 'https://t.me/SakilMondal',
},
{
name: 'Sairam Majgaonkar',
description: 'Xiaomi Redmi 3s (land) Maintainer',
bio: 'Android Enthusiastic | Beginner | Part time developer | full time student',
github: 'https://github.com/sairam1411',
xda: 'https://forum.xda-developers.com/member.php?u=7111945',
telegram: 'https://t.me/Sairam60',
},
{
name: 'iKeramat',
description: 'Xiaomi Mi 5 (gemini) Maintainer',
bio: 'A curious boy who just wants to learn',
github: 'https://github.com/iKeramat',
xda: 'https://forum.xda-developers.com/member.php?u=6540480',
telegram: 'https://t.me/iKeramat',
},
]
export { team, contributors }