-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 1.06 KB
/
Copy pathindex.html
File metadata and controls
26 lines (26 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Project Hub</title>
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#111827" />
<meta property="og:image" content="https://bolt.new/static/og_default.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://bolt.new/static/og_default.png">
</head>
<body class="bg-gray-900 selection:bg-pink-500 selection:text-primary">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js')
.then(reg => console.log('Service Worker registered successfully!', reg))
.catch(err => console.log('Service Worker registration failed: ', err));
});
}
</script>
</body>
</html>