(READ ONLY) Margin is an open annotation layer for the internet. Powered by the AT Protocol.
margin.at
extension
web
atproto
comments
1---
2import '../styles/global.css';
3
4interface Props {
5 title?: string;
6 description?: string;
7}
8
9const { title = 'Margin', description = 'Annotate the web' } = Astro.props;
10---
11
12<!DOCTYPE html>
13<html lang="en">
14 <head>
15 <meta charset="UTF-8" />
16 <meta name="description" content={description} />
17 <meta name="viewport" content="width=device-width" />
18 <link rel="icon" type="image/svg+xml" href="/logo.svg" />
19 <link rel="preconnect" href="https://fonts.googleapis.com">
20 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
21 <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700&display=swap" rel="stylesheet">
22 <meta name="generator" content={Astro.generator} />
23 <title>{title}</title>
24 </head>
25 <body class="bg-surface-50 dark:bg-surface-950 min-h-screen text-surface-900 dark:text-white">
26 <slot />
27 </body>
28</html>