Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
emile-bex committed Aug 17, 2023
2 parents 8bcd7ea + 2a7480b commit e9c754d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkedout-front",
"version": "2.6.3",
"version": "2.7.0",
"description": "",
"main": "index.js",
"engines": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const CVCallToActions = ({
<StyledCVCTAContainer>
<StyledCVCTACard className={`${!isDesktop ? 'mobile' : ''}`} order={3}>
<H5
title="Partagez son CV sur vos réseaux sociaux :"
title="Partagez son CV sur vos réseaux :"
center
color="darkGrayFont"
/>
Expand Down
8 changes: 4 additions & 4 deletions src/components/partials/CV/PageCvContent/PageCVContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import {
} from 'src/components/partials/CV/PageCvContent/PageCVContent.styles';
import { Button, Icon } from 'src/components/utils';
import { CarouselSwiper } from 'src/components/utils/CarouselSwiper';
import { H1, H2, H3, H4, H5, H6 } from 'src/components/utils/Headings';
import { H1, H2, H3, H4, H5 } from 'src/components/utils/Headings';
import { CONTRACTS } from 'src/constants';
import { DEPARTMENTS_FILTERS } from 'src/constants/departements';
import { FB_TAGS, GA_TAGS } from 'src/constants/tags';
Expand Down Expand Up @@ -93,7 +93,7 @@ export const PageCVContent = ({
<>
<StyledShareContainer>
<H5
title="Partagez son CV sur vos réseaux sociaux"
title="Partagez son CV sur vos réseaux"
color={CV_COLORS.titleGray}
/>
<p>
Expand Down Expand Up @@ -206,7 +206,7 @@ export const PageCVContent = ({
<>
<StyledShareContainer>
<H5
title="Partagez son CV sur vos réseaux sociaux"
title="Partagez son CV sur vos réseaux"
color={CV_COLORS.titleGray}
/>
<p>
Expand Down Expand Up @@ -319,7 +319,7 @@ export const PageCVContent = ({
</StyledCVPageContentInformations>
{cv.passions?.length > 0 && isDesktop && (
<StyledCVPageContentPassions>
<H6 title="Mes Passions" color={CV_COLORS.titleGray} />
<H4 title="Mes Passions" color={CV_COLORS.titleGray} />
<ul>
{cv?.passions?.map(({ name }) => {
return <p>{name}</p>;
Expand Down

0 comments on commit e9c754d

Please sign in to comment.