index.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Excalidraw | Hand-drawn look & feel • Collaborative • Secure</title>
  6. <meta
  7. name="viewport"
  8. content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover, shrink-to-fit=no"
  9. />
  10. <meta name="referrer" content="origin" />
  11. <meta name="mobile-web-app-capable" content="yes" />
  12. <meta name="theme-color" content="#000" />
  13. <!-- General tags -->
  14. <meta
  15. name="description"
  16. content="Excalidraw is a virtual collaborative whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  17. />
  18. <meta name="image" content="og-image.png" />
  19. <!-- OpenGraph tags -->
  20. <meta property="og:url" content="https://excalidraw.com" />
  21. <meta property="og:site_name" content="Excalidraw" />
  22. <meta property="og:type" content="website" />
  23. <meta property="og:title" content="Excalidraw" />
  24. <meta
  25. property="og:description"
  26. content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  27. />
  28. <!-- OG tags require an absolute url for images -->
  29. <meta
  30. property="og:image"
  31. name="twitter:image"
  32. content="https://excalidraw.com/og-image.png"
  33. />
  34. <meta
  35. property="og:image:secure_url"
  36. name="twitter:image"
  37. content="https://excalidraw.com/og-image.png"
  38. />
  39. <meta property="og:image:width" content="1280" />
  40. <meta property="og:image:height" content="669" />
  41. <meta property="og:image:alt" content="Excalidraw logo with byline." />
  42. <!-- Twitter Card tags -->
  43. <meta name="twitter:card" content="summary_large_image" />
  44. <meta name="twitter:title" content="Excalidraw" />
  45. <meta
  46. name="twitter:description"
  47. content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  48. />
  49. <!-- OG tags require absolute url for images -->
  50. <meta name="twitter:image" content="https://excalidraw.com/og-image.png" />
  51. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
  52. <link
  53. rel="preload"
  54. href="FG_Virgil.woff2"
  55. as="font"
  56. type="font/woff2"
  57. crossorigin="anonymous"
  58. />
  59. <link
  60. rel="preload"
  61. href="Cascadia.woff2"
  62. as="font"
  63. type="font/woff2"
  64. crossorigin="anonymous"
  65. />
  66. <link
  67. href="%REACT_APP_SOCKET_SERVER_URL%/socket.io"
  68. rel="preconnect"
  69. crossorigin="anonymous"
  70. />
  71. <link
  72. rel="manifest"
  73. href="manifest.json"
  74. style="--pwacompat-splash-font: 24px Virgil"
  75. />
  76. <link rel="stylesheet" href="fonts.css" type="text/css" />
  77. <% if (process.env.REACT_APP_INCLUDE_GTAG === 'true') { %>
  78. <script
  79. async
  80. src="https://www.googletagmanager.com/gtag/js?id=UA-387204-13"
  81. ></script>
  82. <script>
  83. window.dataLayer = window.dataLayer || [];
  84. function gtag() {
  85. dataLayer.push(arguments);
  86. }
  87. gtag("js", new Date());
  88. gtag("config", "UA-387204-13");
  89. </script>
  90. <% } %>
  91. <!-- FIXME: remove this when we update CRA (fix SW caching) -->
  92. <style>
  93. body {
  94. margin: 0;
  95. --ui-font: system-ui, BlinkMacSystemFont, -apple-system, Segoe UI,
  96. Roboto, Helvetica, Arial, sans-serif;
  97. font-family: var(--ui-font);
  98. -webkit-text-size-adjust: 100%;
  99. user-select: none;
  100. width: 100vw;
  101. height: 100vh;
  102. }
  103. .visually-hidden {
  104. position: absolute !important;
  105. height: 1px;
  106. width: 1px;
  107. overflow: hidden;
  108. clip: rect(1px, 1px, 1px, 1px);
  109. white-space: nowrap; /* added line */
  110. }
  111. .LoadingMessage {
  112. position: absolute;
  113. top: 0;
  114. right: 0;
  115. bottom: 0;
  116. left: 0;
  117. z-index: 999;
  118. display: flex;
  119. align-items: center;
  120. justify-content: center;
  121. pointer-events: none;
  122. }
  123. .LoadingMessage span {
  124. background-color: var(--button-gray-1);
  125. border-radius: 5px;
  126. padding: 0.8em 1.2em;
  127. color: var(--popup-text-color);
  128. font-size: 1.3em;
  129. }
  130. </style>
  131. </head>
  132. <body>
  133. <noscript> You need to enable JavaScript to run this app. </noscript>
  134. <header>
  135. <h1 class="visually-hidden">Excalidraw</h1>
  136. </header>
  137. <div id="root">
  138. <div class="LoadingMessage">
  139. <span>Loading scene...</span>
  140. </div>
  141. </div>
  142. </body>
  143. </html>