index.html 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <meta name="description" content="CoreUI for React - Open Source Bootstrap Admin Template">
  8. <meta name="author" content="Łukasz Holeczek">
  9. <meta name="keyword" content="Bootstrap,Admin,Template,Open,Source,CSS,SCSS,HTML,RWD,Dashboard,React">
  10. <title>CoreUI for React</title>
  11. <!--
  12. manifest.json provides metadata used when your web app is added to the
  13. homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
  14. -->
  15. <link rel="manifest" href="%PUBLIC_URL%/manifest.json">
  16. <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
  17. <!--
  18. Notice the use of %PUBLIC_URL% in the tags above.
  19. It will be replaced with the URL of the `public` folder during the build.
  20. Only files inside the `public` folder can be referenced from the HTML.
  21. Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
  22. work correctly both with client-side routing and a non-root public URL.
  23. Learn how to configure a non-root public URL by running `npm run build`.
  24. -->
  25. <!-- Global site tag (gtag.js) - Google Analytics -->
  26. <script async src="https://www.googletagmanager.com/gtag/js?id=UA-118965717-3"></script>
  27. <script>
  28. window.dataLayer = window.dataLayer || [];
  29. function gtag(){dataLayer.push(arguments);}
  30. gtag('js', new Date());
  31. // Shared ID
  32. gtag('config', 'UA-118965717-3');
  33. // React.js ID
  34. gtag('config', 'UA-118965717-6');
  35. </script>
  36. </head>
  37. <!-- BODY options, add following classes to body to change options
  38. // Header options
  39. 1. '.header-fixed' - Fixed Header
  40. // Brand options
  41. 1. '.brand-minimized' - Minimized brand (Only symbol)
  42. // Sidebar options
  43. 1. '.sidebar-fixed' - Fixed Sidebar
  44. 2. '.sidebar-hidden' - Hidden Sidebar
  45. 3. '.sidebar-off-canvas' - Off Canvas Sidebar
  46. 4. '.sidebar-minimized' - Minimized Sidebar (Only icons)
  47. 5. '.sidebar-compact' - Compact Sidebar
  48. // Aside options
  49. 1. '.aside-menu-fixed' - Fixed Aside Menu
  50. 2. '.aside-menu-hidden' - Hidden Aside Menu
  51. 3. '.aside-menu-off-canvas' - Off Canvas Aside Menu
  52. // Breadcrumb options
  53. 1. '.breadcrumb-fixed' - Fixed Breadcrumb
  54. // Footer options
  55. 1. '.footer-fixed' - Fixed footer
  56. -->
  57. <body>
  58. <noscript>
  59. You need to enable JavaScript to run this app.
  60. </noscript>
  61. <div id="root"></div>
  62. <!--
  63. This HTML file is a template.
  64. If you open it directly in the browser, you will see an empty page.
  65. You can add webfonts, meta tags, or analytics to this file.
  66. The build step will place the bundled scripts into the <body> tag.
  67. To begin the development, run `npm start` or `yarn start`.
  68. To create a production bundle, use `npm run build` or `yarn build`.
  69. -->
  70. <script src="http://d3js.org/d3.v5.min.js" charset="utf-8"></script>
  71. <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAWtwvYDkFXjhl0PCxBlAQQ004cPqROjMw" async defer></script>
  72. </body>
  73. </html>