-
Notifications
You must be signed in to change notification settings - Fork 0
/
mockAboutCards.js
90 lines (89 loc) · 3.51 KB
/
mockAboutCards.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
const mockAboutCards = [
{
superheading: {
name: 'Cornell University, B.S. Computer Science, Minor in Business for Engineers,',
period: '2019 - 2023',
logo: 'cornellSeal',
},
aboutContent: {
title: 'My Education',
one: {
bold: 'Advanced Technical Curriculum:',
content:
'Mastered complex concepts in Object-Oriented and Functional Programming, Networking, Embedded Systems, AI, and more, ensuring a deep technical understanding and practical application skills in computer science.',
},
two: {
bold: 'Practical Projects:',
content:
'Developed an AI agent that utilized neural networks and NLP, and analyzed the worldwide network coverage of Starlink Satellite Internet. Learn more in projects.',
},
three: {
bold: 'Business Mindset:',
content:
'Studies in business were pivotal in linking C.S. principles with their practical applications, ensuring technical solutions are grounded in solid business strategies.',
},
},
personalImage: {
name: 'harrisGrad',
side: 'right',
},
},
{
superheading: {
name: 'Cornell University Big Red Pep Band Conductor',
period: '2019 - 2023',
logo: 'cornellSeal',
},
aboutContent: {
title: 'Leadership',
one: {
bold: 'Dynamic Team Leadership:',
content:
'Led weekly rehearsals for a 100+-member band, focusing on musical excellence and teamwork.',
},
two: {
bold: 'Performance Excellence at Major Events:',
content:
'Conducted at high-energy sporting events, enhancing game atmospheres and audience engagement.',
},
three: {
bold: 'Innovative Feedback Integration:',
content:
'Introduced a voting system for music selection, boosting leadership satisfaction and team collaboration.',
},
},
personalImage: {
name: 'harrisConducting',
side: 'left',
},
},
{
superheading: {
name: 'Music and Teamworking: Marching Band',
period: '2013 - 2023',
logo: 'cornellSeal',
},
aboutContent: {
title: 'Teamwork',
one: {
bold: 'Long-Term Commitment:',
content:
'For over 10 years I played saxophone and served in various roles in my High School and College marching bands.',
},
two: {
bold: 'Flexible Team Player:',
content:
'During my time in Marching Band, I served in a variety of roles from Drum Major to Show Committee Chair designing formations and choosing music, to Section Leader and Librarian.',
},
three: {
bold: 'World Class Performances:',
content: 'From Madison Square Garden and 5th Avenue to Main Street Disney World and all 8 Ivy League Schools, I brought school spirit and cheer all over the Northeast.',
},
},
personalImage: {
name: 'harrisMarching',
side: 'right',
},
},
];
export default mockAboutCards;