Experiment to rebuild Diffuse using web applets.
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 <link rel="manifest" href="manifest.json" />
10
11 <title>{title}</title>
12
13 <style>
14 html,
15 body {
16 margin: 0;
17 }
18 </style>
19 </head>
20 <body>
21 <slot />
22 </body>
23</html>