-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume-data.tsx
152 lines (151 loc) · 4.91 KB
/
resume-data.tsx
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
import { AmbitLogo, profileAvatar } from "@/images/logos";
import { GitHubIcon, LinkedInIcon, XIcon } from "@/components/icons";
export const RESUME_DATA = {
name: "Pouya Panahzadeh",
initials: "PP",
location: "Hamburg, Germany, CET",
locationLink: "https://www.google.com/maps/place/Hamburg",
about:
"Detail-oriented Software Engineer dedicated to building high-quality products.",
summary:
"I'm a results-driven software developer with a more that 3 years of proffesional experience and an entrepreneurial background in building reliable and scalable software applications. My expertise lies in tech stacks such as Next.js, React, and NodeJs, along with databases like Postgresql, MySQL. Also have experience with testing frameworks like Jest and playwright. I'm well- versed in agile methodologies, CI/CD, and Git.",
avatarUrl:
"https://avatars.githubusercontent.com/u/34831088?s=400&u=bfdf4c1f40930497e90a3ad2dbd257329d013943&v=4",
personalWebsiteUrl: "https://pou4a.me",
contact: {
email: "[email protected]",
social: [
{
name: "LinkedIn",
url: "https://www.linkedin.com/in/pouya-panahzadeh",
icon: LinkedInIcon,
},
{
name: "GitHub",
url: "https://github.com/pou4a/",
icon: GitHubIcon,
},
],
},
education: [
{
school: "SRH University Hamburg",
degree: "Master of IT Management",
start: "2022",
end: "2024",
logo: AmbitLogo,
},
{
school: "Azad University",
degree: "Bachelor of Information Technology",
start: "2013",
end: "2018",
logo: AmbitLogo,
},
],
work: [
{
company: "Collect.AI",
link: "https://collect.ai",
badges: ["Remote"],
title: "Software Engineer",
logo: AmbitLogo,
start: "2022",
end: null,
description:
"Pair Programmed with 3 engineers directly and reviewed the tech team's code to provide additional perspective and catch previously missed errors. Implemented the components using reusable units according to the Material Design resulting in much better DX(developer experience), improving projects readability and easier maintenance. Facilitated, collaborated, and designed user conversations with 6 other Front End Developers, during initial planning which resulted in fewer conflicts during the development process. Built +10 interfaces from visual designs and wireframes to be responsive, accessible, and performant across all types of devices. Migrating and modernizing legacy codebases from JavaScript to TypeScript. ",
},
{
company: "Moneyar",
link: "https://moneyar.com",
badges: ["Contract"],
title: "Front-end Developer",
logo: AmbitLogo,
start: "2022",
end: "2022",
description:
"Built and maintained the front end of the Moneyar platform using React.js, TypeScript, and Tailwind. Developed a cartable panel with mailing and user management features.",
},
{
company: "Yektanet",
link: "https://yektanet.com",
badges: ["Remote"],
title: "Web Performance Specialist",
logo: AmbitLogo,
start: "2021",
end: "2022",
description:
"Optimized customer landing pages to enhance user experience and maximize conversion. Collaborated with a large team of over 200 members.",
},
{
company: "Moneyar",
link: "https://moneyar.com",
badges: [],
title: "WordPress Developer",
logo: AmbitLogo,
start: "2018",
end: "2020",
description:
"Developed both frontend and backend using PHP, WordPress, and JavaScript. Created mobile-friendly landing pages.",
},
{
company: "Karnotech",
link: "https://karnotech.com",
badges: [],
title: "Intern WordPress Developer",
logo: AmbitLogo,
start: "2016",
end: "2017",
description:
"Worked as a junior web developer, contributing to WordPress sites using PHP, JS, and jQuery.",
},
],
skills: [
"JavaScript",
"TypeScript",
"React/Next.js",
"Node.js",
"PostgreSQL",
"MySQL",
"Jest",
"Playwright",
"Agile Methodologies",
"Git",
"CI/CD",
"Tailwind CSS",
"Material UI",
"Bootstrap",
"WordPress",
"NestJs",
"HTML5",
"CSS3",
"SASS",
"GraphQL",
"REST API",
"Docker",
"Kubernetes",
"AWS",
"IT Management",
"Web Performance",
],
projects: [
{
title: "Garlet.ir",
techStack: [
"Software Engineer",
"React.js",
"TypeScript",
"NestJs",
"PostgreSQL",
"Tailwind CSS",
],
description:
"Garlet is an online food ordering system. I developed the front end using React.js and TypeScript, and the back end using NestJs and PostgreSQL.",
logo: AmbitLogo,
link: {
label: "garlet.ir",
href: "https://garlet.ir/",
},
},
],
} as const;