1---
2const { title } = Astro.props;
3---
4
5<html lang="en">
6 <head>
7 <meta charset="UTF-8" />
8 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
9
10 <title>{title}</title>
11 </head>
12 <body>
13 <slot />
14 </body>
15</html>