add original image
This commit is contained in:
parent
580355afe0
commit
bccc5f98dc
@ -1,6 +1,6 @@
|
||||
import React from 'react';
|
||||
import style from './Description.module.css';
|
||||
import dog from '../../images/dog.jpg';
|
||||
import male from '../../images/medium_male.png';
|
||||
import rectangle from '../../images/rectangle_secondPage.png';
|
||||
import { Link } from 'react-router-dom';
|
||||
import { LEVELS, SKILLS } from '../constants/constants';
|
||||
@ -23,7 +23,7 @@ const Description = ({ onLoadMore }) => {
|
||||
? filteredListArr.map((el) => (
|
||||
<div className="row" key={el.id}>
|
||||
<div className="col-2">
|
||||
<img className={style.description__img} src={dog} alt="" />
|
||||
<img className={style.description__img} src={male} alt="" />
|
||||
</div>
|
||||
<div className="col-12 col-xl-6">
|
||||
<h3 className={style.description__title}>
|
||||
@ -58,7 +58,7 @@ const Description = ({ onLoadMore }) => {
|
||||
: candidatesListArr.map((el) => (
|
||||
<div className="row" key={el.id}>
|
||||
<div className="col-2">
|
||||
<img className={style.description__img} src={dog} alt="" />
|
||||
<img className={style.description__img} src={male} alt="" />
|
||||
</div>
|
||||
<div className="col-12 col-xl-6">
|
||||
<h3 className={style.description__title}>
|
||||
|
@ -1,13 +1,13 @@
|
||||
import React from 'react';
|
||||
import { Link } from 'react-router-dom';
|
||||
import dogBig from '../../images/dog.jpg';
|
||||
import maleBig from '../../images/medium_male_big.png';
|
||||
import style from './Sidebar.module.css';
|
||||
|
||||
const Sidebar = () => {
|
||||
return (
|
||||
<div className={style.candidateSidebar}>
|
||||
<div className={style.candidateSidebar__info}>
|
||||
<img src={dogBig} alt="" />
|
||||
<img src={maleBig} alt="" />
|
||||
<p className={style.candidateSidebar__info__e}>Опыт работы</p>
|
||||
<p className={style.candidateSidebar__info__y}>4+ лет</p>
|
||||
<Link to={`/form`}>
|
||||
|
Loading…
Reference in New Issue
Block a user