Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects

Resolve "Add matomo stats"

Merged Julie Thezenas requested to merge 33-add-matomo-stats into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 11
2
@@ -5,6 +5,7 @@
@@ -5,6 +5,7 @@
* LICENSE file in the root directory of this source tree.
* LICENSE file in the root directory of this source tree.
*/
*/
import React from "react";
import React from "react";
 
import { Link } from "react-router-dom";
import {useThemeConfig} from "@docusaurus/theme-common";
import {useThemeConfig} from "@docusaurus/theme-common";
import FooterLinks from "@theme/Footer/Links";
import FooterLinks from "@theme/Footer/Links";
import FooterLogo from "@theme/Footer/Logo";
import FooterLogo from "@theme/Footer/Logo";
@@ -12,6 +13,8 @@ import FooterCopyright from "@theme/Footer/Copyright";
@@ -12,6 +13,8 @@ import FooterCopyright from "@theme/Footer/Copyright";
import FooterLayout from "@theme/Footer/Layout";
import FooterLayout from "@theme/Footer/Layout";
import { FaYoutube, FaLinkedin, FaGitlab, FaTwitter } from "react-icons/fa";
import { FaYoutube, FaLinkedin, FaGitlab, FaTwitter } from "react-icons/fa";
import Froggitblanc from "/static/img/logo_froggit_blanc.png";
import Froggitblanc from "/static/img/logo_froggit_blanc.png";
 
import DontTrackMe from "/static/img/do-not-track-me.svg";
 
import useBaseUrl from "@docusaurus/useBaseUrl";
function Footer() {
function Footer() {
@@ -47,11 +50,10 @@ function Footer() {
@@ -47,11 +50,10 @@ function Footer() {
<a href="https://twitter.com/art_devops" target="_blank" rel="noreferrer">
<a href="https://twitter.com/art_devops" target="_blank" rel="noreferrer">
<FaTwitter className="footer_icons" />
<FaTwitter className="footer_icons" />
</a>
</a>
</div>
</div>
<div>
<div>
<FooterLayout
<FooterLayout
icons={icons && <FooterIcons icons={icons} />}
icons={icons && <FooterIcons icons={icons} />}
style={style}
style={style}
@@ -60,6 +62,13 @@ function Footer() {
@@ -60,6 +62,13 @@ function Footer() {
copyright={copyright && <FooterCopyright copyright={copyright} />}
copyright={copyright && <FooterCopyright copyright={copyright} />}
/>
/>
</div>
</div>
 
 
<Link to={useBaseUrl("/confidentialite#ne-me-trackez-pas")} className="notrack_container">
 
<div>
 
<DontTrackMe className="no_track" />
 
</div>
 
</Link>
 
</div>
</div>
</>
</>
);
);
Loading