atmosphere explorer
at main 37 lines 1.4 kB view raw
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.ico" /> 7 <meta property="og:title" content="PDSls" /> 8 <meta property="og:type" content="website" /> 9 <meta property="og:url" content="https://pds.ls" /> 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 <link 14 rel="search" 15 type="application/opensearchdescription+xml" 16 href="/opensearch.xml" 17 title="PDSls" 18 /> 19 <link rel="preconnect" href="https://fonts.bunny.net" /> 20 <link href="https://fonts.bunny.net/css?family=roboto-mono:400" rel="stylesheet" /> 21 <script> 22 document.documentElement.classList.toggle( 23 "dark", 24 localStorage.theme === "dark" || 25 (!("theme" in localStorage) && window.matchMedia("(prefers-color-scheme: dark)").matches), 26 ); 27 </script> 28 <script src="/src/index.tsx" type="module"></script> 29 </head> 30 31 <body 32 id="root" 33 class="dark:bg-dark-500 min-h-screen bg-neutral-100 text-neutral-900 dark:text-neutral-200" 34 > 35 <noscript>You need to enable JavaScript to run this app.</noscript> 36 </body> 37</html>