aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/BaseLayout.astro
blob: 8336a3c2e07f9a0f8160a89a30d8309e94c88e42 (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
26
27
28
29
30
31
32
33
34
35
36
---
import type { Thing } from "schema-dts";
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 lang: string;
	readonly modifiedTime?: string;
	readonly ogType?: "website" | "article";
	readonly preview: string;
	readonly publishedTime?: string;
	readonly robots?: string;
	readonly schema: Thing[];
	readonly title: string;
};

const { description, lang, modifiedTime, ogType, preview, publishedTime, robots, schema, title } = Astro.props;
---

<html lang={lang}>
	<Head title={title} description={description} preview={preview} robots={robots} schema={schema} lang={lang} ogType={ogType} publishedTime={publishedTime} modifiedTime={modifiedTime} />

	<body>
		<main>
			<section>
				<Header />
			</section>

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