feat: add analytics
This commit is contained in:
parent
fc0c1a6dd5
commit
6fcce50dab
|
@ -5,34 +5,53 @@ import Footer from "../components/Layout/Footer/Footer.astro";
|
||||||
import JoinCommunity from "../components/Layout/JoinCommunity/JoinCommunity.astro";
|
import JoinCommunity from "../components/Layout/JoinCommunity/JoinCommunity.astro";
|
||||||
|
|
||||||
export interface Props {
|
export interface Props {
|
||||||
view: string;
|
view: string;
|
||||||
title: string;
|
title: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { view, title } = Astro.props;
|
const {view, title} = Astro.props;
|
||||||
---
|
---
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>{title}</title>
|
<title>{title}</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8"/>
|
||||||
<meta
|
<meta
|
||||||
name="viewport"
|
name="viewport"
|
||||||
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
|
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
|
||||||
/>
|
/>
|
||||||
<meta
|
<meta
|
||||||
name="description"
|
name="description"
|
||||||
content="A platform, network and experience that allows you to control and own your online web, and access all of the possibilities Web3 has to offer. Join the open web."
|
content="A platform, network and experience that allows you to control and own your online web, and access all of the possibilities Web3 has to offer. Join the open web."
|
||||||
/>
|
/>
|
||||||
<meta name="keywords" content="Web3 Extension, web3 browser, Lume Web, Web3, dWeb, p2p, handshake, eth, ethereum, ipfs, open web, privacy, decentralization, blockchain" />
|
<meta name="keywords"
|
||||||
</head>
|
content="Web3 Extension, web3 browser, Lume Web, Web3, dWeb, p2p, handshake, eth, ethereum, ipfs, open web, privacy, decentralization, blockchain"/>
|
||||||
<body class="max-w-[1600px] mx-auto">
|
<!-- Matomo -->
|
||||||
<Navbar view={view} />
|
<script is:inline>
|
||||||
<main class={view + " space-y-40"}>
|
var _paq = window._paq = window._paq || [];
|
||||||
<slot />
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||||
</main>
|
_paq.push(['trackPageView']);
|
||||||
{view !== "home" && <JoinCommunity />}
|
_paq.push(['enableLinkTracking']);
|
||||||
<Footer />
|
(function () {
|
||||||
</body>
|
var u = "//piwiki.lumeweb.com/";
|
||||||
|
_paq.push(['setTrackerUrl', u + 'matomo.php']);
|
||||||
|
_paq.push(['setSiteId', '1']);
|
||||||
|
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
|
||||||
|
g.async = true;
|
||||||
|
g.src = u + 'matomo.js';
|
||||||
|
s.parentNode.insertBefore(g, s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<!-- End Matomo Code -->
|
||||||
|
</head>
|
||||||
|
<body class="max-w-[1600px] mx-auto">
|
||||||
|
<Navbar view={view}/>
|
||||||
|
<main class={view + " space-y-40"}>
|
||||||
|
<slot/>
|
||||||
|
</main>
|
||||||
|
{view !== "home" &&
|
||||||
|
<JoinCommunity/>}
|
||||||
|
<Footer/>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue