🖋️ ajoute le nom du site derrière le titre de la page

pull/439/head
Johan Girod 2019-01-29 11:33:53 +01:00
parent b40ec55e8f
commit 6eaf647221
5 changed files with 12 additions and 6 deletions

View File

@ -38,8 +38,8 @@ button {
flex-wrap: wrap;
}
.ui__.answer-group > * {
flex-grow: 1;
flex-shrink: 0;
flex: 1;
white-space: nowrap;
margin: 0.5rem !important;
}
}

View File

@ -574,3 +574,4 @@ par: per
Explorez notre base de règles: Explore our rules
maj2019: The simulation is up-to-date in 2019.
siteName: mycompanyinfrance.fr

View File

@ -6,6 +6,7 @@ import { compose } from 'ramda'
import createRavenMiddleware from 'raven-for-redux'
import Raven from 'raven-js'
import React, { Component } from 'react'
import Helmet from 'react-helmet'
import { withNamespaces } from 'react-i18next'
import { Route, Switch } from 'react-router-dom'
import 'Ui/index.css'
@ -82,8 +83,12 @@ let RouterSwitch = compose(withNamespaces())(() => {
)
})
const App = withSitePaths(({ sitePaths }) => (
const App = compose(
withSitePaths,
withNamespaces()
)(({ sitePaths, t }) => (
<div className="app-container">
<Helmet titleTemplate={`%s | ${t(['siteName', 'mon-entreprise.fr'])}`} />
{/* Passing location down to prevent update blocking */}
<Navigation location={location} />
<div className="app-content">

View File

@ -48,7 +48,7 @@ const CreateMyCompany = ({
<title>
{t(
'formeJuridique.page.titre',
'Quel statut juridique choisir pour votre entreprise ?'
'Quel statut juridique choisir : le guide pas à pas'
)}
</title>
<meta

View File

@ -59,9 +59,9 @@ module.exports = {
template: 'index.html',
chunks: ['mon-entreprise'],
title:
'Mon-entreprise : Un guide pas à pas pour créer une entreprise en France',
'Mon-entreprise.fr : Le guide officiel pour créer et administrer votre activité',
description:
'Du statut juridique à la première embauche, vous trouverez ici toutes les ressources nécessaires pour démarrer votre activité.',
'Du statut juridique à la première embauche, en passant par la simulation des cotisations, vous trouverez ici toutes les ressources pour démarrer votre activité.',
filename: 'mon-entreprise.html'
}),