Files
custom-streamdeck/overlay/index.html
space b8a6fdfcc2
Some checks failed
Overlay Installer / build-overlay (push) Has been cancelled
V2
2026-05-11 21:24:15 +02:00

23 lines
725 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; connect-src ws://127.0.0.1:8000; script-src 'self'; style-src 'self';"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Custom Streamdeck Overlay</title>
<link rel="stylesheet" href="./dist/styles.css" />
</head>
<body>
<main id="overlay" class="overlay hidden" aria-live="polite">
<section class="panel">
<h1 id="profile-name">Profile</h1>
<div id="button-strip" class="button-strip"></div>
</section>
</main>
<script src="./dist/renderer.js"></script>
</body>
</html>