2024-03-23 08:57:56 +01:00

32 lines
678 B
Plaintext

---
import Navigation from '../components/Navigation.astro';
import Footer from '../components/Footer.astro';
import Hamburger from '../components/Hamburger.astro';
interface Props {
title: string;
lang: string;
}
const { title, lang } = Astro.props;
---
<!doctype html>
<html lang={lang}>
<head>
<meta charset="UTF-8" />
<meta name="description" content="Astro description" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body>
<Hamburger />
<Navigation />
<slot />
<Footer />
</body>
</html>