68 lines
1.6 KiB
HTML
68 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html lang="it">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>NetGescon</title>
|
|
<style>
|
|
body {
|
|
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, sans-serif;
|
|
margin: 0;
|
|
background: #f6f7fb;
|
|
color: #1d2433;
|
|
}
|
|
|
|
.container {
|
|
max-width: 900px;
|
|
margin: 72px auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.card {
|
|
background: #ffffff;
|
|
border-radius: 14px;
|
|
padding: 32px;
|
|
box-shadow: 0 8px 24px rgba(20, 31, 56, 0.08);
|
|
}
|
|
|
|
h1 {
|
|
margin: 0 0 12px;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
p {
|
|
line-height: 1.6;
|
|
margin: 0 0 14px;
|
|
}
|
|
|
|
.links a {
|
|
display: inline-block;
|
|
margin-right: 16px;
|
|
margin-top: 8px;
|
|
color: #0c66ff;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.links a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="card">
|
|
<h1>NetGescon</h1>
|
|
<p>Piattaforma per la gestione condominiale.</p>
|
|
<p>Questo è il sito di presentazione. Per l'accesso applicativo usa i link qui sotto.</p>
|
|
<div class="links">
|
|
<a href="https://app.netgescon.it">Accedi alla produzione</a>
|
|
<a href="https://demo.netgescon.it">Accedi alla demo</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |