-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontents.js
More file actions
322 lines (314 loc) · 9.13 KB
/
contents.js
File metadata and controls
322 lines (314 loc) · 9.13 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
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
// If you wish to use different images, add them to the src/img folder
const email = "./src/img/email.svg";
const linkedin = "./src/img/linkedin.svg";
const github = "./src/img/github-mark.svg";
const code = "./src/img/code.svg";
const githubReverse = "./src/img/github-mark-reverse.svg";
const link = "./src/img/external-link-svgrepo-com.svg";
// List of links to display in contact section
// label: Text label for the link
// href: Destination link redirects to
// iconSrc: Location where the icon is saved
const linkList = [
{ label: "Email", href: "mailto:ygao050@gmail.com", iconSrc: email },
{
label: "LinkedIn",
href: "https://www.linkedin.com/in/ygao000/",
iconSrc: linkedin,
},
{
label: "Github",
href: "https://github.com/cyphersept",
iconSrc: github,
},
{
label: "Site Code",
href: "https://github.com/cyphersept/cyphersept.github.io",
iconSrc: code,
},
];
// Key information displayed in the header and about sections
// name: Your name, used as the header and nav title
// pageTitle: Webpage title, displayed in browser bar and search links
// jobTitle: Used as the secondary tagline in the header
// description: List of paragraphs in the "About section"
const info = {
name: "Yuan Gao",
pageTitle: "Yuan Gao — Web Developer Portfolio",
jobTitle: "Frontend Web Developer",
description: [
"I'm a Montreal-based web developer with a keen interest in what makes the internet tick. With my background in freelance illustration, I combine sharp visuals with user-friendly functionality to deliver unique utilities via the convenience of the world wide web.",
],
};
// Footer link
const footer = {
label: "cyphersept 2025",
href: "http://www.github.com/cyphersept/black-fish-white-fish-template",
iconSrc: github,
};
// List of skills for the animated text carousel
const skillList = [
"BS Comp Sci",
"Frontend",
"HTML",
"JS",
"CSS",
"Java",
"SQL",
"React",
"Webpack",
"Vite",
"Jest",
"Tailwind",
"APIs",
"Design",
"Illustration",
"English",
"Mandarin",
"French B2",
];
// Info to populate project cards with
// name: Title of project to display
// img: Relative path to image file to display
// imgAlt: Alt text for images. Fill these out to improve your SEO
// desc: Short description of project
// stack: A comma separated list of technologies used in the project.
// links: list of project-relevant links to display on card
const projectList = [
{
name: "Repalette",
img: "./src/img/repalette-demo.gif",
imgAlt:
"Pixel art colours above a list of palettes getting replaced in a single click",
desc: "Lightning-fast and pixel-perfect palette swaps with bulk downloads.",
stack: "Canvas API, File API, HTML, Javascript, CSS",
links: [
{
label: "repo",
href: "https://github.com/cyphersept/repalette",
iconSrc: githubReverse,
},
{
label: "live site",
href: "https://cyphersept.github.io/repalette/",
iconSrc: link,
},
],
},
{
name: "Weather App",
img: "./src/img/weather.webp",
imgAlt: "Pink and blue neon urban street nightscape in rain",
desc: "Cyberpunk weather updates",
stack: "React, TailwindCSS, OpenMeteo API, Vite",
links: [
{
label: "repo",
href: "https://github.com/cyphersept/react-weather",
iconSrc: githubReverse,
},
{
label: "live site",
href: "https://cyberpunk-weather.netlify.app/",
iconSrc: link,
},
],
},
{
name: "Re:Engage",
img: "./src/img/reengage.webp",
imgAlt: "",
desc: "Social platform to connect with peers tackling similar problems. Toast Dash Hackathon Finalist.",
stack: "React, Vite, TailwindCSS",
links: [
{
label: "repo",
href: "https://github.com/cyphersept/toast-dash",
iconSrc: githubReverse,
},
{
label: "live site",
href: "https://status-share-dash.netlify.app/",
iconSrc: link,
},
],
},
{
name: "Natural Cure",
img: "./src/img/naturalcure.webp",
imgAlt:
"Soothing cottagecore lavender and purple shopping site layout for Natural Cure",
desc: "Shopping app boilerplate with clientside routing and cart functionality, all made from scratch.",
stack: "React Router, React, Vite, TailwindCSS",
links: [
{
label: "repo",
href: "https://github.com/cyphersept/natural-cure",
iconSrc: githubReverse,
},
{
label: "live site",
href: "https://shop-natural-cure.netlify.app/",
iconSrc: link,
},
],
},
{
name: "Battleship",
img: "./src/img/battleship.webp",
imgAlt:
"Game with two light blue battleship grids in front of wavy ocean overlay",
desc: "A faithful recreation of a timeless classic.",
stack: "Jest, Webpack, HTML, Javascript, CSS",
links: [
{
label: "repo",
href: "https://github.com/cyphersept/battleship",
iconSrc: githubReverse,
},
{
label: "live site",
href: "https://cyphersept.github.io/battleship/",
iconSrc: link,
},
],
},
{
name: "Flag Memory",
img: "./src/img/flag-memory.webp",
imgAlt:
"Online quiz game with large flag icons against a black and pink background",
desc: "How well can you remember the flags of the world? Try it in multiple languages!",
stack: "React, Vite, FlagsAPI",
links: [
{
label: "repo",
href: "https://github.com/cyphersept/memory-game",
iconSrc: githubReverse,
},
{
label: "live site",
href: "https://flag-memory.netlify.app/",
iconSrc: link,
},
],
},
{
name: "CV Creator",
img: "./src/img/cv-maker.webp",
imgAlt: "Black and beige professional resume template for Sun Wukong",
desc: "Build a sleek, minimalist professional CV from the comfort of your browser.",
stack: "React, Typescript, Vite",
links: [
{
label: "repo",
href: "https://github.com/cyphersept/cv-application",
iconSrc: githubReverse,
},
{
label: "live site",
href: "https://cypher-cv.netlify.app/",
iconSrc: link,
},
],
},
{
name: "Cardmaker",
img: "./src/img/cardmaker.webp",
imgAlt:
"Row of parchment background skill cards with wax seal below a text input box",
desc: "Create prototype cards for a custom board game straight from your notes in a single click.",
stack: "HTML, Javascript, CSS",
links: [
{
label: "repo",
href: "https://github.com/cyphersept/cardmaker",
iconSrc: githubReverse,
},
{
label: "live site",
href: "https://cyphersept.github.io/cardmaker/",
iconSrc: link,
},
],
},
{
name: "Signup Page",
img: "./src/img/signup.webp",
imgAlt: "Relaxing calming green and brown matcha themed signup page",
desc: "Responsive sign up form with input validation and screen-reader accessibility.",
stack: "HTML, Javascript, CSS",
links: [
{
label: "repo",
href: "https://github.com/cyphersept/small-projects/tree/main/signup",
iconSrc: githubReverse,
},
{
label: "live site",
href: "https://cyphersept.github.io/small-projects/signup",
iconSrc: link,
},
],
},
{
name: "Dash Template",
img: "./src/img/dash.webp",
imgAlt: "Dark blue and teal cute whimsical dashboard site preview",
desc: "A fun and cheery dashboard layout with a crafty feel. WCAG level AA accessible.",
stack: "HTML, Javascript, CSS",
links: [
{
label: "repo",
href: "https://github.com/cyphersept/dashboard-template",
iconSrc: githubReverse,
},
{
label: "live site",
href: "https://cyphersept.github.io/dashboard-template/",
iconSrc: link,
},
],
},
{
name: "Homepage Template",
img: "./src/img/homepage-1.webp",
imgAlt:
"Blue and white professional portfolio site preview with woman named Ashley Williams",
desc: "A modern design for tablet, mobile, and desktop, recreated with pixel-perfect precision.",
stack: "HTML, Javascript, CSS",
links: [
{
label: "repo",
href: "https://github.com/cyphersept/responsive-homepage",
iconSrc: githubReverse,
},
{
label: "live site",
href: "https://cyphersept.github.io/responsive-homepage/",
iconSrc: link,
},
],
},
{
name: "Portfolio Template",
img: "./src/img/monochrome.webp",
imgAlt:
"Eyecatching modern lack and white koi garden themed high contrast portfolio template",
desc: "No-code, SEO-optimized, lightning-fast template compiled from a single text file.",
stack: "EJS, Vite, HTML, Javascript, CSS",
links: [
{
label: "repo",
href: "https://github.com/cyphersept/monokoi-template",
iconSrc: githubReverse,
},
{
label: "live site",
href: "https://cyphersept.github.io/monokoi-template",
iconSrc: link,
},
],
},
];
export { info, footer, linkList, skillList, projectList };