2023-05-23 21:25:18 +00:00
---
2023-05-29 21:53:41 +00:00
import '../styles/global.scss';
2023-05-30 22:08:42 +00:00
import Navbar from '../components/Layout/Navbar/Navbar.jsx';
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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.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." />
<meta name="keywords" content="Web3 Extension, Lume Web, Web3" />
</head>
<body>
<Navbar view={view} client:load />
2023-05-26 00:15:17 +00:00
<main class={view}>
2023-05-23 21:25:18 +00:00
<slot />
</main>
2023-05-29 21:53:41 +00:00
{view !== 'home' && <JoinCommunity />}
2023-05-23 21:25:18 +00:00
<Footer />
</body>
</html>