aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/BaseLayout.astro
blob: 6a253a818074fc06634a75e08204de16f4a2f105 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
import Analytics from "../components/Analytics.astro";
import Head from "../components/Head.astro";
import Header from "../components/Header.astro";
import "../scss/global.scss";

type Props = {
	readonly description?: string;
	readonly title?: string;
};

const { title, description } = Astro.props;
---

<html lang="ru">
	<Head title={title} description={description} />

	<body>
		<Header />
		<main>
			<slot />
		</main>
		<Analytics />
	</body>
</html>