46 lines
1.7 KiB
JavaScript
Raw Normal View History

2021-06-16 17:51:25 +03:00
import React from 'react';
import style from './Calendar.module.css';
import calendarMale from '../../images/medium_male.png';
2021-06-17 18:21:48 +03:00
import rectangle from '../../images/rectangle_secondPage.png';
import CalendarComponent from './CalendarComponent';
2021-06-16 17:51:25 +03:00
const Calendar = () => {
return (
<section className={style.calendar}>
<div className="container">
<div className="row">
<h2 className={style.calendar__title}>
2021-06-17 18:21:48 +03:00
Добрый день, <span>Александр !</span>
2021-06-16 17:51:25 +03:00
</h2>
2021-06-17 18:21:48 +03:00
<div className="col-xl-12 d-flex justify-content-between align-items-center">
2021-06-16 17:51:25 +03:00
<div className={style.calendarHeader__info}>
<img className={style.calendarHeader__info__img} src={calendarMale} alt="img" />
2021-06-17 18:21:48 +03:00
<h3 className={style.calendarHeader__info__name}>
Александр <br /> Комов
</h3>
2021-06-16 17:51:25 +03:00
</div>
2021-06-17 18:21:48 +03:00
<div className={style.calendarHeader__title}>
<h3 className={style.calendarHeader__title__text}>Frontend разработчик, Middle</h3>
<img className={style.calendarHeader__title__img} src={rectangle} alt="img" />
</div>
<div className={style.calendarHeader__btn}>
<button>Заполнить отчет за день</button>
</div>
</div>
</div>
<div className="row">
<div className="col-12">
<CalendarComponent />
<p className={style.calendarFooter__text}>
Июнь : <span> 60 часов </span>
</p>
2021-06-16 17:51:25 +03:00
</div>
</div>
</div>
</section>
);
};
export default Calendar;