index.html 1.1 KB

123456789101112131415161718192021222324252627
  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. <title>OpenCode</title>
  7. <link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
  8. <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
  9. <link rel="shortcut icon" href="/favicon.ico" />
  10. <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
  11. <link rel="manifest" href="/site.webmanifest" />
  12. <meta name="theme-color" content="#000000" />
  13. <meta property="og:image" content="/social-share.png" />
  14. <meta property="twitter:image" content="/social-share.png" />
  15. </head>
  16. <body class="antialiased overscroll-none select-none text-12-regular">
  17. <script>
  18. ;(function () {
  19. const savedTheme = localStorage.getItem("theme") || "oc-1"
  20. document.documentElement.setAttribute("data-theme", savedTheme)
  21. })()
  22. </script>
  23. <noscript>You need to enable JavaScript to run this app.</noscript>
  24. <div id="root"></div>
  25. <script src="/src/index.tsx" type="module"></script>
  26. </body>
  27. </html>