-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ts
More file actions
85 lines (82 loc) · 2.91 KB
/
config.ts
File metadata and controls
85 lines (82 loc) · 2.91 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
export const TOC_LIST = [
{
name: "ABOUT",
path: "#about",
},
{
name: "EXPERIENCE",
path: "#experience",
},
{
name: "PROJECTS",
path: "#projects",
},
];
export const EXPERIENCE = [
{
title: "Frontend Developer",
date: "OCT, 2019 — AUG, 2023",
description: `Modernized 5+ legacy features through design and development overhaul, addressing user needs and design aesthetic; Communicated design and technical requirements during design reviews within a cross-functional team of 5 by creating wireframes and interactive prototype;`,
techStack: [
"React",
"TypeScript",
"MUI",
"styled components",
"Figma",
"Framer Motion",
"react-hook-form",
"redux-toolkit",
],
},
{
title: "Data Warehouse Developer",
date: "NOV, 2018 — OCT, 2019",
description: `Developed data pipelines using SQL to ingest statewide assessment data, creating data views for utilization in BI tools like Qliksense`,
techStack: ["SQL", "Snowflake", "Data Warehousing", "ETL"],
},
{
title: "Data Analyst",
date: "NOV, 2016 — NOV, 2018",
description: `Expedited data validation process by 50% by writing reusable test queries using SQL after two months; Documented testing manual for the product data validation process, which was adopted across the development team.`,
techStack: ["SQL", "RDBMS", "Excel"],
},
];
export const PROJECTS = [
{
name: "NomadHair",
description: `An appointment scheduling app to help my friends easily arrange haircut appointments with me.`,
techStack: ["Next.js", "Sanity", "Storybook", "TailwindCSS", "Figma"],
url: "https://github.com/tnamdevnote/nomadhair",
imgUrl: "/project-nomadhair.png",
},
{
name: "Full of Likes - an animated like button",
description: `Inspired by Delba and Josh Comeau, I recreated my own version of a like button that not only animates but also persists
like counts to a database.`,
techStack: ["Next.js", "Prisma", "PlanetScale", "TailwindCSS", "Figma"],
url: "https://github.com/tnamdevnote/full-of-likes",
imgUrl: "/project-like-btn.png",
},
{
name: "PRISM 2.0 Design Mockup (Eidex)",
description: `This is a collection of design mockups that I designed and also developed during the most recent project at my work.
I have created this document to facilitate communication with the team, making sure engineers and product owner were on the same page with the business requirements.`,
techStack: ["Figma", "Styled Component", "MUI"],
url: "https://drive.google.com/file/d/1PaqNKYgW0WzZ855CbfyZW8eEIGp2IGje/view?usp=sharing",
imgUrl: "/project-prism-2.png",
},
];
export const CONTACTS = [
{
name: "Github",
url: "https://github.com/tnamdevnote",
},
{
name: "LinkedIn",
url: "https://www.linkedin.com/in/luke-tb-nam/",
},
{
name: "Email",
url: "mailto:luke.tb.nam@outlook.com",
},
];