Compare commits

...

3 Commits

Author SHA1 Message Date
semantic-release-bot 0dc731b3e9 chore(release): 0.2.0 [skip ci]
# [0.2.0](https://git.lumeweb.com/LumeWeb/lumeweb.com/compare/v0.1.0...v0.2.0) (2023-08-13)

### Features

* add analytics ([6fcce50](6fcce50dab))
2023-08-13 19:46:39 +00:00
Derrick Hammer 2f98e06d8b
Merge remote-tracking branch 'origin/master' 2023-08-13 15:45:52 -04:00
Derrick Hammer 6fcce50dab
feat: add analytics 2023-08-13 15:45:41 -04:00
4 changed files with 48 additions and 22 deletions

View File

@ -1,3 +1,10 @@
# [0.2.0](https://git.lumeweb.com/LumeWeb/lumeweb.com/compare/v0.1.0...v0.2.0) (2023-08-13)
### Features
* add analytics ([6fcce50](https://git.lumeweb.com/LumeWeb/lumeweb.com/commit/6fcce50dab4d93aaa95520f89b676f40a29ea21d))
# [0.1.0](https://git.lumeweb.com/LumeWeb/lumeweb.com/compare/v0.0.1...v0.1.0) (2023-08-13)

4
npm-shrinkwrap.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@lumeweb/lumeweb.com",
"version": "0.1.0",
"version": "0.2.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@lumeweb/lumeweb.com",
"version": "0.1.0",
"version": "0.2.0",
"dependencies": {
"@astrojs/react": "^2.1.1",
"@astrojs/tailwind": "^3.1.1",

View File

@ -1,7 +1,7 @@
{
"name": "@lumeweb/lumeweb.com",
"type": "module",
"version": "0.1.0",
"version": "0.2.0",
"private": true,
"repository": {
"type": "git",

View File

@ -5,34 +5,53 @@ import Footer from "../components/Layout/Footer/Footer.astro";
import JoinCommunity from "../components/Layout/JoinCommunity/JoinCommunity.astro";
export interface Props {
view: string;
title: string;
view: string;
title: string;
}
const { view, title } = Astro.props;
const {view, title} = Astro.props;
---
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<title>{title}</title>
<meta charset="utf-8" />
<meta charset="utf-8"/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<meta
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."
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" />
</head>
<body class="max-w-[1600px] mx-auto">
<Navbar view={view} />
<main class={view + " space-y-40"}>
<slot />
</main>
{view !== "home" && <JoinCommunity />}
<Footer />
</body>
<meta name="keywords"
content="Web3 Extension, web3 browser, Lume Web, Web3, dWeb, p2p, handshake, eth, ethereum, ipfs, open web, privacy, decentralization, blockchain"/>
<!-- Matomo -->
<script is:inline>
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);
})();
</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>