23 lines
725 B
HTML
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>
|