forked from hashirshoaeb/home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
113 lines (98 loc) · 3.38 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
const configuration = {
//NAVIGATION BAR
showNavigationbar: true,
//MAIN VIEW
FirstName: "Bibin",
MiddleName: "",
LastName: "Varghese",
devDesc:
"Engineer ⚛ Entrepreneur ⚛ Data Scientist ⚛ Teacher ⚛ Editor ⚛ Programmer ",
//Background
backgroundType: "gradient",
plainBackgroundMode: "daylight",
gradientColors: "#4484ce, #1ad7c0, #ff9b11, #9b59b6, #ff7f7f, #ecf0f1",
//Social Media Link Icons
icons: [
{
image: "fa-github",
url: "https://github.com/bibinvargheset",
},
{
image: "fa-linkedin",
url: "https://www.linkedin.com/in/bibinvargheset/",
},
{
image: "fa-twitter",
url: "https://www.twitter.com/bibinvargheset/",
},
{
image: "fa-facebook",
url: "https://www.facebook.com/bibinvargheset",
},
{
image: "fa-instagram",
url: "https://www.instagram.com/bibinthekkan/",
},
{
image: "fa-stack-overflow",
url: "https://stackoverflow.com/users/3561865/bibinvargheset",
},
{
image: "fa-hackerrank",
url: "https://www.hackerrank.com/bibinvargheset",
},
{
image: "fa-kaggle",
url: "https://www.kaggle.com/bibinvargheset",
},
],
//ABOUT SECTION
aboutHeading: "About Me",
//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 you want to use as your personal picture (i.e:profilePictureLink:"www.picturesonline.com/johnDoeFancyAvatar.jpg",)
//If you do not want any picture to be displayed, just leave it empty :)
profilePictureLink: "bibinthekkan",
aboutDescription:
" I'm an Electronic Engineer with graduated from CUSAT, Kerala, India, and pursued my M.Tech from Kannur University in Signal processing and Embedded system. I'm passionate about being an Engineer, who solves Challenging problems, using all the possible technologies such as programming, machine learning, statistical analysis, etc, and other practical tools.",
//PROJECTS SECTION
projectHeading: "Recent Projects",
gitHubLink: "https://api.github.com/users/",
gitHubQuery: "/repos?sort=updated&direction=desc",
gitHubUsername: "bibinvargheset", //i.e."johnDoe12Gh"
projectsLength: 4,
//BLOG SECTION
showBlog: false,
//SKILLS SECTION
showSkills: true,
hardSkills: [
{ name: "Python", value: 60 },
{ name: "Matlab", value: 65 },
{ name: "VHDL", value: 55 },
{ name: "Tcad", value: 75 },
{ name: "Latex", value: 65 },
{ name: "Data analysis", value: 55 },
{ name: "Engineering", value: 70 },
{ name: "GCP", value: 55 },
{ name: "Excel", value: 75 },
{ name: "Digital Sales", value: 75 },
{ name: "Operation Management", value: 65 },
{ name: "Ecommerce", value: 75 },
],
softSkills: [
{ name: "Goal-Oriented", value: 80 },
{ name: "Collaboration", value: 90 },
{ name: "Positivity", value: 85 },
{ name: "Adaptability", value: 95 },
{ name: "Problem Solving", value: 95 },
{ name: "Empathy", value: 90 },
{ name: "Organization", value: 70 },
{ name: "Creativity", value: 60 },
],
//GET IN TOUCH SECTION
showGetInTouch: true,
footerMessage:
"If you have any query or if you just want to say hi, please feel free to email me at",
emailAddress: "bibinvargheset+git@gmail.com",
};
export default configuration;