-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
251 lines (238 loc) · 7.6 KB
/
data.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
import About from "@/components/About";
import Home from "@/components/Home";
import Projects from "@/components/Projects";
import Skills from "@/components/Skills";
import styles from "@/styles/variables.module.scss";
import Contact from "./components/Contact";
import Experience from "./components/Experience";
import {
CodeSlashIcon,
FileIcon,
GithubIcon,
GraduationCapIcon,
HomeIcon,
LinkedInIcon,
PaletteIcon,
PhoneIcon,
PlusIcon,
RocketIcon,
TestTubeIcon,
TimelineIcon,
TrophyIcon,
TwitterIcon,
} from "./components/common/icons";
export const FULLSCREEN_WIDTH = parseInt(styles.tab) + 200;
export const ASSETS = {
favicon: "/vajresh.svg",
logo: "/vajresh.svg",
nextjsLogo: "/logo/nextjs.png",
cssLogo: "/logo/css.png",
djangoLogo: "/logo/django.png",
gitLogo: "/logo/git.png",
javascriptLogo: "/logo/javascript.png",
jqueryLogo: "/logo/jquery.png",
mongodbLogo: "/logo/mongodb.png",
nodejsLogo: "/logo/nodejs.png",
pythonLogo: "/logo/python.png",
reactjsLogo: "/logo/react.png",
sassLogo: "/logo/sass.png",
htmlLogo: "/logo/html.png",
bootstrapLogo: "/logo/bootstrap.png",
mysqlLogo: "/logo/mysql.png",
expressLogo: "/logo/express.png",
codeReview: "/illustrations/code-review.svg",
codeThinking: "/illustrations/code-thinking.svg",
developerActivity: "/illustrations/developer-activity.svg",
researching: "/illustrations/researching.svg",
teaching: "/illustrations/teaching.svg",
secureLogin: "/illustrations/secure-login.svg",
programming: "/illustrations/programming.svg",
onlineConnection: "/illustrations/online-connection.svg",
};
export const SECTIONS = [
{ id: "home", comp: <Home />, icon: <HomeIcon /> },
{ id: "about", comp: <About />, icon: <PlusIcon /> },
{ id: "skills", comp: <Skills />, icon: <GraduationCapIcon /> },
{
id: "experience",
comp: <Experience />,
icon: <TrophyIcon />,
},
{
id: "projects",
comp: <Projects />,
icon: <CodeSlashIcon />,
isFullWidth: true,
},
{ id: "contact", comp: <Contact />, icon: <PhoneIcon /> },
{ id: "resume", comp: <>Resume</>, icon: <FileIcon />, isHidden: true },
];
export const SOCIAL_MEDIA = [
{
id: 1,
icon: <LinkedInIcon />,
name: "LinkedIn",
link: "https://www.linkedin.com/in/vajresh-patkar-a0634b1aa/",
},
{
id: 2,
icon: <GithubIcon />,
name: "Github",
link: "https://github.com/VAJRESH",
},
{
id: 3,
icon: <TwitterIcon />,
name: "Twitter",
link: "https://twitter.com/Vajreshh",
},
];
export const home = {
title: "Hi,*I am Vajresh!!",
};
export const about = {
title: "Self-Taught Developer",
subTitle: "MERN Stack Dev",
details: `Started my journey during lockdown in March 2020, landed my first job as a
full stack web developer in August 2021. *I am a MERN stack developer who is
passionate about software solutions. I like to learn new stuff related to
technology and use the knowledge to create awesome projects. *I like
travelling and new experiences. Big fan of TV Series, Movies and Animes. In my
free time, I like to watch YouTube videos about new technologies and features,
read articles or work on side projects.`,
skills: [
"HTML",
"CSS",
"Bootstrap",
"SASS",
"SCSS",
"JavaScript",
"React JS",
"React Native",
"Recoil",
"Next JS",
"Node JS",
"Express",
"Angular JS",
"npm",
"git",
"Github",
"Python",
"Django",
"Flask",
"MongoDB",
"MySQL",
"Java",
],
};
export const skills = {
title: "Expertise & Skills",
subTitle: "Languages I Excel At",
details: `I love JavaScript and related tech stack. I have worked with NodeJS and
Express as backend tech along with ReactJS or NextJS as frontend and MongoDB
as database.*I build software applications which are easy to use, responsive
and modern using best practices. Languages which I have worked with are
JavaScript, Python, Java and C.*Creating landing pages, website, web
applications is what I am best at. I can design, animate, develop and deploy
web applications.`,
};
export const experience = {
title: "Work & Experience",
subTitle: "Skills in Action",
details: `I have alway believed that active learning is more impactful than passive
learning. I learn new languages with project based learnings. I love to build
amazing softwares.*I have build multiple softwares for myself as well as for
others. I have worked with different teams to solve different problems.`,
process: [
{ id: 1, name: "plan", icon: <TimelineIcon /> },
{ id: 2, name: "design", icon: <PaletteIcon /> },
{ id: 3, name: "develop", icon: <CodeSlashIcon /> },
{ id: 4, name: "test", icon: <TestTubeIcon /> },
{ id: 5, name: "launch", icon: <RocketIcon /> },
],
};
const category = {
personal: "My Personal Project",
minor: "Personal Minor Projects",
};
export const projects = [
{
title: "Media Tracker",
category: category?.personal,
isFeatured: true,
logoPath: "",
bannerPath: "/assets/media-tracker.png",
tags: [
"HTML",
"CSS",
"JavaScript",
"React Js",
"Node JS",
"Express",
"MongoDB",
],
description:
"It is a full stack website where user can find latest movies and tv series and details about it along with similar movies or series. User can save and manage list of watched movies and tv series. The data is provided by TMDB (https://www.themoviedb.org/).",
sourceCodePath: "https://github.com/VAJRESH/media-tracker",
liveDemoPath: "https://media-tracker.onrender.com/home",
},
{
title: "Birthday Notifier",
category: category?.personal,
isFeatured: true,
logoPath: "",
bannerPath: "/assets/birthday-notifier.PNG",
tags: [
"HTML",
"CSS",
"JavaScript",
"React Js",
"Node JS",
"Express",
"MongoDB",
],
description:
"Full stack website to save birthdays and get email reminders on your registered email automatically.",
sourceCodePath: "https://github.com/VAJRESH/birthday-notifier",
liveDemoPath: "http://birthday-notifier.onrender.com/",
},
{
title: "Business Landing Page",
category: category?.minor,
logoPath: "",
bannerPath: "/assets/business-landing-page.png",
tags: ["HTML", "SASS", "Bootstrap"],
description:
"Landing page website created to learn Bootstrap and SASS. Tried to replicate the design.",
sourceCodePath: "https://github.com/VAJRESH/Landing-Page",
liveDemoPath: "https://vajresh.github.io/Landing-Page/",
},
{
title: "Fylo Landing Page",
category: category?.minor,
logoPath: "",
bannerPath: "/assets/fylo-landing-page.png",
tags: ["HTML", "CSS", "Bootstrap"],
description:
"Created this landing page as a solution to the Fylo dark theme landing page challenge on Frontend Mentor. Took the challenge to improve page layouts with CSS and responsive web design.",
sourceCodePath: "https://github.com/VAJRESH/fylo-dark-theme-landing-page",
liveDemoPath: "https://vajresh.github.io/fylo-dark-theme-landing-page/",
},
{
title: "First Portfolio Website",
category: category?.minor,
logoPath: "",
bannerPath: "/assets/portfolio.png",
tags: ["HTML", "CSS", "JavaScript"],
description:
"This is one of the first website that I created for improving my skills in HTML, CSS and JavaScript.",
sourceCodePath: "https://github.com/VAJRESH/Vajresh.github.io",
liveDemoPath: "https://vajresh.github.io/",
},
];
export const contact = {
title: "Contact",
subTitle: "Reach out at light speed",
myPhoneNumber: "+918356085124",
myEmail: "vajresh005@gmail.com",
};