this repo has no description
1---
2import '../styles/global.css';
3
4interface Props {
5 title?: string;
6 documentUri?: string; // AT-URI for Standard.site document verification
7}
8
9const { title = '@toshi', documentUri } = Astro.props;
10---
11
12<html lang="en">
13 <head>
14 <meta charset="utf-8" />
15 <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
16 <meta name="viewport" content="width=device-width" />
17 <meta name="description" content="A peer-to-peer electronic cash system for AT Protocol" />
18 <title>{title}</title>
19 {documentUri && <link rel="site.standard.document" href={documentUri} />}
20 </head>
21 <body>
22 <div class="container">
23 <slot />
24 </div>
25 </body>
26</html>