Add index.html with Hello World — closes #1

This commit is contained in:
OpenClaw 2026-03-13 09:42:02 +00:00
commit 81f01bd0b7

17
index.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World</title>
<style>
body { margin: 0; background: #0d0d0d; color: #e0e0e0; font-family: 'Segoe UI', system-ui, sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; gap: 0.5rem; }
h1 { font-size: 2.5rem; color: #fff; }
p { color: #555; font-size: 0.9rem; }
</style>
</head>
<body>
<h1>Hello, World! 👋</h1>
<p>pixeldev/test · bl.pixeldev.eu</p>
</body>
</html>