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 {
view: string;
title: string;
}
const { view, title } = Astro.props;
---
<!DOCTYPE html>
<html lang="en">
<head>
<title>{title}</title>
<meta charset="utf-8" />
2023-08-12 17:24:26 +00:00
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<meta
name="description"
content="Lume Web - Web3 for the masses | Install the Lume Web3 Extension and have a 1-click gateway into the Web3 internet on Opera, Vivaldi, Edge and Firefox."
/>
2023-05-23 21:25:18 +00:00
<meta name="keywords" content="Web3 Extension, Lume Web, Web3" />
</head>
2023-08-12 20:35:59 +00:00
<body class="max-w-[1600px] mx-auto">
2023-08-12 17:24:26 +00:00
<Navbar view={view} />
<main class={view + " space-y-40"}>
2023-05-23 21:25:18 +00:00
<slot />
</main>
2023-08-12 17:24:26 +00:00
{view !== "home" && <JoinCommunity />}
2023-05-23 21:25:18 +00:00
<Footer />
</body>
</html>