1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 04:54:18 +00:00
pds-2021-g2-nest/public/index.html

54 lines
2.3 KiB
HTML
Raw Normal View History

2021-04-20 22:07:39 +00:00
<!DOCTYPE html>
<html lang="en">
2021-04-20 22:09:13 +00:00
<head>
<meta charset="utf-8"/>
<link href="%PUBLIC_URL%/favicon.ico" rel="icon"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
2021-04-27 13:27:17 +00:00
<meta content="#34607A" name="theme-color"/>
2021-04-20 22:09:13 +00:00
<meta
2021-04-27 13:27:17 +00:00
content="Tweet analyzer frontend"
2021-04-20 22:09:13 +00:00
name="description"
/>
<link href="%PUBLIC_URL%/logo192.png" rel="apple-touch-icon"/>
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link href="%PUBLIC_URL%/manifest.json" rel="manifest"/>
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
2021-04-20 22:07:39 +00:00
2021-04-20 22:09:13 +00:00
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
2021-05-13 15:05:33 +00:00
<link
crossorigin="" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
2021-04-30 20:10:00 +00:00
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
2021-05-13 15:05:33 +00:00
rel="stylesheet"
/>
<script
crossorigin=""
2021-04-30 20:10:00 +00:00
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
2021-05-13 15:05:33 +00:00
src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
></script>
2021-04-27 13:27:17 +00:00
<title>N.E.S.T.</title>
2021-04-20 22:09:13 +00:00
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
2021-04-20 22:07:39 +00:00
2021-04-20 22:09:13 +00:00
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
2021-04-20 22:07:39 +00:00
2021-04-20 22:09:13 +00:00
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
2021-04-20 22:07:39 +00:00
</html>