2021-03-18 19:18:24 +01:00
|
|
|
<!--
|
|
|
|
~ * Copyright (c) 2021 Shabinder Singh
|
|
|
|
~ * This program is free software: you can redistribute it and/or modify
|
|
|
|
~ * it under the terms of the GNU General Public License as published by
|
|
|
|
~ * the Free Software Foundation, either version 3 of the License, or
|
|
|
|
~ * (at your option) any later version.
|
|
|
|
~ *
|
|
|
|
~ * This program is distributed in the hope that it will be useful,
|
|
|
|
~ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
~ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
~ * GNU General Public License for more details.
|
|
|
|
~ *
|
|
|
|
~ * You should have received a copy of the GNU General Public License
|
|
|
|
~ * along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
2021-03-16 13:06:56 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" class="has-navbar-fixed-top">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>SpotiFlyer</title>
|
|
|
|
<script src="web-app.js"></script>
|
|
|
|
<link rel="icon" href="spotiflyer.svg" type="image/icon type">
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
<link href="css-circular-prog-bar.css" rel="stylesheet">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=RocknRoll+One&display=swap" rel="stylesheet">
|
2021-03-16 15:11:54 +01:00
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PGSYNZHSS7"></script>
|
|
|
|
<script>
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag(){dataLayer.push(arguments);}
|
|
|
|
gtag('js', new Date());
|
|
|
|
|
|
|
|
gtag('config', 'G-PGSYNZHSS7');
|
|
|
|
</script>
|
2021-03-16 13:06:56 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div style="display: flex;flex-direction: column; height: inherit; color: white;" id="root"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|