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, shrink-to-fit=no" />
6    <meta name="theme-color" content="#000000" />
7    <!--
8      manifest.json provides metadata used when your web app is added to the
9      homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
10    -->
11    <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
12    <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
13    <title></title>
14
15    <!-- iOS icons -->
16    <link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/apple-touch-icon.png" />
17    <link rel="apple-touch-startup-image" href="%PUBLIC_URL%/apple-touch-icon.png" />
18    <link rel="mask-icon" href="" color="" />
19
20    <!-- iOS Settings -->
21    <meta name="apple-mobile-web-app-capable" content="yes" />
22    <!-- default, black, black-translucent -->
23    <meta name="apple-mobile-web-app-status-bar-style" content="default" />
24    <meta name="apple-mobile-web-app-title" content="Expo App" />
25    <meta name="application-name" content="Expo App" />
26
27    <!-- Windows -->
28    <meta name="msapplication-navbutton-color" content="" />
29    <meta name="msapplication-TileColor" content="" />
30    <meta name="msapplication-TileImage" content="" />
31
32    <!-- Google Maps API -->
33    <!-- <script
34      async
35      defer
36      src="https://maps.googleapis.com/maps/api/js?key=API_KEY"
37      type="text/javascript"
38    ></script> -->
39
40    <style>
41      html {
42        height: 100%;
43        display: flex;
44      }
45      body,
46      #main {
47        display: flex;
48        flex: 1;
49        flex-direction: column;
50      }
51    </style>
52  </head>
53
54  <body>
55    <noscript>You need to enable JavaScript to run this app.</noscript>
56    <div id="main"></div>
57  </body>
58</html>
59