index.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <!doctype html>
  2. <html lang="en" theme="dark">
  3. <head>
  4. <!-- uncomment for react scan -->
  5. <!-- <script
  6. crossOrigin="anonymous"
  7. src="//unpkg.com/react-scan/dist/auto.global.js"
  8. >
  9. </script> -->
  10. <meta charset="UTF-8" />
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  12. <!-- Google Fonts - Oxanium -->
  13. <link rel="preconnect" href="https://fonts.googleapis.com" />
  14. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
  15. <link
  16. href="https://fonts.googleapis.com/css2?family=Oxanium:wght@200;300;400;500;600;700;800&display=swap"
  17. rel="stylesheet"
  18. />
  19. <!-- Favicon -->
  20. <link rel="icon" href="/icon.ico" />
  21. <link rel="apple-touch-icon" href="/icon.png" />
  22. <link rel="manifest" href="/manifest.json" />
  23. <meta name="theme-color" content="#000000" />
  24. <meta name="description" content="Graph based investigation manager." />
  25. <title>Flowsint</title>
  26. </head>
  27. <body>
  28. <div id="root"></div>
  29. <script type="module" src="/src/main.tsx"></script>
  30. </body>
  31. </html>