Skip to content

Commit

Permalink
moi branch creation
Browse files Browse the repository at this point in the history
  • Loading branch information
moisesmena committed Jan 24, 2021
1 parent bf81b53 commit 9eb32ae
Show file tree
Hide file tree
Showing 13 changed files with 293 additions and 59 deletions.
49 changes: 0 additions & 49 deletions .env.example

This file was deleted.

1 change: 1 addition & 0 deletions nuwe-challenge-team
Submodule nuwe-challenge-team added at a23651
Binary file added public/assets/lorena.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/moi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/vanessa.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
137 changes: 129 additions & 8 deletions public/js/app.js

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions resources/js/components/App.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
import React from "react";
import ReactDOM from "react-dom";
import Example from "./Example";
import AboutUs from "./aboutUs/AboutUs.js";
import UserProfiles from "./userProfiles/UserProfiles.js";
import UserCard from "./userCard/UserCard.js";


function App() {
return (
<div className="container">
<Button />
<AboutUs />
<UserProfiles />
<UserCard />


</div>
);
}
Expand Down
26 changes: 26 additions & 0 deletions resources/js/components/aboutUs/AboutUs.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
h2 {
color:#16C79A;
}

.aboutUs-container {
display: flex;
margin: auto;
flex-direction: column;
align-items: center;
width: 750px;
}

.aboutUs-container p {
text-align: center !important;
font-size: 20px;
}

@media screen and (max-width: 768px) {
.abotUs-container {
display: flex;
flex-direction: column;
align-items: center;
flex-wrap: wrap;
margin: 30px;
}
}
18 changes: 18 additions & 0 deletions resources/js/components/aboutUs/AboutUs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import React from "react";
import ReactDOM from "react-dom";
import "./AboutUs.css";

function AboutUs() {
return (
<div className="aboutUs-container">
<h2>Sobre nosotros</h2>
<p>PERSEO, cuenta con más de 20 años de experiencia en el sector de Recursos humanos, conectado a los mejores candidatos con empresas punteras del sector TIC.

Si eres <b>candidato</b> en búsqueda activa de trabajo, no dudes en registrar tu perfil en nuestra plataforma, así las empresas podrán valorar tu candidatura para las posiciones vacantes.

Si eres <b>empresa</b>, registrate con nostros para poder encontra el mejor candidato para tu proyecto.</p>
</div>
);
};

export default AboutUs;
Empty file.
37 changes: 37 additions & 0 deletions resources/js/components/userCard/UserCard.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import React from "react";
import ReactDOM from "react-dom";
import "./UserCard.css";

function UserCard() {
return (
<div className="userCard-Container">
<div className="userCard-Container__top">
<img src="../assets/lorena.png"/>
<div className="userCard-Container__data">
<span>Lorena Criado</span>
<span>[email protected]</span>
<span>Front-End</span>
<span>HTML, CSS, JavaScript, React</span>
</div>


</div>

<div className="userCard-Container__bottom">
<div className="userCard-Container__text1">
<h3>Experiencia laboral</h3>
<p>5</p>
</div>
<div className="userCard-Container__text2">
<h3>Experiencia académica</h3>
<p>Front-End developer, CSS, Ract y JavaScript</p>
</div>
</div>



</div>
);
};

export default UserCard;
40 changes: 40 additions & 0 deletions resources/js/components/userProfiles/UserProfiles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

h2 {
margin-top: 50px;
color:#16C79A;
}

.userProfiles-container {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}

.userCards-container {
display: flex;

}

.userCards {
width: 290px;
height: 416px;
margin-left: 20px;
margin-right: 20px;
}

img {
width: 290px;
height: 303px;
}

p {
font-size: 20px;
text-align: left !important;
margin: 0px;
}

h3 {
margin: 0px;
color:#16C79A;
}
33 changes: 33 additions & 0 deletions resources/js/components/userProfiles/UserProfiles.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import React from "react";
import ReactDOM from "react-dom";
import "./UserProfiles.css";

function UserProfiles() {
return (
<div className="userProfiles-container">
<h2>Programadores en búsqueda de empleo</h2>
<div className="userCards-container">
<div className="userCards">
<img src="../assets/moi.png"/>
<h3>Moises Mena</h3>
<p>Front-End developer, CSS, Ract y JavaScript</p>
</div>

<div className="userCards">
<img src="../assets/lorena.png"/>
<h3>Lorena Criado</h3>
<p>Front-End developer, CSS, Ract y JavaScript</p>
</div>

<div className="userCards">
<img src="../assets/vanessa.png"/>
<h3>Vanessa Poppe</h3>
<p>Front-End developer, CSS, Ract y JavaScript</p>
</div>
</div>

</div>
);
};

export default UserProfiles;

0 comments on commit 9eb32ae

Please sign in to comment.