|
|
<!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>
|
|
|
|