finished home page

This commit is contained in:
Hope87 2021-05-26 15:59:00 +03:00
parent f772d1c0fa
commit e5c8aa5f43
6 changed files with 97 additions and 32 deletions

View File

@ -1,23 +1,24 @@
import React from 'react'; import React from 'react';
import { NavLink } from 'react-router-dom'; import { useParams, useHistory } from 'react-router-dom';
import { candidatesList } from '../Home/sections/Description';
// import PhotoBlock from './PhotoBlock';
// import { candidatesList } from '../Home/Home'
import classes from './Candidate.module.scss'; import classes from './Candidate.module.scss';
const Candidate = () => { const Candidate = () => {
// const { id: candidateId } = useParams(); const history = useHistory();
// const currentCandidate = candidatesList.find((el) => el.id === Number(candidateId));
const { id: candidateId } = useParams();
const currentCandidate = candidatesList.find((el) => el.id === Number(candidateId));
return ( return (
<div className={classes.wrapper}> <div className={classes.wrapper}>
<NavLink to="/">Home</NavLink> <button style={{ margin: '60px' }} onClick={() => history.push('/')}>
{/* <h1> Home
</button>
<h1>
Candidate name: <span>{currentCandidate.name}</span> Candidate name: <span>{currentCandidate.name}</span>
</h1> </h1>
<PhotoBlock /> */}
</div> </div>
); );
}; };

View File

@ -1,16 +1,15 @@
import React from 'react'; import React from 'react';
import Outstaffing from './sections/Outstaffing'; import Outstaffing from './sections/Outstaffing';
import Description from './sections/Description'; import Description from './sections/Description';
import Search from './sections/Search';
const Home = () => { const Home = () => {
return ( return (
<div> <>
{/* <h1>HomePage</h1>
<ul>{renderCandidatesList}</ul> */}
<Outstaffing /> <Outstaffing />
<Search />
<Description /> <Description />
</div> </>
); );
}; };

View File

@ -4,7 +4,7 @@ import photo from '../../../images/medium_male.png';
import rectangle from '../../../images/rectangle_secondPage.png'; import rectangle from '../../../images/rectangle_secondPage.png';
import arrowLeft from '../../../images/arrow_left.png'; import arrowLeft from '../../../images/arrow_left.png';
import arrowRight from '../../../images/arrow_right.png'; import arrowRight from '../../../images/arrow_right.png';
import { Link } from 'react-router-dom'; import { NavLink } from 'react-router-dom';
export const candidatesList = [ export const candidatesList = [
{ id: 1, name: 'Artyom' }, { id: 1, name: 'Artyom' },
@ -30,9 +30,9 @@ const Description = () => {
<p className={style.description__text}>- 3 года преподаю в IOS-школе Сбера</p> <p className={style.description__text}>- 3 года преподаю в IOS-школе Сбера</p>
</div> </div>
<div className="col-4"> <div className="col-4">
<Link to={`/candidate/${el.id}`}> <NavLink to={`/candidate/${el.id}`}>
<button className={style.description__button}>Подробное резюме</button> <button className={style.description__button}>Подробное резюме</button>
</Link> </NavLink>
</div> </div>
<div className="col-12"> <div className="col-12">
<span className={style.description__sp}> <span className={style.description__sp}>
@ -50,9 +50,7 @@ const Description = () => {
<div className="col-12"> <div className="col-12">
<div className={style.description__footer}> <div className={style.description__footer}>
<div className={style.description__footer__btn}> <div className={style.description__footer__btn}>
<button> <button>Загрузить еще</button>
<a href="#">Загрузить еще</a>
</button>
</div> </div>
<div className={style.description__footer__box}> <div className={style.description__footer__box}>
<div className={style.arrow__left}> <div className={style.arrow__left}>

View File

@ -72,17 +72,15 @@
border: 1px solid #5ab424; border: 1px solid #5ab424;
background-color: white; background-color: white;
margin-right: 60px; margin-right: 60px;
& a { color: #a0a0a0;
text-decoration: none; font-family: "GT Eesti Pro Display";
color: #a0a0a0; font-size: 18px;
font-family: "GT Eesti Pro Display"; font-weight: 600;
font-size: 18px; font-style: normal;
font-weight: 600; letter-spacing: normal;
font-style: normal; line-height: normal;
letter-spacing: normal; text-align: center;
line-height: normal;
text-align: left;
}
} }
} }
&__box { &__box {

View File

@ -0,0 +1,23 @@
import React from 'react';
import style from './Search.module.scss';
const Search = () => {
return (
<section class={style.search}>
<div class="container">
<div class="row">
<div class="col-12">
<h2>Найти специалиста по навыкам</h2>
<form action="">
<button type={style.submit}>JavaScript</button>
<input type={style.text} />
</form>
</div>
</div>
</div>
</section>
);
};
export default Search;

View File

@ -0,0 +1,46 @@
.search {
margin-top: 40px;
& h2 {
font-family: "GT Eesti Pro Display";
font-size: 24px;
font-weight: 700;
font-style: normal;
letter-spacing: normal;
line-height: normal;
text-align: center;
margin-bottom: 40px;
}
& form {
position: relative;
width: 100%;
height: 60px;
border: 1px solid whitesmoke;
& input {
width: 100%;
height: 100%;
border: none;
margin-left: 160px;
font-size: 18px;
}
& input:focus,
& input:active {
outline: none;
}
& button {
position: absolute;
top: 15%;
left: 1%;
width: 131px;
height: 40px;
border-radius: 10px;
background-color: #e8e8e8;
border: none;
font-family: "GT Eesti Pro Display";
font-size: 18px;
font-weight: 400;
font-style: normal;
letter-spacing: normal;
text-align: center;
}
}
}