aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2025-03-03 18:54:35 +0100
committerAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2025-03-03 18:54:35 +0100
commit3aa6eee0f54dec3e4f92be2ad335a04145ac4db8 (patch)
tree9ccffabd2972249322ebaa6d1de26289d7a41a4c /index.html
parentd3726e50167ed07c483c542cf6739f103dda0dd5 (diff)
Improve the UI
Diffstat (limited to 'index.html')
-rw-r--r--index.html47
1 files changed, 33 insertions, 14 deletions
diff --git a/index.html b/index.html
index daca0a0..c5fc4d7 100644
--- a/index.html
+++ b/index.html
@@ -1,18 +1,37 @@
<!doctype html>
<html lang="en">
- <head>
- <meta charset="UTF-8" />
- <link rel="icon" href="/favicon.ico" />
- <link rel="icon" type="image/jpg" href="/logo-512.jpg" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <link rel="manifest" href="/manifest.webmanifest" />
- <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
+<head>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <meta charset="UTF-8" />
- <title>UrbanoVigo Web</title>
- </head>
- <body>
- <div id="root"></div>
- <script type="module" src="/src/main.tsx"></script>
- </body>
-</html>
+ <title>UrbanoVigo Web</title>
+
+ <link rel="icon" href="/favicon.ico" />
+ <link rel="icon" type="image/jpg" href="/logo-512.jpg" />
+ <link rel="apple-touch-icon" href="/logo-512.jpg" sizes="512x512" />
+ <meta name="theme-color" content="#000000" />
+
+ <link rel="manifest" href="/manifest.webmanifest" />
+
+ <style>
+ body {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+ </style>
+</head>
+
+<body>
+ <div id="root"></div>
+ <script type="module" src="/src/main.tsx"></script>
+
+ <script>
+ if ('serviceWorker' in navigator) {
+ navigator.serviceWorker.register('/sw.js');
+ }
+ </script>
+</body>
+
+</html> \ No newline at end of file