-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcontent.ts
More file actions
143 lines (139 loc) Β· 3.42 KB
/
content.ts
File metadata and controls
143 lines (139 loc) Β· 3.42 KB
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
export const experiences = [
{
company: "Vercel",
role: "Design Engineer",
link: "https://vercel.com/?ref=mitulca",
range: "Now",
description: "Building for the future of the web while doing my best work",
},
{
company: "Compound",
role: "Software Engineer",
link: "https://compoundplanning.com/?ref=mitulca",
range: "2022 - 2023",
description:
"Built charting components, rebuilt the app navigation and worked on improving UX for advisors to thrive in supporting clients",
skills: ["React", "TypeScript", "Redux", "CSS-in-JS", "Next.js"],
},
{
company: "Composer",
link: "https://composer.trade/?ref=mitulca",
role: "Design Engineer",
range: "2021 - 2022",
description:
"As an early employee, I built out over 90% of the application UI and a scalable and accessible component library",
skills: ["React", "ClojureScript", "TailwindCSS", "Contentful", "Next.js"],
},
// {
// company: "Hypercontext",
// role: "Product Analyst",
// range: "2019 - 2020",
// description:
// "Designed growth experiments to convert users from free to paid, built the sales operations and email-marketing playbook from the ground up",
// },
{
company: "Uber",
role: "Operations Intern",
range: "2018",
description:
"Led competitive research for Canada and supported the launch of 30 cities in 1 day through building courier acquisition campaigns",
},
];
export const Status = {
none: "none",
progress: "progress",
completed: "completed",
} as const;
export const photos = [
{
src: "/images/daniel.jpg",
alt: "R&B artist Daniel Caesar performing at the Scotiabank Arena in Toronto, Canada",
},
{
src: "/images/maggie.jpg",
alt: "Indie artist Maggie Rogers performing at the Budweiser Stage in Toronto, Canada",
},
{
src: "/images/toronto.jpg",
alt: "A photo of the CN Tower in Toronto above the clouds with blue skies behind it",
},
{
src: "/images/nyc.jpg",
alt: "A classic photo of the New York City skyline taken at dusk from the Top of the Rock",
},
{
src: "/images/banff-2.jpg",
alt: "",
},
{
src: "/images/banff.jpg",
alt: "",
},
];
export const bucketList = [
{
item: "Travel the world",
status: Status.completed,
},
{
item: "Visit Iceland",
status: Status.none,
},
{
item: "Do a backflip in every contintent",
status: Status.none,
},
{
item: "Go skydiving",
status: Status.completed,
},
{
item: "Solo backpack across Europe",
status: Status.completed,
},
{
item: "Photograph an artist at the MSG",
status: Status.none,
},
{
item: "Open a restaurant",
status: Status.none,
},
{
item: "Drive across North America",
status: Status.none,
},
{
item: "Live in New York City",
status: Status.completed,
},
{
item: "Do a month+ long hike",
status: Status.none,
},
{
item: "Go on tour with an artist",
status: Status.none,
},
{
item: "Climb a large mountain",
status: Status.completed,
},
{
item: "Help my parents retire",
status: Status.progress,
},
{
item: "Roadtrip with strangers",
status: Status.completed,
},
{
item: "Host a photo gallery",
status: Status.progress,
},
];
export const beliefs = [
"Seek discomfort",
"Do difficult things as they are the most rewarding",
"Anything is possible with discipline",
];