-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 1.01 KB
/
Copy pathindex.html
File metadata and controls
24 lines (22 loc) · 1.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WhoRang - AI-Powered Doorbell Intelligence</title>
<!-- Runtime configuration will be injected here by docker-entrypoint.sh -->
<script src="/runtime-config.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- Buy Me A Coffee Widget - Only load on desktop -->
<script>
// Only load BMC widget on desktop/tablet (not mobile)
if (window.innerWidth > 768) {
document.write('<script data-name="BMC-Widget" data-cfasync="false" src="https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js" data-id="koen1203" data-description="Support me on Buy me a coffee!" data-message="" data-color="#5F7FFF" data-position="Right" data-x_margin="18" data-y_margin="18"><\/script>');
}
</script>
</body>
</html>