feat: add new song library files and supporting application configuration

This commit is contained in:
joel
2026-08-12 07:08:26 +02:00
commit 467287c6d7
360 changed files with 158123 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<!-- index.html -->
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>SongBeamer Auswahl</title>
<style>
body { background: #0b0d10; color: #e8edf2; font-family: system-ui; display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; }
.choices { display: flex; gap: 2rem; }
a { padding: 1rem 2rem; background: #14181d; border: 1px solid #26303a; border-radius: 0.5rem; color: #e8edf2; text-decoration: none; font-size: 1.2rem; }
a:hover { background: #18212b; }
</style>
</head>
<body>
<div class="choices">
<a href="control.php" target="_blank">Control</a>
<a href="beamer.php" target="_blank">Beamer</a>
</div>
</body>
</html>