-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
313 lines (259 loc) · 9.58 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@4.x/css/materialdesignicons.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
</head>
<body>
<div id="app">
<v-app id="inspire">
<v-app-bar app class="header" color="#2c3e50" >
<v-toolbar-title class="title" > My Portfolio </v-toolbar-title>
<div class="links" >
<div class="text link float-right" @click="$vuetify.goTo('#portfolio')">Portfolio</div>
<div class="text link float-right" @click="$vuetify.goTo('#about')">About</div>
</div>
</v-app-bar>
<v-content class="background">
<v-layout class="all" align-center justify-center fill-height>
<section class="bgGreen">
<div class="divSection">
<img class="imgPersonal" src="src/zerik.jpg" alt="">
<h1 class="name" >José Érik</h1>
<div class="lineAndStar">
<div class="lineLeft"></div>
<svg class="star" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="star" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" data-fa-i2svg="">
<path fill="currentColor" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"></path>
</svg>
<div class="lineRight"></div>
</div>
<span class="description" >Front-end - Web Designer - Back-end</span>
</div>
</section>
<section id="portfolio" class="divSection">
<h1 class="name colorBlack">Portfolio</h1>
<div class="lineAndStar colorBlack">
<div class="lineLeft colorBlack"></div>
<svg class="star colorBlack" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="star" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" data-fa-i2svg="">
<path fill="currentColor" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"></path>
</svg>
<div class="lineRight colorBlack"></div>
</div>
<div class="cards">
<v-card
class="mx-auto card"
max-width="344"
v-for="card in cards"
:key="card"
>
<v-img
:src="card.image"
height="200px"
></v-img>
<v-card-title>
{{ card.title }}
</v-card-title>
<v-card-subtitle>
{{ card.description }}
</v-card-subtitle>
<v-card-actions>
<v-btn text :href="card.code">Code</v-btn>
<v-btn
color="purple"
text
:href="card.demo"
>
Demo
</v-btn>
</v-card-actions>
</v-card>
</div>
</section>
<section id="about" class="bgGreen">
<div class="divSection">
<h1 class="name" >About</h1>
<div class="lineAndStar">
<div class="lineLeft"></div>
<svg class="star" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="star" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" data-fa-i2svg="">
<path fill="currentColor" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"></path>
</svg>
<div class="lineRight"></div>
</div>
<span class="description" >
I am a web developer who likes challenges and learn new things. I work with several languages, banks and frameworks such as Java, Javascript, PostgreSQL, MySQL, Mongo, Vuejs, React, React Native and some others. I have some experiences with mobile application development and also develop games for various platforms. To learn more about my skills access my linkedin
</span>
<v-btn class="ma-2 buttonCurriculum" tile x-large outlined href="https://www.linkedin.com/in/erik-brito-8b2b02b6/">
linkedin
</v-btn>
</div>
</section>
</v-layout>
</v-content>
</v-app>
</div>
<style scoped>
.header {
height: 100px!important;
}
.all {
display: contents;
}
.v-toolbar__content {
height: 100px!important;
}
.v-application .title {
color: white;
font-family: 'Baloo 2', cursive!important;
font-size: 1.7rem!important;
font-weight: 900;
text-transform: uppercase;
margin-left: 100px;
}
.links {
display: flex;
margin-left: auto;
margin-right: 100px;
/* margin-right: 1em; */
}
.link {
margin: 0.5em;
}
.text {
color: white;
font-family: 'Baloo 2', cursive;
font-size: 1.4rem;
font-weight: 600;
text-transform: uppercase;
}
.text:hover {
color: #1abc9c;
cursor: pointer;
}
.bgGreen {
background-color: #1abc9c;
width: 100%;
/* height: 100%; */
}
.divSection {
display: flex;
align-items: center;
flex-direction: column;
padding: 5rem;
}
.name {
font-family: 'Baloo 2', cursive!important;
color: white;
letter-spacing: 3px;
text-transform: uppercase;
font-size: 4em;
}
.lineAndStar {
width: 100%;
color: white;
display: flex;
justify-content: center;
align-items: center;
margin: 1rem;
}
.star {
width: 3%;
}
.lineLeft {
border: 2px solid;
color: white;
width: 100%;
max-width: 7rem;
height: 0.25rem;
background-color: white;
border-radius: 1rem;
margin-right: 1rem;
}
.lineRight {
border: 2px solid;
color: white;
width: 100%;
max-width: 7rem;
height: 0.25rem;
background-color: white;
border-radius: 1rem;
margin-left: 1rem;
}
.description {
color: white;
font-family: 'Baloo 2', cursive;
font-size: 1.4rem;
font-weight: 600;
text-transform: uppercase;
margin: 1rem;
}
.imgPersonal {
border-radius: 50%;
min-width: 15%;
margin-bottom: 1rem;
}
.bgSecondary {
width: 100%;
height: 100%;
}
.colorBlack {
color: #2c3e50;
}
.cards {
margin: 1rem auto;
}
.v-application .mx-auto {
margin: 1rem;
margin-right: 1rem!important;
margin-left: 1rem!important;
float: left;
}
.buttonCurriculum {
color: white!important;
}
.buttonCurriculum:hover {
color: black!important;
background-color: white;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/vue@2.x/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.js"></script>
<script>
new Vue({
el: '#app',
vuetify: new Vuetify(),
data: () => ({
drawer: null,
justify: 'center',
show: false,
cards: [
{
image: 'src/chapstory.png',
title: 'Chapstory',
description: 'A social network for people to tell and share their stories. Made with Vue, Node, Axios, PostgreSQL, Google Maps API and more other technologies',
code: 'https://chapstory.com',
demo: 'https://chapstory.com'
},
{
image: 'https://user-images.githubusercontent.com/5699834/105097325-2f904180-5a87-11eb-9558-c5659aced2e2.png',
title: 'ShoppingCart',
description: 'A mini shopping store. A project made with React. Using Javascript, Axios, Hooks, Redux, Redux-Saga, json-server.',
code: 'https://github.com/erikbrito/shoppingcart',
demo: 'https://shoppingcart-erikbrito01.vercel.app/'
},
{
image: 'https://user-images.githubusercontent.com/5699834/95501637-fec84880-097e-11eb-9391-75de1812fb56.jpg?',
title: 'Movieflix',
description: 'A project with synopses and information about films. Made with React Native, Expo. Using Typescript, Axios, Hooks, Redux, Redux-Saga.',
code: 'https://github.com/erikbrito/movieflix',
demo: ''
}
]
}),
})
</script>
</body>
</html>