diff --git a/mon-entreprise/source/pages/integration/index.tsx b/mon-entreprise/source/pages/integration/index.tsx index c283ea71f..91941903f 100644 --- a/mon-entreprise/source/pages/integration/index.tsx +++ b/mon-entreprise/source/pages/integration/index.tsx @@ -1,8 +1,10 @@ import { ScrollToTop } from 'Components/utils/Scroll' import { SitePathsContext } from 'Components/utils/SitePathsContext' import { useContext } from 'react' +import emoji from 'react-easy-emoji' import { Trans } from 'react-i18next' import { Link, Route, Switch, useLocation } from 'react-router-dom' +import styled from 'styled-components' import { TrackChapter } from '../../ATInternetTracking' import Iframe from './Iframe' import Library from './Library' @@ -16,13 +18,14 @@ export default function Integration() { {pathname !== sitePaths.integration.index && ( -
- 🛠{' '} - - Outils pour les développeurs - {' '} - 🛠 -
+ + + ← Outils pour les développeurs {emoji('👨‍💻')} + + )} @@ -32,3 +35,10 @@ export default function Integration() { ) } + +const BackNavigationForDevs = styled.div` + transform: translateY(1rem); + padding: 0.25rem 1rem; + width: max-content; + border-radius: 0.25rem; +`