-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fix-qrcode-darkmode' into prod
- Loading branch information
Showing
37 changed files
with
138 additions
and
132 deletions.
There are no files selected for viewing
Binary file added
BIN
+50.7 KB
common/assets/videos/accueil/accueil-qu-est-ce-que-mobilic-preview.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
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,60 @@ | ||
import React from "react"; | ||
import Button from "@mui/material/Button"; | ||
import Grid from "@mui/material/Grid"; | ||
import { VideoCard } from "./VideoCard"; | ||
|
||
import SalarieInscriptionVideo from "common/assets/videos/salaries/salarie-inscription.mp4"; | ||
import SalarieInscriptionPoster from "common/assets/videos/salaries/salarie-inscription.jpg"; | ||
import SalarieInstallAndroidVideo from "common/assets/videos/salaries/salarie-installation-appli-android.mp4"; | ||
import SalarieInstallAndroidPoster from "common/assets/videos/salaries/salarie-installation-appli-android.jpg"; | ||
import SalarieInstallIphoneVideo from "common/assets/videos/salaries/salarie-installation-appli-iphone.mp4"; | ||
import SalarieInstallIphonePoster from "common/assets/videos/salaries/salarie-installation-appli-iphone.jpg"; | ||
import SalarieUsageQuotidienVideo from "common/assets/videos/salaries/salarie-usage-quotidien.mp4"; | ||
import SalarieUsageQuotidienPoster from "common/assets/videos/salaries/salarie-usage-quotidien.jpg"; | ||
|
||
export function DriverVideoSection({ buttonStyle }) { | ||
return ( | ||
<> | ||
<Grid container direction="row" alignItems="center" spacing={10}> | ||
<Grid item xs={12} sm={6}> | ||
<VideoCard | ||
description="Inscription sur Mobilic" | ||
video={SalarieInscriptionVideo} | ||
poster={SalarieInscriptionPoster} | ||
/> | ||
</Grid> | ||
<Grid item xs={12} sm={6}> | ||
<VideoCard | ||
description="Télécharger Mobilic sur Android" | ||
video={SalarieInstallAndroidVideo} | ||
poster={SalarieInstallAndroidPoster} | ||
/> | ||
</Grid> | ||
<Grid item xs={12} sm={6}> | ||
<VideoCard | ||
description="Télécharger Mobilic sur iPhone" | ||
video={SalarieInstallIphoneVideo} | ||
poster={SalarieInstallIphonePoster} | ||
/> | ||
</Grid> | ||
<Grid item xs={12} sm={6}> | ||
<VideoCard | ||
description="Utiliser Mobilic au quotidien" | ||
video={SalarieUsageQuotidienVideo} | ||
poster={SalarieUsageQuotidienPoster} | ||
/> | ||
</Grid> | ||
</Grid> | ||
<Button | ||
color="primary" | ||
size="small" | ||
className={buttonStyle} | ||
variant={"outlined"} | ||
href="https://www.youtube.com/channel/UCqJlEoGiU1jcFjJWAr1BcVg/videos" | ||
target="_blank" | ||
> | ||
Voir toutes les vidéos | ||
</Button> | ||
</> | ||
); | ||
} |
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
Oops, something went wrong.