-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathexternal_collaborator.dart
95 lines (92 loc) · 3.43 KB
/
external_collaborator.dart
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
import 'package:portfolio_brl_trainees/widgets/card.dart';
// ****************************************************** External Collaborator List ***************************************************************** //
List<BrlCard> externalColab = [
const BrlCard(
img:
'https://xcrescent.github.io/portfolio_brl_trainees/assets/assets/images/usererror.png',
name: 'NAME',
memberType: 'External Collaborator',
domain: 'App Developer',
git: 'https://github.com/xcrescent',
linked: 'https://www.linkedin.com/in/utkarsh-singh-jadon',
ig: 'https://www.instagram.com/fkjrodnd/',
),
const BrlCard(
img: 'assets/assets/images/Aman.png',
name: 'Aman Singh',
memberType: 'External Collaborator',
domain: 'Full Stack Developer',
git: 'https://github.com/aman1205',
linked: 'https://www.linkedin.com/in/aman-kumar-986448238',
ig: 'https://www.instagram.com/aman_singh.9223',
),
const BrlCard(
img:
'https://xcrescent.github.io/portfolio_brl_trainees/assets/assets/images/Aman.png',
name: 'Aman Singh',
memberType: 'External Collaborator',
domain: 'Web Developer',
git: 'https://github.com/aman1205',
linked: 'https://www.linkedin.com/in/aman-kumar-986448238',
ig: 'https://www.instagram.com/aman_singh.9223',
),
const BrlCard(
img:
'https://xcrescent.github.io/portfolio_brl_trainees/assets/assets/images/yaswanth_mitta.png',
name: 'Yaswanth Mitta',
memberType: 'External Collaborator',
domain: 'Flutter Developer',
git: 'https://github.com/Yaswanth-Mitta',
linked: 'https://www.linkedin.com/in/yaswanth-mitta',
ig: 'https://www.instagram.com/ninnu._kori/?hl=en',
),
const BrlCard(
img:
'https://xcrescent.github.io/portfolio_brl_trainees/assets/assets/images/suresh_sharma.jpeg',
name: 'Suresh Sharma',
memberType: 'External Collaborator',
domain: 'Flutter Developer',
git: 'https://github.com/iamsureshsharma',
linked: 'https://in.linkedin.com/in/iamsureshsharma',
ig: 'https://www.instagram.com/i_am_suresh_sharma/',
),
const BrlCard(
img:
'https://xcrescent.github.io/portfolio_brl_trainees/assets/assets/images/justin_roy.png',
name: 'Justin Roy',
memberType: 'External Collaborator',
domain: 'Flutter Developer',
git: 'https://github.com/Justin-roy',
linked: 'https://www.linkedin.com/in/justin-roy-4817551ba/',
ig: 'https://www.instagram.com/justin._.roy/',
),
const BrlCard(
img: 'https://avatars.githubusercontent.com/u/75848598?v=4',
name: 'Ishita Pathak',
memberType: 'External Collaborator',
domain: 'Flutter Developer',
git: 'https://github.com/IshitaPathak',
linked: 'https://www.linkedin.com/in/ishita-pathak-119437201/',
ig: 'https://twitter.com/IshitaPathak_',
),
const BrlCard(
img:
'https://xcrescent.github.io/portfolio_brl_trainees/assets/assets/images/roop.jpeg',
name: 'Roopam Barman',
memberType: 'External Collaborator',
domain: 'Flutter Developer',
git: 'https://github.com/Redvey',
linked: 'https://www.linkedin.com/in/roopam10',
ig: 'https://www.instagram.com/roo._.pam/',
),
const BrlCard(
img: 'https://google.com/image.png',
name: 'Arin Kulkarni',
memberType: 'External Collaborator',
domain: 'Develop',
git: 'https://github.com/akoolarni',
linked: 'https://www.linkedin.com/in/Arin_Kulkarni',
ig: 'https://www.instagram.com/arinnn_progeek',
),
// Add your own card here
];