#pragma once
#include
// Embedded HTML page for web remote control
// Split into parts to avoid MSVC string literal limit (16KB)
inline std::string GetWebPageHTML() {
std::string html;
// Part 1: Head and base styles
html += R"HTML(
SimpleRemoter
)HTML";
// Part 6: HTML body
html += R"HTML(
SimpleRemoter
Connecting...
Devices 0
Total: 0
Showing: 0
Connecting...
100%
)HTML";
// Part 7: JavaScript - State and WebSocket
html += R"HTML(
)HTML";
return html;
}