32 lines
769 B
HTML
32 lines
769 B
HTML
<!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> |