-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume-data.tsx
142 lines (140 loc) · 3.51 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
import { GitHubIcon, LinkedInIcon } from "@/components/icons";
export const RESUME_DATA = {
name: "Ursula Valeria Cubilla",
initials: "UVC",
location: "Barcelona, Spain",
locationLink: "https://www.google.com/maps/place/Barcelona/@41.3926386,2.0577884,12z/data=!3m1!4b1!4m6!3m5!1s0x12a49816718e30e5:0x44b0fb3d4f47660a!8m2!3d41.3873974!4d2.168568!16zL20vMDFmNjI?entry=ttu",
about:
"Frontend Web Developer",
summary:
"I am a Frontend web developer, eager to keep growing in the technological world. Currently working with Reactjs, Nextjs, and I am open to learn new technologies if needed.",
avatarUrl: "https://avatars.githubusercontent.com/u/113290079?v=4",
contact: {
email: "[email protected]",
social: [
{
name: "GitHub",
url: "https://github.com/ursulacubilla",
icon: GitHubIcon,
},
{
name: "LinkedIn",
url: "https://www.linkedin.com/in/ursula-cubilla/",
icon: LinkedInIcon,
}
],
},
education: [
{
school: "GRI Gabinete de Recolocación Industrial",
degree: "Website Design and Publication",
start: "2023",
end: "2023",
},
{
school: "IT Academy",
degree: "Frontend React",
start: "2022",
end: "2023",
}
],
work: [
{
company: "Freelance",
badges: ["Remote"],
title: "Frontend Web Developer",
start: "2023",
end: "Present",
description:
"",
},
{
company: "AIS Channel",
link: "https://www.aischannel.com/",
badges: ["Presencial"],
title: "Frontend Web Developer",
start: "2023",
end: "2023",
description:
"",
},
{
company: "IT Academy",
link: "https://www.barcelonactiva.cat/en/itacademy",
badges: ["Remote"],
title: "Frontend Web Developer",
start: "2023",
end: "2023",
description:
"",
},
],
skills: [
"JavaScript",
"TypeScript",
"React/Next.js",
"Node.js",
"TailwindCss",
"Bootstrap",
"HTML",
"CSS"
],
projects: [
{
title: "BatataBit",
techStack: ["HTML", "CSS"],
description:
"BatataBit was created as a final project to put into practice what was I learned in class.",
link: {
label: "github.com",
href: "https://ursulacubilla.github.io/ResponsiveDesign/",
},
},
{
title: "AmapolaCafe",
techStack: ["HTML", "CSS", "JavaScript"],
description:
"AmapolaCafe was my end-of-course project, created with HTML, CSS and JavaScript.",
link: {
label: "github.com",
href: "https://ursulacubilla.github.io/amapolaCafe/",
},
},
{
title: "Weekly Menu",
techStack: [
"HTML",
"CSS",
"JavaScript",
"React+Vite",
],
description: "Weekly Pescetarian Menu ",
link: {
label: "github.com",
href: "ursulacubilla.github.io/Menu-Semanal/",
},
},
{
title: "YardSale",
techStack: [
"HTML",
"CSS",
"JavaScript"
],
description: "E-commerce",
link: {
label: "github.com",
href: "https://ursulacubilla.github.io/Maquetacion-HTML/",
},
},
{
title: "BookMark",
techStack: ["HTML", "CSS", "SCSS"],
description: "A simple interface to organize your favourite websites.",
link: {
label: "github.com",
href: "https://ursulacubilla.github.io/sprint2/",
},
},
],
} as const;