2021-05-27 17:44:11 +03:00
|
|
|
import React from 'react';
|
2021-06-11 16:58:44 +03:00
|
|
|
import dogBig from '../../images/dog.jpg';
|
2021-06-01 15:25:01 +03:00
|
|
|
import arrowLeft from '../../images/arrow_left.png';
|
|
|
|
import arrowRight from '../../images/arrow_right.png';
|
2021-05-31 18:23:25 +03:00
|
|
|
import style from './Sidebar.module.css';
|
2021-05-27 17:44:11 +03:00
|
|
|
|
|
|
|
const Sidebar = () => {
|
|
|
|
return (
|
|
|
|
<div className={style.candidateSidebar}>
|
|
|
|
<div className={style.candidateSidebar__info}>
|
2021-06-11 16:58:44 +03:00
|
|
|
<img src={dogBig} alt="" />
|
2021-05-27 17:44:11 +03:00
|
|
|
<p className={style.candidateSidebar__info__e}>Опыт работы</p>
|
|
|
|
<p className={style.candidateSidebar__info__y}>4+ лет</p>
|
|
|
|
<button className={style.candidateSidebar__info__btn}>Выбрать к собеседованию</button>
|
|
|
|
<p className={style.candidateSidebar__info__l}>Посмотреть ещё</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className={style.candidateSidebar__arrows}>
|
|
|
|
<div className={style.arrow__left}>
|
|
|
|
<img src={arrowLeft} alt="" />
|
|
|
|
</div>
|
2021-06-04 11:59:45 +03:00
|
|
|
<span className={style.arrows__sp}>1 / 15</span>
|
2021-05-27 17:44:11 +03:00
|
|
|
<div className={style.arrow__right}>
|
|
|
|
<img src={arrowRight} alt="" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Sidebar;
|