resolve
This commit is contained in:
commit
dea1eb6104
BIN
src/assets/icons/financeIcon.png
Normal file
BIN
src/assets/icons/financeIcon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 726 B |
@ -10,7 +10,7 @@ export const CardControl = ({ title, path, description, img }) => {
|
|||||||
<Link to={`/${path}`} className="control-card">
|
<Link to={`/${path}`} className="control-card">
|
||||||
<div className="control-card__about">
|
<div className="control-card__about">
|
||||||
<img src={img} alt="itemImg" />
|
<img src={img} alt="itemImg" />
|
||||||
<h3>{title}</h3>
|
<h3 dangerouslySetInnerHTML={{ __html: title }}></h3>
|
||||||
</div>
|
</div>
|
||||||
<div className="control-card__info">
|
<div className="control-card__info">
|
||||||
<p dangerouslySetInnerHTML={{ __html: description }}></p>
|
<p dangerouslySetInnerHTML={{ __html: description }}></p>
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 22px;
|
line-height: 22px;
|
||||||
max-width: 125px;
|
max-width: 165px;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,6 +44,7 @@ export const ProfileCalendarComponent = React.memo(
|
|||||||
}) => {
|
}) => {
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
|
|
||||||
|
// const [l, setL] = useState(1);
|
||||||
const [calendar, setCalendar] = useState([]);
|
const [calendar, setCalendar] = useState([]);
|
||||||
const [month, setMonth] = useState("");
|
const [month, setMonth] = useState("");
|
||||||
const [endDate, setEndDate] = useState(null);
|
const [endDate, setEndDate] = useState(null);
|
||||||
|
@ -11,7 +11,8 @@ import { Navigation } from "@components/Navigation/Navigation";
|
|||||||
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
|
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
|
||||||
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
||||||
|
|
||||||
// import paymentIcon from "assets/icons/paymentIcon.png";
|
import financeIcon from "assets/icons/financeIcon.png";
|
||||||
|
import paymentIcon from "assets/icons/paymentIcon.png";
|
||||||
import settingIcon from "assets/icons/settingIcon.png";
|
import settingIcon from "assets/icons/settingIcon.png";
|
||||||
import summaryIcon from "assets/icons/summaryIcon.png";
|
import summaryIcon from "assets/icons/summaryIcon.png";
|
||||||
import timerIcon from "assets/icons/timerIcon.png";
|
import timerIcon from "assets/icons/timerIcon.png";
|
||||||
@ -28,10 +29,10 @@ export const Profile = () => {
|
|||||||
const [profileItemsInfo] = useState({
|
const [profileItemsInfo] = useState({
|
||||||
developer: [
|
developer: [
|
||||||
{
|
{
|
||||||
path: "profile/calendar",
|
path: "profile",
|
||||||
img: reportsIcon,
|
img: paymentIcon,
|
||||||
title: "Ваша отчетность",
|
title: "Работа в IT <br/>открытые запросы",
|
||||||
description: "<span></span>Отработанных в этом месяце часов"
|
description: "Перейдите чтобы посмотреть <br/>открытые позиции"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "profile/summary",
|
path: "profile/summary",
|
||||||
@ -42,20 +43,26 @@ export const Profile = () => {
|
|||||||
{
|
{
|
||||||
path: "profile/tracker",
|
path: "profile/tracker",
|
||||||
img: timerIcon,
|
img: timerIcon,
|
||||||
title: "Трекер времени",
|
title: "Трекер <br/>времени",
|
||||||
description: "Сколько времени занимает <br/>выполнение задач"
|
description: "Сколько времени занимает <br/>выполнение задач"
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// path: "profile/payouts",
|
path: "profile/payouts",
|
||||||
// img: paymentIcon,
|
img: financeIcon,
|
||||||
// title: "Выплаты",
|
title: "Выплаты и <br/>финансы",
|
||||||
// description: "У вас <span>подтвержден</span> <br/>статус самозанятого"
|
description: "У вас <span>подтвержден</span> <br/>статус самозанятого"
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
path: "profile/settings",
|
path: "profile/settings",
|
||||||
img: settingIcon,
|
img: settingIcon,
|
||||||
title: "Настройки профиля",
|
title: "Настройки <br/>профиля",
|
||||||
description: "Перейдите чтобы начать <br/>редактирование"
|
description: "Перейдите чтобы начать <br/>редактирование"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: "profile/calendar",
|
||||||
|
img: reportsIcon,
|
||||||
|
title: "Ваша <br/>отчетность",
|
||||||
|
description: "<span></span>Отработанных в этом месяце часов"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
partner: [
|
partner: [
|
||||||
|
Loading…
Reference in New Issue
Block a user