index.html 928 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Atendechat</title>
  5. <link
  6. rel="stylesheet"
  7. href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
  8. />
  9. <link rel="apple-touch-icon" href="%PUBLIC_URL%/apple-touch-icon.png" />
  10. <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
  11. <link rel=”shortcut icon” href=”%PUBLIC_URL%/favicon.ico”>
  12. <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
  13. <meta name="theme-color" content="#000000" />
  14. <meta
  15. name="viewport"
  16. content="minimum-scale=1, initial-scale=1, width=device-width"
  17. />
  18. <!-- Issue workaround for React v16. -->
  19. <script>
  20. // See https://github.com/facebook/react/issues/20829#issuecomment-802088260
  21. if (!crossOriginIsolated) SharedArrayBuffer = ArrayBuffer;
  22. </script>
  23. </head>
  24. <body>
  25. <noscript>You need to enable JavaScript to run this app.</noscript>
  26. <div id="root"></div>
  27. </body>
  28. </html>