-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 1.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/webp" href="/Logo-Meet.webp" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Alexander Avendaño">
<meta name="keywords" content="React, Vite, Tailwindcss, React Router Dom">
<meta name="theme-color" content="#0369a1">
<title>Meet Workspaces</title>
<link rel="manifest" href="/manifest.json">
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/serviceWorkerRegister.js')
.then(registration => console.log('Service worker registered'))
.catch(error => console.error('Error registering service worker', error));
});
}
</script>
</head>
<body class="bg-cyan-50 font-Raleway selection:bg-cyan-700 selection:text-sky-50">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>