Skip to content

Commit

Permalink
fix: title
Browse files Browse the repository at this point in the history
  • Loading branch information
tangimds committed Jul 20, 2022
1 parent 37a17b1 commit d0f9e3a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pages/_app.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import App from "next/app";
import { init } from "@socialgouv/matomo-next";
import Head from "next/head";

import "tailwindcss/tailwind.css";
import "style/default.css";
Expand All @@ -13,7 +14,15 @@ class MyApp extends App {
}
render() {
const { Component, pageProps } = this.props;
return <Component {...pageProps} />;
return (
<>
<Head>
<title>Jardin Mental</title>
<link rel="shortcut icon" href="/favicon.ico" />
</Head>
<Component {...pageProps} />;
</>
);
}
}

Expand Down

0 comments on commit d0f9e3a

Please sign in to comment.