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