Update public/index.html

This commit is contained in:
kleap-admin 2026-01-16 10:55:07 +00:00
parent 7f1a63a167
commit 0f00d3f0e2
1 changed files with 32 additions and 0 deletions

32
public/index.html Normal file
View File

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>App</title>
<style>
body {
font-family: system-ui, sans-serif;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.container {
text-align: center;
color: white;
padding: 2rem;
}
h1 { font-size: 3rem; margin-bottom: 1rem; }
p { font-size: 1.2rem; opacity: 0.9; }
</style>
</head>
<body>
<div class="container">
<h1>🚀 Coming Soon</h1>
<p>Your app is being prepared. Please check back in a moment.</p>
</div>
</body>
</html>