forked from SusheelThapa/AidSys-Back-End
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopulate.js
1298 lines (1274 loc) · 33.3 KB
/
populate.js
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
require("dotenv").config();
const mongoose = require("mongoose");
const bcrypt = require("bcryptjs");
const { Assets } = require("./modules/Asset");
const { Auth } = require("./modules/Auth");
const { Notice } = require("./modules/Notices");
const { Project } = require("./modules/Projects");
const { Student, createStudent } = require("./modules/Student");
const { BCRYPT_SALT_ROUND } = process.env;
mongoose.set("strictQuery", true);
/*Connecting to database*/
mongoose
.connect("mongodb://127.0.0.1/aidsys")
.then(() => console.log("Successfully connect to mongodb"))
.catch((err) => console.error("Connection err", err));
/*Encrypting password*/
const encryptPassword = (plainPassword) => {
const salt = bcrypt.genSaltSync(parseInt(BCRYPT_SALT_ROUND));
const hashedPassword = bcrypt.hashSync(plainPassword, salt);
return hashedPassword;
};
/*Student Details*/
const students = [
{
name: "John Doe",
faculty: "Computer Science",
batch: 2022,
interest: "Artificial Intelligence",
bio: "A computer science student with a passion for AI.",
phonenumber: "+977-981-123-4567",
email: "[email protected]",
githubLink: "johndoe",
faceboook: "johndoe",
instagram: "johndoe",
twitter: "johndoe",
username: "johndoe",
password: "johndoe",
},
{
name: "Jane Smith",
faculty: "Business",
batch: 2022,
interest: "Entrepreneurship",
bio: "A business student with an interest in starting her own company.",
phonenumber: "+977-982-234-5678",
email: "[email protected]",
githubLink: "janesmith",
faceboook: "janesmith",
instagram: "janesmith",
twitter: "janesmith",
username: "janesmith",
password: "janesmith",
},
{
name: "Bob Johnson",
faculty: "Engineering",
batch: 2021,
interest: "Robotics",
bio: "An engineering student with a focus on robotics.",
phonenumber: "+977-983-345-6789",
email: "[email protected]",
githubLink: "bobjohnson",
faceboook: "bobjohnson",
instagram: "bobjohnson",
twitter: "bobjohnson",
username: "bobjohnson",
password: "bobjohnson",
},
{
name: "Michael Brown",
faculty: "Computer Science",
batch: 2022,
interest: "Machine Learning",
bio: "A computer science student with an interest in machine learning.",
phonenumber: "+977-981-234-5678",
email: "[email protected]",
githubLink: "michaelbrown",
faceboook: "michaelbrown",
instagram: "michaelbrown",
twitter: "michaelbrown",
username: "michaelbrown",
password: "michaelbrown",
},
{
name: "Emily Davis",
faculty: "Business",
batch: 2022,
interest: "Marketing",
bio: "A business student with a focus on marketing.",
phonenumber: "+977-982-345-6789",
email: "[email protected]",
githubLink: "emilydavis",
faceboook: "emilydavis",
instagram: "emilydavis",
twitter: "emilydavis",
username: "emilydavis",
password: "emilydavis",
},
{
name: "Joshua Garcia",
faculty: "Engineering",
batch: 2021,
interest: "Civil Engineering",
bio: "An engineering student with an interest in civil engineering.",
phonenumber: "+977-983-456-7890",
email: "[email protected]",
githubLink: "joshuagarcia",
faceboook: "joshuagarcia",
instagram: "joshuagarcia",
twitter: "joshuagarcia",
username: "joshuagarcia",
password: "joshuagarcia",
},
{
name: "Matthew Rodriguez",
faculty: "Computer Science",
batch: 2022,
interest: "Cybersecurity",
bio: "A computer science student with a focus on cybersecurity.",
phonenumber: "+977-981-345-6789",
email: "[email protected]",
githubLink: "matthewrodriguez",
faceboook: "matthewrodriguez",
instagram: "matthewrodriguez",
twitter: "matthewrodriguez",
username: "matthewrodriguez",
password: "matthewrodriguez",
},
{
name: "Olivia Turner",
faculty: "Business",
batch: 2022,
interest: "Human Resources",
bio: "A business student with an interest in human resources.",
phonenumber: "+977-982-456-7890",
email: "[email protected]",
githubLink: "oliviaturner",
faceboook: "oliviaturner",
instagram: "oliviaturner",
twitter: "oliviaturner",
username: "oliviaturner",
password: "oliviaturner",
},
{
name: "David Lewis",
faculty: "Engineering",
batch: 2021,
interest: "Electrical Engineering",
bio: "An engineering student with a focus on electrical engineering.",
phonenumber: "+977-983-567-8901",
email: "[email protected]",
githubLink: "davidlewis",
faceboook: "davidlewis",
instagram: "davidlewis",
twitter: "davidlewis",
username: "davidlewis",
password: "davidlewis",
},
{
name: "James Green",
faculty: "Computer Science",
batch: 2022,
interest: "Game Development",
bio: "A computer science student with an interest in game development.",
phonenumber: "+977-981-456-7890",
email: "[email protected]",
githubLink: "jamesgreen",
faceboook: "jamesgreen",
instagram: "jamesgreen",
twitter: "jamesgreen",
username: "jamesgreen",
password: "jamesgreen",
},
{
name: "Benjamin Baker",
faculty: "Business",
batch: 2022,
interest: "Finance",
bio: "A business student with a focus on finance.",
phonenumber: "+977-982-567-8901",
email: "[email protected]",
githubLink: "benjaminbaker",
faceboook: "benjaminbaker",
instagram: "benjaminbaker",
twitter: "benjaminbaker",
username: "benjaminbaker",
password: "benjaminbaker",
},
{
name: "Brandon Cooper",
faculty: "Engineering",
batch: 2021,
interest: "Chemical Engineering",
bio: "An engineering student with an interest in chemical engineering.",
phonenumber: "+977-983-443-3434",
email: "[email protected]",
githubLink: "brandoncooper",
faceboook: "brandon",
instagram: "brandon",
twitter: "brandon",
username: "brandon",
password: "brandon",
},
{
name: "Abraham Lincoln",
faculty: "Computer Science",
batch: 2022,
interest: "Natural Language Processing",
bio: "A computer science student with an interest in natural language processing.",
phonenumber: "+977-981-111-2222",
email: "[email protected]",
githubLink: "alincoln",
faceboook: "alincoln",
instagram: "alincoln",
twitter: "alincoln",
username: "alincoln",
password: "alincoln",
},
{
name: "Barbara Martinez",
faculty: "Business",
batch: 2022,
interest: "Supply Chain Management",
bio: "A business student with a focus on supply chain management.",
phonenumber: "+977-982-222-3333",
email: "[email protected]",
githubLink: "bmartinez",
faceboook: "bmartinez",
instagram: "bmartinez",
twitter: "bmartinez",
username: "bmartinez",
password: "bmartinez",
},
{
name: "Carlos Rodriguez",
faculty: "Engineering",
batch: 2021,
interest: "Mechanical Engineering",
bio: "An engineering student with an interest in mechanical engineering.",
phonenumber: "+977-983-333-4444",
email: "[email protected]",
githubLink: "crodriguez",
faceboook: "crodriguez",
instagram: "crodriguez",
twitter: "crodriguez",
username: "crodriguez",
password: "crodriguez",
},
{
name: "Diana Perez",
faculty: "Computer Science",
batch: 2022,
interest: "Computer Vision",
bio: "A computer science student with a focus on computer vision.",
phonenumber: "+977-981-444-5555",
email: "[email protected]",
githubLink: "dperez",
faceboook: "dperez",
instagram: "dperez",
twitter: "dperez",
username: "dperez",
password: "dperez",
},
{
name: "Enrique Gomez",
faculty: "Business",
batch: 2022,
interest: "International Business",
bio: "A business student with an interest in international business.",
phonenumber: "+977-982-555-6666",
email: "[email protected]",
githubLink: "egomez",
faceboook: "egomez",
instagram: "egomez",
twitter: "egomez",
username: "egomez",
password: "egomez",
},
{
name: "Felipe Hernandez",
faculty: "Engineering",
batch: 2021,
interest: "Aerospace Engineering",
bio: "An engineering student with a focus on aerospace engineering.",
phonenumber: "+977-983-666-7777",
email: "[email protected]",
githubLink: "fhernandez",
faceboook: "fhernandez",
instagram: "fhernandez",
twitter: "fhernandez",
username: "fhernandez",
password: "fhernandez",
},
{
name: "Gabriel Martinez",
faculty: "Computer Science",
batch: 2022,
interest: "Data Science",
bio: "A computer science student with an interest in data science.",
phonenumber: "+977-981-777-8888",
email: "[email protected]",
githubLink: "gmartinez",
faceboook: "gmartinez",
instagram: "gmartinez",
twitter: "gmartinez",
username: "gmartinez",
password: "gmartinez",
},
{
name: "Hector Garcia",
faculty: "Business",
batch: 2022,
interest: "Operations Management",
bio: "A business student with a focus on operations management.",
phonenumber: "+977-982-888-9999",
email: "[email protected]",
githubLink: "hgarcia",
faceboook: "hgarcia",
instagram: "hgarcia",
twitter: "hgarcia",
username: "hgarcia",
password: "hgarcia",
},
{
name: "Ismael Martinez",
faculty: "Engineering",
batch: 2021,
interest: "Nuclear Engineering",
bio: "An engineering student with an interest in nuclear engineering.",
phonenumber: "+977-983-999-0000",
email: "[email protected]",
githubLink: "imartinez",
faceboook: "imartinez",
instagram: "imartinez",
twitter: "imartinez",
username: "imartinez",
password: "imartinez",
},
];
/*Notice Details*/
const notices = [
{
heading: "Meeting with CEO",
description:
"This is a description of a meeting with the CEO to discuss company strategy.",
},
{
heading: "Staff Training",
description:
"Description of staff training sessions to improve customer service skills.",
},
{
heading: "Product Launch",
description: "Description of the launch of a new product.",
},
{
heading: "Sales Meeting",
description:
"Description of a meeting to discuss sales goals and strategies.",
},
{
heading: "Marketing Campaign",
description:
"Description of a marketing campaign to promote a new product.",
},
{
heading: "Annual Budget Meeting",
description:
"Description of the annual budget meeting to discuss financial plans.",
},
{
heading: "Customer Service Meeting",
description: "Description of a meeting to discuss customer service issues.",
},
{
heading: "Board of Directors Meeting",
description:
"Description of a meeting with the board of directors to discuss company plans",
},
{
heading: "IT Maintenance",
description:
"Description of IT maintenance to improve network performance.",
},
{
heading: "HR Meeting",
description: "Description of a meeting to discuss human resources issues.",
},
{
heading: "New Hire Orientation",
description:
"Description of a new hire orientation to welcome new employees.",
},
{
heading: "Team Building Event",
description: "Description of a team building event to improve teamwork.",
},
{
heading: "Research and Development Meeting",
description:
"Description of a meeting to discuss new ideas and research projects.",
},
{
heading: "Performance Review",
description:
"Description of a performance review to assess employee performance.",
},
{
heading: "Inventory Audit",
description: "Description of an inventory audit to check stock levels.",
},
{
heading: "Legal Meeting",
description:
"Description of a meeting with legal team to discuss pending lawsuits.",
},
{
heading: "Supplier Meeting",
description:
"Description of a meeting with suppliers to discuss product delivery.",
},
{
heading: "Marketing Meeting",
description: "Description of a marketing meeting to discuss",
},
];
/*Project Details*/
const projects = [
{
name: "VSUS",
description: "Feel the VSUS, Fall for VSUS",
link: "https://github.com/Rajendrakhanal/vsus",
categories: ["Other"],
teammember: [
{ name: "Rajendra Khanal", link: "https://github.com/Rajendrakhanal" },
{ name: "Susheel Thapa", link: "https://github.com/Rajendrakhanal" },
{ name: "Ujjwal Jha", link: "https://github.com/Ujj1225" },
{
name: "Saurav Kumar Mahato",
link: "https://github.com/SauravKumarMahato",
},
],
},
{
name: "A Phone Call",
description: "Simulation of Call App",
link: "https://github.com/SusheelThapa/A-Phone-Call",
categories: ["Other"],
teammember: [
{ name: "Susheel Thapa", link: "https://github.com/Rajendrakhanal" },
{
name: "Saurav Kumar Mahato",
link: "https://github.com/SauravKumarMahato",
},
],
},
{
name: "Fractal Generator",
description: "Fractal Generator",
link: "https://github.com/SuprimDevkota/SDL-Projects/tree/main/FractalGenerator",
categories: ["Other"],
teammember: [
{ name: "Suprim Devkota", link: "https://github.com/SuprimDevkota" },
],
},
{
name: "Call Break",
description: "Call Break",
link: "https://github.com/SwikarGautam/Call-Break",
categories: ["Other", "Card Game"],
teammember: [
{ name: "Sujan Koirala", link: "https://github.com/Sujan-Koirala021" },
{ name: "Swikar Gautamn", link: "https://github.com/SwikarGautam" },
],
},
{
name: "GH-REST",
description: "Show github data in website using github rest api",
link: "https://github.com/parikshitadhikari/gh-rest",
categories: ["Other"],
teammember: [
{
name: "Parikshit Adhikari",
link: "https://github.com/parikshitadhikari",
},
],
},
{
name: "Chrome Extension",
description: "An extension for chrome browser",
link: "https://github.com/Ujj1225/Chrome-Extension",
categories: ["Other"],
teammember: [{ name: "Ujjwal Jha", link: "https://github.com/Ujj1225" }],
},
{
name: "Smart City App",
description:
"A mobile app that connects citizens with city services and information",
link: "https://smartcityapp.com",
categories: ["AI"],
teammember: [
{
name: "John Smith",
link: "https://github.com/johnsmith",
},
{
name: "Jane Doe",
link: "https://github.com/janedoe",
},
],
},
{
name: "Eco-Friendly Cars",
description:
"A website that provides information and resources for purchasing electric cars",
link: "https://ecofriendlycars.com",
categories: ["AI"],
teammember: [
{
name: "Michael Johnson",
link: "https://github.com/michaeljohnson",
},
{
name: "Emily Davis",
link: "https://github.com/emilydavis",
},
],
},
{
name: "Online MarketPlace",
description: "An e-commerce platform connecting buyers and sellers",
link: "https://onlinemarketplace.com",
categories: ["AI"],
teammember: [
{
name: "Emily Davis",
link: "https://github.com/emilydavis",
},
{
name: "Robert Miller",
link: "https://github.com/robertmiller",
},
],
},
{
name: "Virtual Fitness",
description: "A virtual reality fitness app",
link: "https://virtualfitness.com",
categories: ["AI"],
teammember: [
{
name: "Robert Miller",
link: "https://github.com/robertmiller",
},
{
name: "Karen Garcia",
link: "https://github.com/karengarcia",
},
{
name: "Nancy Rodriguez",
link: "https://github.com/nancyrodriguez",
},
],
},
{
name: "Green Energy",
description: "An online platform for purchasing green energy products",
link: "https://greenenergy.com",
categories: ["AI"],
teammember: [
{
name: "Joseph Martinez",
link: "https://github.com/josephmartinez",
},
{
name: "Michael Brown",
link: "https://github.com/michaelbrown",
},
{
name: "David Garcia",
link: "https://github.com/davidgarcia",
},
],
},
{
name: "Education Hub",
description: "A platform for online education and professional development",
link: "https://educationhub.com",
categories: ["Other"],
teammember: [
{
name: "Mark Davis",
link: "https://github.com/markdavis",
},
{
name: "Jennifer Perez",
link: "https://github.com/jenniferperez",
},
],
},
{
name: "Social Media Platform",
description:
"A platform for connecting and sharing with friends and family",
link: "https://socialmediaplatform.com",
categories: ["DS"],
teammember: [
{
name: "Richard Rodriguez",
link: "https://github.com/richardrodriguez",
},
{
name: "Charles Martinez",
link: "https://github.com/charlesmartinez",
},
],
},
{
name: "Weather App",
description: "A mobile app that provides weather forecasts and alerts",
link: "https://weatherapp.com",
categories: ["DS"],
teammember: [
{
name: "Matthew Robinson",
link: "https://github.com/matthewrobinson",
},
{
name: "Joshua Hernandez",
link: "https://github.com/joshuahernandez",
},
],
},
{
name: "Job Search Engine",
description: "A website for searching and applying for jobs",
link: "https://jobsearchengine.com",
categories: ["DS"],
teammember: [
{
name: "Andrew Thompson",
link: "https://github.com/andrewthompson",
},
{
name: "Brian Torres",
link: "https://github.com/briantorres",
},
{
name: "Kevin Gomez",
link: "https://github.com/kevingomez",
},
{
name: "Suarez Tamang",
link: "https://github.com/suareztamang",
},
],
},
{
name: "Virtual Tour Guide",
description:
"A virtual reality app that provides tours of historical and tourist locations",
link: "https://virtualtourguide.com",
categories: ["DS"],
teammember: [
{
name: "Michael Johnson",
link: "https://github.com/michaeljohnson",
},
{
name: "Emily Davis",
link: "https://github.com/emilydavis",
},
{
name: "Robert Miller",
link: "https://github.com/robertmiller",
},
],
},
{
name: "Car Sharing Service",
description: "A platform for sharing and renting cars",
link: "https://carsharing.com",
categories: ["DS"],
teammember: [
{
name: "Mark Davis",
link: "https://github.com/markdavis",
},
{
name: "Jennifer Perez",
link: "https://github.com/jenniferperez",
},
{
name: "Richard Rodriguez",
link: "https://github.com/richardrodriguez",
},
],
},
{
name: "Pet Adoption Platform",
description: "A platform for adopting and fostering pets",
link: "https://petadoption.com",
categories: ["DS"],
teammember: [
{
name: "Michael Johnson",
link: "https://github.com/michaeljohnson",
},
{
name: "Emily Davis",
link: "https://github.com/emilydavis",
},
],
},
{
name: "Online Auction Platform",
description: "A platform for buying and selling items through auctions",
link: "https://onlineauction.com",
categories: ["WebDev"],
teammember: [
{
name: "Jennifer Perez",
link: "https://github.com/jenniferperez",
},
{
name: "Richard Rodriguez",
link: "https://github.com/richardrodriguez",
},
{
name: "Charles Martinez",
link: "https://github.com/charlesmartinez",
},
{
name: "Matthew Robinson",
link: "https://github.com/matthewrobinson",
},
],
},
{
name: "Online Recipe Platform",
description: "A platform for sharing and discovering recipes",
link: "https://onlinerecipe.com",
categories: ["WebDev"],
teammember: [
{
name: "Michael Brown",
link: "https://github.com/michaelbrown",
},
{
name: "David Garcia",
link: "https://github.com/davidgarcia",
},
],
},
{
name: "Online Job Board",
description: "A platform for posting and finding job opportunities",
link: "https://onlinejobboard.com",
categories: ["WebDev"],
teammember: [
{
name: "Michael Johnson",
link: "https://github.com/michaeljohnson",
},
{
name: "Emily Davis",
link: "https://github.com/emilydavis",
},
],
},
{
name: "Online Legal Platform",
description: "A platform for connecting with legal services and resources",
link: "https://onlinelegal.com",
categories: ["WebDev"],
teammember: [
{
name: "Joseph Martinez",
link: "https://github.com/josephmartinez",
},
{
name: "Michael Brown",
link: "https://github.com/michaelbrown",
},
],
},
{
name: "Online Investment Platform",
description:
"A platform for managing and investing in stocks, bonds and other assets",
link: "https://onlineinvestment.com",
categories: ["WebDev"],
teammember: [
{
name: "Michael Johnson",
link: "https://github.com/michaeljohnson",
},
{
name: "Emily Davis",
link: "https://github.com/emilydavis",
},
],
},
{
name: "Online Translation Platform",
description: "A platform for translating text and speech",
link: "https://onlinetranslation.com",
categories: ["WebDev"],
teammember: [
{
name: "Jennifer Perez",
link: "https://github.com/jenniferperez",
},
{
name: "Richard Rodriguez",
link: "https://github.com/richardrodriguez",
},
{
name: "Charles Martinez",
link: "https://github.com/charlesmartinez",
},
{
name: "Matthew Robinson",
link: "https://github.com/matthewrobinson",
},
],
},
{
name: "Online Mental Health Platform",
description:
"A platform for connecting with mental health resources and professionals",
link: "https://onlinementalhealth.com",
categories: ["AppDev"],
teammember: [
{
name: "Joseph Martinez",
link: "https://github.com/josephmartinez",
},
{
name: "Michael Brown",
link: "https://github.com/michaelbrown",
},
],
},
{
name: "Online Therapy Platform",
description: "A platform for connecting with online therapy services",
link: "https://onlinetherapy.com",
categories: ["AppDev"],
teammember: [
{
name: "Michael Brown",
link: "https://github.com/michaelbrown",
},
{
name: "David Garcia",
link: "https://github.com/davidgarcia",
},
],
},
{
name: "Online Personal Finance Platform",
description: "A platform for managing personal finances and budgeting",
link: "https://onlinepersonalfinance.com",
categories: ["AppDev"],
teammember: [
{
name: "Joseph Martinez",
link: "https://github.com/josephmartinez",
},
{
name: "Michael Brown",
link: "https://github.com/michaelbrown",
},
],
},
{
name: "Online Insurance Platform",
description: "A platform for buying and managing insurance policies",
link: "https://onlineinsurance.com",
categories: ["AppDev"],
teammember: [
{
name: "Jennifer Perez",
link: "https://github.com/jenniferperez",
},
{
name: "Richard Rodriguez",
link: "https://github.com/richardrodriguez",
},
{
name: "Charles Martinez",
link: "https://github.com/charlesmartinez",
},
{
name: "Matthew Robinson",
link: "https://github.com/matthewrobinson",
},
],
},
{
name: "Online Tax Preparation Platform",
description: "A platform for preparing and filing taxes online",
link: "https://onlinetaxpreparation.com",
categories: ["AppDev"],
teammember: [
{
name: "Joseph Martinez",
link: "https://github.com/josephmartinez",
},
{
name: "Michael Brown",
link: "https://github.com/michaelbrown",
},
],
},
{
name: "Online Marketplace",
description:
"An e-commerce platform for buying and selling a variety of goods",
link: "https://onlinemarketplace.com",
categories: ["AppDev"],
teammember: [
{
name: "Joseph Martinez",
link: "https://github.com/josephmartinez",
},
{
name: "Michael Brown",
link: "https://github.com/michaelbrown",
},
],
},
{
name: "Online Fitness Platform",
description:
"A platform for fitness tracking, workout plans and virtual classes",
link: "https://onlinefitness.com",
categories: ["Other"],
teammember: [
{
name: "Michael Brown",
link: "https://github.com/michaelbrown",
},
{
name: "David Garcia",
link: "https://github.com/davidgarcia",
},
],
},
{
name: "Online Music Platform",
description: "A platform for streaming and listening to music",
link: "https://onlinemusic.com",
categories: ["Other"],
teammember: [
{
name: "Joseph Martinez",
link: "https://github.com/josephmartinez",
},
{
name: "Michael Brown",
link: "https://github.com/michaelbrown",
},
],
},
{
name: "Online Movie and TV Platform",
description: "A platform for streaming movies and TV shows",
link: "https://onlinemovies.com",
categories: ["Other"],
teammember: [
{
name: "Joseph Martinez",
link: "https://github.com/josephmartinez",
},
{
name: "Michael Brown",
link: "https://github.com/michaelbrown",
},
],
},
{
name: "Online News Platform",
description: "A platform for reading and sharing news articles",
link: "https://onlinenews.com",
categories: ["Other"],