Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"expect": true,
"sinon": true
},
"parser": "babel-eslint",
"parser": "@babel/eslint-parser",
"plugins": [
"react",
"jsx-a11y",
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,4 @@ dist

# TernJS port file
.tern-port
.vercel
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"editor.formatOnSave": true
}
16 changes: 0 additions & 16 deletions PULL_REQUEST_TEMPLATE.md

This file was deleted.

73 changes: 12 additions & 61 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,65 +1,16 @@
# react-eth-challenge
## DESCRIPTION

## React Curriculum vitae
Solución al reto: https://react-eth-challenge-weld.vercel.app/

Crear tu curriculum vitae en React, analiza la estructura propuesta e inspirate para mostrar tu información.
Nombre: Candela Bramucci
Usuario Platzi: Bramuccci

![react-cv](https://github.com/gndx/react-eth-challenge/blob/440befcbc257b886015bd050666a21a3bec6c244/screenshot.png)
## Reto:

### Retos

1. [Crear los componentes del proyecto](https://github.com/gndx/react-eth-challenge/issues/1)
2. [Añadir estilos](https://github.com/gndx/react-eth-challenge/issues/2)
3. [Crear función getData.js](https://github.com/gndx/react-eth-challenge/issues/3)
4. [Integrar API](https://github.com/gndx/react-eth-challenge/issues/4)
5. [Personalizar API](https://github.com/gndx/react-eth-challenge/issues/5)
6. [Documentar](https://github.com/gndx/react-eth-challenge/issues/6)
7. [Deploy](https://github.com/gndx/react-eth-challenge/issues/7)

### Instalación

```
npm install
```

### Ejecución

```
npm run start
```

### Server

```
npm run server
```

### Compilar

```
npm run build
```

### Pruebas Unitarias

```
npm run test
```

### ESlint

```
npm run lint
```

### Enviar solución de reto

Debes de crear un "Fork" de este proyecto, revolver los problemas y crear un Pull Request hacia tu repositorio.

### Contribuir

Si alguien quiere agregar o mejorar algo, lo invito a colaborar directamente en este repositorio: [react-eth-challenge](https://github.com/gndx/react-eth-challenge/)

### Licencia

frontend se lanza bajo la licencia [MIT](https://opensource.org/licenses/MIT).
- ☑ Primer problema - Componentes creados en "src/components"
- ☑ Segundo problema - Estilos agregados con Sass
- ☑ Tercer problema - Obteniendo data en global context
- ☑ Cuarto Problema - Usando fake API
- ☑ Quinto Problema - Añadiendo datos personales
- ☑ Sexto Problema
- ☑ Septimo Problema
110 changes: 0 additions & 110 deletions data.json

This file was deleted.

99 changes: 99 additions & 0 deletions db.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
{
"data": {
"name": "Candela Bramucci",
"profession": "FrontEnd Developer",
"address": "Buenos Aires, Argentina.",
"email": "candelabramucci05@gmail.com",
"user": "@bramuccci",
"website": "bramuccci.example",
"phone": "+54 1113-9863",
"avatar": "https://i.imgur.com/N7uYz3F.jpg",
"background": "https://i.imgur.com/awDr11K.jpg",
"Profile": "I've been wondering to see what the web has to show me. Now I'm making it, taking it to the next level.",
"Academic": [
{
"degree": "Atomic Master",
"endDate": "Jan 2017",
"institution": "MIT",
"startDate": "Jan 2018"
},
{
"degree": "Space Engineering",
"endDate": "December 2015",
"institution": "Harvard",
"startDate": "Jan 2017"
},
{
"degree": "Computer Science",
"endDate": "October 2017",
"institution": "Harvard",
"startDate": "Jan 2019"
}
],
"experience": [
{
"company": "PugStar",
"endDate": "Present",
"jobDescription": "scratch the furniture. Good now the other hand, too lay on arms while you're using the keyboard.",
"jobTitle": "Frontend",
"startDate": "Jan 2020"
},
{
"company": "CatStore",
"endDate": "Jan 2016",
"jobDescription": "Meow in empty rooms lick left leg for ninety minutes, still dirty.",
"jobTitle": "Backend",
"startDate": "Sept 2019"
}
],
"skills": [
{
"name": "HTML5",
"description": "Solid bases for solid pages"
},
{
"name": "Sass",
"description": "Applying beauty to the web"
},
{
"name": "JavaScript",
"description": "Making ideas come true"
},
{
"name": "React",
"description": "Taking control about everything"
},
{
"name": "webpack",
"description": "Putting all together"
}
],
"interest": [
"Making frontend development with JavaScript and React",
"Participating in company activities",
"Taking a look in good design"
],
"languages": [
"Spanish",
"English"
],
"social": [
{
"name": "twitter",
"url": "https://twitter.com/bramuccci"
},
{
"name": "github",
"url": "https://github.com/bramuccci"
},
{
"name": "platzi",
"url": "https://platzi.com/p/bramuccci/"
},
{
"name": "frontend mentor",
"url": "https://www.frontendmentor.io/profile/bramuccci"
}
]
}
}
Loading