forked from hashirshoaeb/home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
160 lines (150 loc) · 5.49 KB
/
config.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
// Navigation Bar SECTION
const navBar = {
show: true,
};
// Main Body SECTION
const mainBody = {
gradientColors: "#4484ce, #1ad7c0, #ff9b11, #9b59b6, #ff7f7f, #ecf0f1",
firstName: "Thomas",
middleName: "",
lastName: "Bekkenes",
message: " Working i infosec in public sector. I run Arch btw. ",
icons: [
{
image: "fa-github",
url: "https://github.com/Bekkenes",
},
{
image: "fa-facebook",
url: "https://www.facebook.com/MightyBekkenes",
},
{
image: "fa-instagram",
url: "https://www.instagram.com/mightybekkenes/",
},
{
image: "fa-linkedin",
url: "https://www.linkedin.com/in/bekkenes/",
},
{
image: "fa-twitter",
url: "https://www.twitter.com/ThomasBekkenes/",
},
],
};
// ABOUT SECTION
// If you want the About Section to show a profile picture you can fill the profilePictureLink either with:
//a) your Instagram username
// i.e:profilePictureLink:"johnDoe123",
//b) a link to an hosted image
// i.e:profilePictureLink:"www.picturesonline.com/johnDoeFancyAvatar.jpg",
//c) image in "editable-stuff" directory and use require("") to import here,
// i.e: profilePictureLink: require("../editable-stuff/hashirshoaeb.png"),
//d) If you do not want any picture to be displayed, just leave it empty :)
// i.e: profilePictureLink: "",
// For Resume either provide link to your resume or import from "editable-stuff" directory
// i.e resume: require("../editable-stuff/resume.pdf"),
// resume: "https://docs.google.com/document/d/13_PWdhThMr6roxb-UFiJj4YAFOj8e_bv3Vx9UHQdyBQ/edit?usp=sharing",
const about = {
show: true,
heading: "About Me",
imageLink: require("../editable-stuff/hashirshoaeb.png"),
imageSize: 375,
message:
"My name is Hashir Shoaib. I’m a graduate of 2020 from National University of Sciences and Technology at Islamabad with a degree in Computer Engineering. I'm most passionate about giving back to the community, and my goal is to pursue this passion within the field of software engineering. In my free time I like working on open source projects.",
resume: "https://docs.google.com/document/d/13_PWdhThMr6roxb-UFiJj4YAFOj8e_bv3Vx9UHQdyBQ/edit?usp=sharing",
};
// PROJECTS SECTION
// Setting up project lenght will automatically fetch your that number of recently updated projects, or you can set this field 0 to show none.
// i.e: reposLength: 0,
// If you want to display specfic projects, add the repository names,
// i.e ["repository-1", "repo-2"]
const repos = {
show: true,
heading: "Recent Projects",
gitHubUsername: "Bekkenes", //i.e."johnDoe12Gh"
reposLength: 4,
specificRepos: [],
};
// Leadership SECTION
const leadership = {
show: false,
heading: "Leadership",
message:
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vitae auctor eu augue ut lectus arcu bibendum at varius. Libero justo laoreet sit amet cursus sit amet. Imperdiet dui accumsan sit amet nulla facilisi morbi. At auctor urna nunc id. Iaculis urna id volutpat lacus laoreet non curabitur gravida. Et magnis dis parturient montes nascetur ridiculus mus mauris. In nisl nisi scelerisque eu ultrices vitae auctor. Mattis nunc sed blandit libero volutpat sed cras ornare. Pulvinar neque laoreet suspendisse interdum consectetur libero.",
images: [
{
img: require("../editable-stuff/bekkenes.png"),
label: "First slide label",
paragraph: "Nulla vitae elit libero, a pharetra augue mollis interdum."
},
{
img: require("../editable-stuff/bekkenes.png"),
label: "Second slide label",
paragraph: "Nulla vitae elit libero, a pharetra augue mollis interdum."
},
],
imageSize: {
width:"615",
height:"450"
}
};
// SKILLS SECTION
const skills = {
show: true,
heading: "Skills",
hardSkills: [
{ name: "Python", value: 90 },
{ name: "SQL", value: 75 },
{ name: "Data Structures", value: 85 },
{ name: "C/C++", value: 65 },
{ name: "JavaScript", value: 90 },
{ name: "React", value: 65 },
{ name: "HTML/CSS", value: 55 },
{ name: "C#", value: 80 },
],
softSkills: [
{ name: "Goal-Oriented", value: 80 },
{ name: "Collaboration", value: 90 },
{ name: "Positivity", value: 75 },
{ name: "Adaptability", value: 85 },
{ name: "Problem Solving", value: 75 },
{ name: "Empathy", value: 90 },
{ name: "Organization", value: 70 },
{ name: "Creativity", value: 90 },
],
};
// GET IN TOUCH SECTION
const getInTouch = {
show: false,
heading: "Get In Touch",
message:
"I'm currently looking for full-time Software Engineering or Machine Learning opportunities! If you know of any positions available, if you have any questions, or if you just want to say hi, please feel free to email me at",
email: "[email protected]",
};
const experiences = {
show: false,
heading: "Experiences",
data: [
{
role: 'Infosec consultant',// Here Add Company Name
companylogo: require('../assets/img/oygarden.png'),
date: 'january 2020 – Present',
},
{
role: 'IT-consultant',
companylogo: require('../assets/img/oygarden.png'),
date: 'april 2015 – desember 2019',
},
{
role: 'IT-consultant',
companylogo: require('../assets/img/equinor.png'),
date: 'january 2008 – march 2015',
},
]
}
// Blog SECTION
// const blog = {
// show: false,
// };
export { navBar, mainBody, about, repos, skills, leadership, getInTouch, experiences };