-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
09e90cf
commit a1edde8
Showing
6 changed files
with
112 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import React from 'react'; | ||
import { Reviews } from './Reviews'; | ||
|
||
const meta = { | ||
title: 'Reviews', | ||
component: Reviews, | ||
decorators: [ | ||
(Story) => { | ||
return <Story />; | ||
}, | ||
], | ||
}; | ||
|
||
const reviews = [ | ||
{ | ||
image: '/static/img/temoignage-entreprise-stephane-danny.jpg', | ||
author: 'Stéphane', | ||
authorStatus: 'Recruteur de Danny', | ||
company: 'Les copains de Bastien', | ||
review: ( | ||
<> | ||
“Bien plus qu'un candidat standard, on sent qu'il y a un | ||
enjeu personnel et une dimension impactante !“ | ||
</> | ||
), | ||
}, | ||
{ | ||
image: '/static/img/temoignage-entreprise-gregoire-mbemba.jpg', | ||
author: 'Grégoire', | ||
company: 'Dani Alu', | ||
authorStatus: "Recruteur de M'Bemba", | ||
review: ( | ||
<> | ||
“Le recrutement de M'Bemba a ressoudé les équipes. Elles se | ||
sont investies dans un projet. Elles peuvent être très fières d’avoir | ||
fait en sorte que M'Bemba soit épanoui et polyvalent dans | ||
l’atelier.“ | ||
</> | ||
), | ||
}, | ||
]; | ||
|
||
const Template = () => { | ||
return ( | ||
<Reviews | ||
title="Plus de 60 entreprises partenaires nous font confiance à LinkedOut" | ||
reviews={reviews} | ||
/> | ||
); | ||
}; | ||
|
||
export const PartialReviews = { | ||
render: Template, | ||
}; | ||
|
||
export default meta; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters