2023-05-23 21:25:18 +00:00
---
2023-08-12 17:24:26 +00:00
import "../styles/global.scss";
import Navbar from "../components/Layout/Navbar/Navbar.astro";
import Footer from "../components/Layout/Footer/Footer.astro";
import JoinCommunity from "../components/Layout/JoinCommunity/JoinCommunity.astro";
2023-05-23 21:25:18 +00:00
export interface Props {
2023-08-14 09:47:21 +00:00
view: string;
title: string;
2023-05-23 21:25:18 +00:00
}
2023-08-14 09:47:21 +00:00
const { view, title } = Astro.props;
2023-05-23 21:25:18 +00:00
---
<!DOCTYPE html>
<html lang="en">
2023-08-14 09:47:21 +00:00
<head>
2023-05-23 21:25:18 +00:00
<title>{title}</title>
2023-08-14 09:47:21 +00:00
<meta charset="utf-8" />
2023-08-12 17:24:26 +00:00
<meta
2023-08-14 09:47:21 +00:00
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
2023-08-12 17:24:26 +00:00
/>
<meta
2023-08-14 09:47:21 +00:00
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."
/>
<meta
name="keywords"
content="Web3 Extension, web3 browser, Lume Web, Web3, dWeb, p2p, handshake, eth, ethereum, ipfs, open web, privacy, decentralization, blockchain"
2023-08-12 17:24:26 +00:00
/>
2023-08-13 19:45:41 +00:00
<!-- Matomo -->
<script is:inline>
2023-08-14 09:47:21 +00:00
var _paq = (window._paq = window._paq || []);
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
(function () {
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);
})();
2023-08-13 19:45:41 +00:00
</script>
<!-- End Matomo Code -->
2023-08-14 09:47:21 +00:00
</head>
<body class="max-w-[1600px] mx-auto">
<Navbar view={view} />
2023-08-14 15:28:43 +00:00
<main class={view + " space-y-40 overflow-x-hidden relative mb-20"}>
2023-08-14 09:47:21 +00:00
<slot />
</main>
{view !== "home" && <JoinCommunity />}
<Footer />
</body>
2023-05-23 21:25:18 +00:00
</html>