Spaces:
Sleeping
Sleeping
File size: 1,465 Bytes
2756bc1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SoftEdge Corporation - Test</title>
<style>
body {
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #0f172a, #1e293b);
color: white;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
text-align: center;
max-width: 600px;
padding: 2rem;
}
.logo {
font-size: 3rem;
margin-bottom: 1rem;
}
.status {
background: rgba(34, 197, 94, 0.1);
border: 1px solid #22c55e;
border-radius: 0.5rem;
padding: 1rem;
margin: 1rem 0;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">🚀</div>
<h1>SoftEdge Corporation</h1>
<p>Website em funcionamento!</p>
<div class="status">
<strong>✅ Status: Online</strong><br>
<small>Deployed successfully on Hugging Face Spaces</small>
</div>
<p>Se você está vendo esta página, o deployment está funcionando corretamente.</p>
</div>
</body>
</html>
|