🐛 Corrige l'affichage des emojies
parent
7b903bf9ce
commit
537805d0a4
|
@ -836,8 +836,8 @@ newsletter:
|
|||
starting a business</2> and access new features in advance.
|
||||
titre: Stay informed
|
||||
nextSteps:
|
||||
integration-iframe: <0>{emoji('📱')} Integrate the web module</0><1>Add this
|
||||
simulator to your website in one click via a turnkey script.</1>
|
||||
integration-iframe: <0><0></0> Integrate the web module</0><1>Add this simulator
|
||||
to your website in one click with a simple script.</1>
|
||||
non: no
|
||||
non applicable si: not applicable if
|
||||
non déductible: not deductible
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import PreviousSimulationBanner from 'Components/PreviousSimulationBanner'
|
||||
import { ThemeColorsProvider } from 'Components/utils/colors'
|
||||
import { IsEmbeddedContext } from 'Components/utils/embeddedContext'
|
||||
import Emoji from 'Components/utils/Emoji'
|
||||
import { useEngine } from 'Components/utils/EngineContext'
|
||||
import Meta from 'Components/utils/Meta'
|
||||
import { SitePathsContext } from 'Components/utils/SitePathsContext'
|
||||
|
@ -124,7 +125,7 @@ function NextSteps({ iframePath, nextSteps }: NextStepsProps) {
|
|||
target="_blank"
|
||||
>
|
||||
<h5>
|
||||
{emoji('📖')} {guideUrssaf.title}
|
||||
<Emoji emoji="📖" /> {guideUrssaf.title}
|
||||
</h5>
|
||||
<p className="ui__ notice">
|
||||
Des conseils pour se lancer dans la création et une présentation
|
||||
|
@ -143,7 +144,7 @@ function NextSteps({ iframePath, nextSteps }: NextStepsProps) {
|
|||
}}
|
||||
>
|
||||
<h5>
|
||||
{emoji(simulators[simulatorId].icône)}{' '}
|
||||
<Emoji emoji={simulators[simulatorId].icône} />{' '}
|
||||
{simulators[simulatorId].shortName}
|
||||
</h5>
|
||||
<p className="ui__ notice">
|
||||
|
@ -160,7 +161,9 @@ function NextSteps({ iframePath, nextSteps }: NextStepsProps) {
|
|||
}}
|
||||
>
|
||||
<Trans i18nKey="nextSteps.integration-iframe">
|
||||
<h5>{emoji('📱')} Intégrer le module web</h5>
|
||||
<h5>
|
||||
<Emoji emoji="📱" /> Intégrer le module web
|
||||
</h5>
|
||||
<p className="ui__ notice">
|
||||
Ajouter ce simulateur sur votre site internet en un clic via
|
||||
un script clé en main.
|
||||
|
|
Loading…
Reference in New Issue