-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtrainee_list.dart
38 lines (36 loc) · 1.45 KB
/
trainee_list.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
import 'package:portfolio_brl_trainees/widgets/card.dart';
// ****************************************************** Trainee List ***************************************************************** //
List<BrlCard> trainees = [
const BrlCard(
img:
'https://xcrescent.github.io/portfolio_brl_trainees/assets/assets/images/gaurav_singh.png',
name: 'Gaurav Singh',
memberType: 'BRL Trainee',
domain: 'App Developer',
git: 'https://github.com/euclidstellar',
linked: 'https://www.linkedin.com/in/gaurav-singh-🚀-637686213/',
ig: 'https://www.instagram.com/euclid.stellar/',
),
const BrlCard(
img:
'https://xcrescent.github.io/portfolio_brl_trainees/assets/assets/images/usererror.png',
name: 'Gaurav ',
memberType: 'BRL Trainee',
domain: 'App Developer',
git: 'https://github.com/gauravydv007',
linked:
'https://www.linkedin.com/in/gaurav-singh-b710a1291?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app',
ig: 'https://www.instagram.com/gauravsingh_yaduvanshi',
),
const BrlCard(
img:
'https://xcrescent.github.io/portfolio_brl_trainees/assets/assets/images/maansi.png',
name: 'Maansi Garg',
memberType: 'BRL Trainee',
domain: 'App Developer',
git: 'https://github.com/Maansi06Garg',
linked: 'https://www.linkedin.com/in/maansi-garg-b93683249/',
ig: 'https://www.instagram.com/maansigarg06/',
),
// Add your own card here
];