-
Notifications
You must be signed in to change notification settings - Fork 72
/
constants.ts
500 lines (478 loc) · 13.6 KB
/
constants.ts
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
// Copyright Ayush Singh 2021,2022. All Rights Reserved.
// Project: folio
// Author contact: https://www.linkedin.com/in/alphaayush/
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
export const METADATA = {
title: "Portfolio | Ayush Singh",
description:
"I bridge the gap between design and development. I take responsibility to craft an aesthetic user experience using modern frontend architecture.",
siteUrl: "https://ayushsingh.net/",
};
export const MENULINKS = [
{
name: "Home",
ref: "home",
},
{
name: "Works",
ref: "works",
},
{
name: "Skills",
ref: "skills",
},
{
name: "Timeline",
ref: "timeline",
},
{
name: "Contact",
ref: "contact",
},
];
export const TYPED_STRINGS = [
"I design and develop things",
"I develop modern frontend apps",
"I design dynamic user experience",
"I design and develop motion",
];
export const EMAIL = "ayush.singh.xda@gmail.com";
export const SOCIAL_LINKS = {
linkedin: "https://www.linkedin.com/in/alphaayush/",
github: "https://github.com/ayush013",
medium: "https://alphaayush.medium.com/",
instagram: "https://www.instagram.com/alphaayush/",
facebook: "https://www.facebook.com/ayush013",
dribbble: "https://dribbble.com/alphaayush",
behance: "https://www.behance.net/alphaayush/",
twitter: "https://twitter.com/ayush013",
topmate: "https://www.topmate.io/alphaayush/",
};
export interface IProject {
name: string;
image: string;
blurImage: string;
description: string;
gradient: [string, string];
url: string;
tech: string[];
}
export const PROJECTS: IProject[] = [
{
name: "FigGen - Figma to Code converter",
image: "/projects/figgen.jpg",
blurImage: "/projects/blur/figgen-blur.jpg",
description: "Pixel perfect HTML/Tailwind for Figma Auto layout designs.",
gradient: ["#1F6582", "#1ABCFE"],
url: "https://www.figma.com/community/plugin/1065278044402066626",
tech: ["typescript", "figma", "tailwind"],
},
{
name: "myOKR Website",
image: "/projects/myokr.jpg",
blurImage: "/projects/blur/myokr-blur.jpg",
description: "Marketing site for OKR Platform by huminos",
gradient: ["#153BB9", "#0E2C8B"],
url: "https://www.huminos.com/",
tech: ["react", "next", "gsap", "tailwind"],
},
{
name: "DLT Labs Website",
image: "/projects/dlt-website.jpg",
blurImage: "/projects/blur/dlt-website-blur.jpg",
description: "Marketing site with an Internal CMS from scratch",
gradient: ["#245B57", "#004741"],
url: "https://www.dltlabs.com/",
tech: ["figma", "angular", "gsap"],
},
{
name: "DL Unify",
image: "/projects/dl-unify.jpg",
blurImage: "/projects/blur/dl-unify-blur.jpg",
description: "Built the application from zero to production 🚀",
gradient: ["#003052", "#167187"],
url: "https://dlunify.com/",
tech: ["tailwind", "angular", "gsap", "figma"],
},
{
name: "ngx-quill-upload",
image: "/projects/ngx-quill-upload.jpg",
blurImage: "/projects/blur/ngx-quill-upload-blur.jpg",
description: "NPM Package for Quill JS uploads from Angular",
gradient: ["#3A0000", "#771E1E"],
url: "https://www.npmjs.com/package/ngx-quill-upload",
tech: ["npm", "angular", "typescript"],
},
{
name: "Huminos website",
image: "/projects/huminos.jpg",
blurImage: "/projects/blur/huminos-blur.jpg",
description: "Marketing site for Huminos bots for workplace by facebook",
gradient: ["#17007B", "#3A2C79"],
url: "https://bots.huminos.com/",
tech: ["javascript", "sass", "svg", "gulp"],
},
{
name: "AKGEC - College Website",
image: "/projects/akgec.jpg",
blurImage: "/projects/blur/akgec-blur.jpg",
description: "Contributed in overall design and development",
gradient: ["#5E4C06", "#746528"],
url: "https://www.akgec.ac.in/",
tech: ["javascript", "html", "css"],
},
{
name: "Alpha Aesthetics",
image: "/projects/alpha.jpg",
blurImage: "/projects/blur/alpha-blur.jpg",
description: "Designed and developed the platform",
gradient: ["#172839", "#334659"],
url: "https://alpha-aesthetics.ayushsingh.net/",
tech: ["illustrator", "javascript", "angular"],
},
{
name: "Amantrya - Polling Web App",
image: "/projects/farewell18.jpg",
blurImage: "/projects/blur/farewell18-blur.jpg",
description: "Dark mode dated from 2017 🔥",
gradient: ["#142D46", "#2E4964"],
url: "https://farewell18.ayushsingh.net/",
tech: ["javascript", "html", "css"],
},
{
name: "BDC 2018 Web Portal",
image: "/projects/bdc18.jpg",
blurImage: "/projects/blur/bdc18-blur.jpg",
description: "Built the portal from zero to production 🚀",
gradient: ["#470700", "#712A23"],
url: "https://bdc2018.ayushsingh.net/",
tech: ["javascript", "html", "css"],
},
{
name: "Scrolls 2017 - Website",
image: "/projects/scrolls.jpg",
blurImage: "/projects/blur/scrolls-blur.jpg",
description: "Built the portal from zero to production 🚀",
gradient: ["#685506", "#7B6921"],
url: "https://scrolls-17.ayushsingh.net/",
tech: ["angular", "html", "css"],
},
{
name: "Cardize - Visiting Cards",
image: "/projects/cardize.jpg",
blurImage: "/projects/blur/cardize-blur.jpg",
description: "First web project! Custom visiting card generator",
gradient: ["#552A04", "#614023"],
url: "https://cardize.ayushsingh.net/",
tech: ["javascript", "html", "css"],
},
];
export const SKILLS = {
frontend: [
"javascript",
"react",
"redux",
"next",
"angular",
"gsap",
"tailwind",
"sass",
"svg",
"html",
"css",
],
userInterface: ["figma", "sketch", "illustrator", "photoshop"],
other: ["git", "webpack", "gulp", "lightroom", "aftereffects"],
};
export enum Branch {
LEFT = "leftSide",
RIGHT = "rightSide",
}
export enum NodeTypes {
CONVERGE = "converge",
DIVERGE = "diverge",
CHECKPOINT = "checkpoint",
}
export enum ItemSize {
SMALL = "small",
LARGE = "large",
}
export const TIMELINE: Array<TimelineNodeV2> = [
{
type: NodeTypes.CHECKPOINT,
title: "2023",
size: ItemSize.LARGE,
shouldDrawLine: false,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "Speaker at React India",
size: ItemSize.SMALL,
subtitle:
"Discussed on Interaction to Next Paint (INP), a Google Core Web Vital metric",
image: "/timeline/reactindia.svg",
slideImage: "/timeline/reactindia.jpg",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "2022",
size: ItemSize.LARGE,
shouldDrawLine: false,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "Frontend Engineer 2 (Current)",
size: ItemSize.SMALL,
subtitle:
"Frontend Engineering @ Core team, solving problems around Livingroom device performance",
image: "/timeline/hotstar.svg",
slideImage: "/timeline/hotstar.jpeg",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "2021",
size: ItemSize.LARGE,
shouldDrawLine: false,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "UI Engineer",
size: ItemSize.SMALL,
subtitle:
"Contributed to Server driven UI framework for powering experiences @ Flipkart Wholesale 😎",
image: "/timeline/flipkart.svg",
slideImage: "/timeline/flipkart.gif",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "2020",
size: ItemSize.LARGE,
shouldDrawLine: false,
alignment: Branch.LEFT,
},
{
type: NodeTypes.DIVERGE,
},
{
type: NodeTypes.CHECKPOINT,
title: "UI Engineer (freelance)",
size: ItemSize.SMALL,
subtitle:
"Built solutions for employee engagement, productivity and performance 🎯",
image: "/timeline/huminos.svg",
slideImage: "/timeline/huminos-freelance.jpg",
shouldDrawLine: true,
alignment: Branch.RIGHT,
},
{
type: NodeTypes.CHECKPOINT,
title: "Motion Graphics (freelance)",
size: ItemSize.SMALL,
subtitle: "Motion Graphics content for Product Launch 🚀",
image: "/timeline/octanner.svg",
slideImage: "/timeline/aftereffects.jpg",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CONVERGE,
},
{
type: NodeTypes.CHECKPOINT,
title: "2019",
size: ItemSize.LARGE,
shouldDrawLine: false,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "UI Engineer",
size: ItemSize.SMALL,
subtitle:
"Worked on enterprise blockchain solutions for web. Transforming UI/UX and frontend framework. Built a design system.",
image: "/timeline/dltlabs.svg",
slideImage: "/timeline/dlt-website.jpg",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "UX Engineer",
size: ItemSize.SMALL,
subtitle:
"First job! 🥳 Product design and development for employee engagement chatbot suite for workplace by facebook",
image: "/timeline/huminos.svg",
slideImage: "/timeline/huminos-website.jpg",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "Graduated from College 🎓",
size: ItemSize.SMALL,
subtitle:
"Spent 4 years laying the foundation of Frontend Engineering, UI/UX, and Fitness!",
image: "/timeline/akgec.svg",
slideImage: "/timeline/farewell.jpg",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "2018",
size: ItemSize.LARGE,
shouldDrawLine: false,
alignment: Branch.LEFT,
},
{
type: NodeTypes.DIVERGE,
},
{
type: NodeTypes.CHECKPOINT,
title: "Student lead at SDC-SI",
size: ItemSize.SMALL,
subtitle:
"Represented a team of 39 talented developers. Served different roles of leadership, project management and delivery.",
image: "/timeline/si.svg",
slideImage: "/timeline/si-head.jpg",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "Lecture on SVG animations",
size: ItemSize.SMALL,
subtitle:
"Guided 200 students to create their first animated SVG using CSS/SMIL at PHP Workshop, SDC-SI",
slideImage: "/timeline/svg-lecture.jpg",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "2017",
size: ItemSize.LARGE,
shouldDrawLine: false,
alignment: Branch.RIGHT,
},
{
type: NodeTypes.CHECKPOINT,
title: "1st position in Web Designing, IMSU",
size: ItemSize.SMALL,
subtitle:
"Competed against 20+ teams for design and development of web project from scratch",
slideImage: "/timeline/ims-17.jpg",
shouldDrawLine: true,
alignment: Branch.RIGHT,
},
{
type: NodeTypes.CHECKPOINT,
title: "Lecture on Javascript",
size: ItemSize.SMALL,
subtitle:
"Guided 200 students for javascript fundamentals at Game Development workshop, SDC-SI",
slideImage: "/timeline/js-17.jpg",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "1st position in Web Design, ABES ACM",
size: ItemSize.SMALL,
subtitle:
"Competed in web and graphic design challenge with 100+ participants.",
slideImage: "/timeline/abes-17.jpg",
shouldDrawLine: true,
alignment: Branch.RIGHT,
},
{
type: NodeTypes.CHECKPOINT,
title: "Lecture on Web Technologies",
size: ItemSize.SMALL,
subtitle:
"Guided 300+ students on getting started with web technologies like HTML/CSS and JS",
slideImage: "/timeline/web-17.jpg",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "2016",
size: ItemSize.LARGE,
shouldDrawLine: false,
alignment: Branch.RIGHT,
},
{
type: NodeTypes.CHECKPOINT,
title: "1st position in Web Designing, IMSU",
size: ItemSize.SMALL,
subtitle: "Secured 1st prize in Web design challenge against 50+ teams",
slideImage: "/timeline/ims-16.jpg",
shouldDrawLine: true,
alignment: Branch.RIGHT,
},
{
type: NodeTypes.CONVERGE,
},
{
type: NodeTypes.CHECKPOINT,
title: "",
size: ItemSize.LARGE,
shouldDrawLine: false,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "UI/UX, Frontend Engineer",
size: ItemSize.SMALL,
subtitle:
"Started journey in SDC-SI, where I learnt the fundamentals of Frontend, UI/UX, Graphic design and more...",
image: "/timeline/si.svg",
slideImage: "/timeline/si-start.jpg",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "2014",
size: ItemSize.LARGE,
shouldDrawLine: false,
alignment: Branch.LEFT,
},
{
type: NodeTypes.CHECKPOINT,
title: "Recognized Themer",
size: ItemSize.SMALL,
subtitle:
"Awarded as recognized themer, Developed themes and ROMs for Xperia 2011 devices lineup with over 15k+ downloads. Featured on xda portal twice.",
image: "/timeline/xda.svg",
slideImage: "/timeline/xda-rt.jpg",
shouldDrawLine: true,
alignment: Branch.LEFT,
},
];
export type TimelineNodeV2 = CheckpointNode | BranchNode;
export interface CheckpointNode {
type: NodeTypes.CHECKPOINT;
title: string;
subtitle?: string;
size: ItemSize;
image?: string;
slideImage?: string;
shouldDrawLine: boolean;
alignment: Branch;
}
export interface BranchNode {
type: NodeTypes.CONVERGE | NodeTypes.DIVERGE;
}
export const GTAG = "UA-163844688-1";