This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Agrim/DPROD-3954 senegal office (#7735)
* fix: adding senegal office * fix: empty commit * fix: adding in strapi * fix: dakar * auto-pull-translation * translation: 📚 sync translations from crowdin feature branch * fix: translations * fix: senegal office * fix: remove * fix: remove * fix: description * fix: description * fix: senegal sasu --------- Co-authored-by: Agrim Jain <[email protected]> Co-authored-by: DerivFE <[email protected]>
- Loading branch information
1 parent
72b09e9
commit 600726e
Showing
29 changed files
with
908 additions
and
29 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+229 KB
themes/gatsby-theme-deriv/src/images/common/careers/living_in_senegal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+134 KB
themes/gatsby-theme-deriv/src/images/common/careers/maps/map-senegal-career.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+266 Bytes
themes/gatsby-theme-deriv/src/images/common/careers/senegal_flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+164 KB
themes/gatsby-theme-deriv/src/images/common/careers/thumbnail_dakar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
40 changes: 40 additions & 0 deletions
40
themes/gatsby-theme-deriv/src/pages/careers/locations/dakar/index.tsx
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,40 @@ | ||
import React from 'react' | ||
import { graphql, useStaticQuery } from 'gatsby' | ||
import { dakar } from '../../_model/_locations/_locations' | ||
import { NewLocationLayout } from '../_location-layout-new-offices' | ||
import { SEO } from 'components/containers' | ||
import Layout from 'components/layout/layout' | ||
import { WithIntl } from 'components/localization' | ||
import { TGatsbyHead } from 'features/types' | ||
|
||
const query = graphql` | ||
query { | ||
living_in_dakar: file(relativePath: { eq: "careers/living_in_senegal.png" }) { | ||
...fadeIn | ||
} | ||
senegal_map: file(relativePath: { eq: "careers/maps/map-senegal-career.png" }) { | ||
...fadeIn | ||
} | ||
} | ||
` | ||
|
||
const Dakar = ({ pageContext }: TGatsbyHead) => { | ||
const {region} = pageContext | ||
const images = useStaticQuery(query) | ||
|
||
return ( | ||
<Layout region={region} type="careers"> | ||
<NewLocationLayout location={dakar} images = {images} /> | ||
</Layout> | ||
) | ||
} | ||
|
||
export default WithIntl()(Dakar) | ||
|
||
export const Head = ({ pageContext }: TGatsbyHead) => ( | ||
<SEO | ||
title="_t_Dakar | Our office – Senegal | Deriv_t_" | ||
description="_t_Find your role with us by browsing Deriv job opportunities in Dakar, Senegal._t_" | ||
pageContext={pageContext} | ||
/> | ||
) |
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.