Experiment to rebuild Diffuse using web applets.
0

Configure Feed

Select the types of activity you want to include in your feed.

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 is:global> 14 @import "../styles/reset.css"; 15 @import "../styles/fonts.css"; 16 @import "../styles/variables.css"; 17 </style> 18 </head> 19 <body> 20 <slot /> 21 </body> 22</html>