1<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="utf-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1" />
6 <link rel="icon" href="/favicon.png" />
7 <meta property="og:title" content="PDSls" />
8 <meta property="og:type" content="website" />
9 <meta property="og:url" content="https://pdsls.dev" />
10 <meta property="og:description" content="Browse the public data on atproto" />
11 <meta property="description" content="Browse the public data on atproto" />
12 <link rel="manifest" href="/manifest.json" />
13 <title>PDSls</title>
14 <link rel="preconnect" href="https://rsms.me/" />
15 <link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
16 <link rel="preconnect" href="https://fonts.bunny.net" />
17 <link href="https://fonts.bunny.net/css?family=roboto-mono:400" rel="stylesheet" />
18 <script>
19 document.documentElement.classList.toggle(
20 "dark",
21 localStorage.theme === "dark" ||
22 (!("theme" in localStorage) && window.matchMedia("(prefers-color-scheme: dark)").matches),
23 );
24 </script>
25 <script src="/src/index.tsx" type="module"></script>
26 </head>
27
28 <body id="root" class="dark:bg-dark-500 bg-neutral-100">
29 <noscript>You need to enable JavaScript to run this app.</noscript>
30 </body>
31</html>