Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
fix(text): update dispositif name (lint !)
Browse files Browse the repository at this point in the history
  • Loading branch information
carolineBda committed Feb 1, 2022
1 parent 0bb50ae commit 8e2e46f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ const MATOMO_SITE_ID = process.env.NEXT_PUBLIC_MATOMO_SITE_ID;

class MyApp extends App {
componentDidMount() {
init({siteId: MATOMO_SITE_ID, url: MATOMO_URL});
init({ siteId: MATOMO_SITE_ID, url: MATOMO_URL });
}

render() {
const {Component, pageProps} = this.props;
const { Component, pageProps } = this.props;

return (
<>
<Head>
<link rel="shortcut icon" href="/favicon.ico"/>
<link rel="shortcut icon" href="/favicon.ico" />
<title>MonPsy</title>
<meta property="og:title" content="MonPsy"/>
<meta property="og:title" content="MonPsy" />

<meta
name="description"
Expand All @@ -41,7 +41,7 @@ class MyApp extends App {
content="MonPsy s’adresse à toute la population à partir de 3 ans présentant des troubles psychiques d’intensité légère à modérée. Dès le printemps 2022, sur orientation d’un médecin, les patients (enfants, adolescents et adultes) pourront bénéficier de séances assurées par des psychologues volontaires conventionnés avec l’Assurance Maladie."
/>

<meta property="og:type" content="website"/>
<meta property="og:type" content="website" />
<script
type="text/javascript"
src="https://forms.sbc08.com/form.js"
Expand All @@ -56,11 +56,11 @@ class MyApp extends App {
<SkiplinkItem href="#header-navigation">Menu</SkiplinkItem>
<SkiplinkItem href="#footer">Pied de page</SkiplinkItem>
</Skiplinks>
<Nav/>
<Nav />
<div id="contenu">
<Component {...pageProps} />
</div>
<Footer/>
<Footer />
</>
);
}
Expand Down

0 comments on commit 8e2e46f

Please sign in to comment.