24 lines
947 B
HTML
24 lines
947 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Welcome to ESP8266 DCC Command Station</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; background: #f4f4f4; color: #333; margin: 0; padding: 0; }
|
|
.container { max-width: 600px; margin: 40px auto; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); padding: 32px; }
|
|
h1 { color: #0077cc; }
|
|
p { font-size: 1.2em; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>ESP8266 DCC Command Station</h1>
|
|
<p>This is your ESP8266 DCC Command Station.</p>
|
|
<p>Configure WiFi, manage XpressNet, and control your layout from here.</p>
|
|
<p>For documentation, see <a href="/xpressnet.html
|
|
">XpressNet Commands</a> and <a href="/README.md">Hardware Setup</a>.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|