this repo has no description
1---
2interface Props {
3 title: string;
4}
5---
6
7<html lang="en">
8 <head>
9 <meta charset="utf-8" />
10 <meta name="viewport" content="width=device-width, initial-scale=1" />
11 <meta name="generator" content={Astro.generator} />
12 <title>{Astro.props.title}</title>
13 <style is:inline>
14 @layer base {
15 :root {
16 color-scheme: dark;
17 font-family: sans-serif;
18 }
19
20 input,
21 textarea,
22 button {
23 font-family: inherit;
24 }
25 }
26 </style>
27 <slot name="head" />
28 </head>
29 <body>
30 <slot />
31 </body>
32</html>