-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume-data.tsx
More file actions
161 lines (156 loc) · 5.24 KB
/
resume-data.tsx
File metadata and controls
161 lines (156 loc) · 5.24 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
import {
AnuIcon,
CarHubLogo,
Howdy,
NikeLogo,
TheStarLogo,
} from "@/images/logos";
import { GitHubIcon, LinkedInIcon, XIcon } from "@/components/icons";
import { GlobeIcon } from "lucide-react";
export const RESUME_DATA = {
name: "Anurodh Pandey",
initials: "AP",
location: "Sydney, Australia",
locationLink: "https://www.google.com/maps/place/Sydney/",
about:
"Full-stack Developer from Sydney, Australia.",
summary:
"As a Frontend Engineer Engineer, I have successfully taken multiple products from 0 to 1. I work mostly with TypeScript, React, Node.js, and GraphQL.",
avatarUrl: "https://www.anurodhpandey.com.np/assets/og-aae58940.png",
personalWebsiteUrl: "https://www.anurodhpandey.com.np/",
contact: {
email: "anurodhp7@gmail.com",
tel: "+61450380690",
social: [
{
name: "GitHub",
url: "https://github.com/nur0078",
icon: GitHubIcon,
},
{
name: "LinkedIn",
url: "https://www.linkedin.com/in/pandeyanurodh/",
icon: LinkedInIcon,
},
{
name: "URL",
url: "https://www.anurodhpandey.com.np/",
icon: GlobeIcon,
},
],
},
education: [
{
school: "Federation University of Australia",
degree: "Bachelor's Degree in Information Technology",
start: "",
end: "2022",
},
],
work: [
{
company: "Buzzketing",
link: "https://buzzketing.com.au/",
badges: ["Intern"],
title: "Software Developer Intern",
logo: AnuIcon,
start: "2023",
end: "2023",
description:
"I played a key role in developing major features for a React.js application, leading to a 15% increase in user engagement within the first month after launch. My involvement extended to optimizing API response times in the back-end, where I employed efficient Node.js routines to achieve a 20% improvement. I also enhanced SQL database operations, contributing to a 12% faster data processing speed and a 5% reduction in server load. Additionally, I actively participated in code reviews, which helped in reducing the number of minor bugs by 10% and ensured adherence to higher code quality standards. Technologies: React, TypeScript, GraphQL",
},
// {
// company: "The Star Entertainment Group",
// link: "https://www.starentertainmentgroup.com.au/",
// badges: [],
// title: "Table Games Dealer",
// logo: TheStarLogo,
// start: "2022",
// end: "2024",
// description:
// "Engaged with a diverse array of customers, providing exceptional service in an upscale ambiance and averaging interactions with over 200 patrons daily. I skillfully orchestrated blackjack and poker tables, dealing approximately 100 hands each hour while maintaining a remarkable 99% accuracy rate. My position allowed me to cultivate strong interpersonal skills, enabling me to effortlessly handle a wide spectrum of customer inquiries and needs. I exhibited meticulous attention to detail, managing bets that ranged from modest $10 stakes to high-stakes wagers. Additionally, I was efficient at multitasking, adeptly catering to the demands of up to 10 or more patrons at any given table during peak hours.",
// },
],
skills: [
"JavaScript",
"TypeScript",
"React/Next.js/Redux",
"Node.js",
"GraphQL",
"TailwindCSS",
"MongoDB",
],
projects: [
{
title: "Nike",
techStack: [
"Side Project",
"JavaScript",
"Next.js",
"Vite",
"Tailwind",
],
description: "Nike Landing Page",
logo: NikeLogo,
link: {
label: "Project Nike",
href: "https://nike-three-iota.vercel.app/",
},
},
{
title: "Car Hub",
techStack: ["Side Project", "TypeScript", "Next.js", "ReactJS"],
description:
"Showcase website for car dealers.",
logo: CarHubLogo,
link: {
label: "Car Hub",
href: "https://car-showroom-five.vercel.app/",
},
},
{
title: "Personal Portfolio",
techStack: ["Side Project", "Next.js", "ReactJS", "TypeScript", "Vite"],
description:
"Personal Portfolio Website",
logo: AnuIcon,
link: {
label: "anurodhpandey.com.np",
href: "https://anurodhpandey.com.np/",
},
},
// {
// title: "myTravels",
// techStack: ["Side Project", "Next.js", "TypeScript", "Figma", "ReactJS",],
// description:
// "Personal travel journal.",
// logo: Howdy,
// link: {
// label: "myTravels",
// href: "https://travel-journal-bice.vercel.app/",
// },
// },
// {
// title: "Park-It",
// techStack: ["Side Project", "Next.js", "Javscript", "Google API"],
// description:
// "Personal parking assitance app.",
// logo: Howdy,
// link: {
// label: "ParkIt",
// href: "https://park-it-five.vercel.app/",
// },
// },
{
title: "Digital Business Card",
techStack: ["Side Project", "Next.js", "ReactJS", "CSS"],
description:
"Digital Business Card",
logo: AnuIcon,
link: {
label: "Digital ID",
href: "https://business-card-virid-omega.vercel.app/",
},
},
],
} as const;