-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.html
More file actions
49 lines (45 loc) · 2.32 KB
/
Copy pathlanding.html
File metadata and controls
49 lines (45 loc) · 2.32 KB
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
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Superpowers Management SaaS</title>
</head>
<body style="background-color:#0a0a0f; color:#fff; font-family:Arial, sans-serif; margin:0; padding:0;">
<!-- Hero Section -->
<section style="text-align:center; padding:60px 20px;">
<h1 style="font-size:2.5em; margin:0;">Superpowers Management SaaS</h1>
<p style="font-size:1.2em; color:#6366f1;">Baseado em obra/superpowers</p>
<p>Integre as funcionalidades de diversos projetos com agilidade e eficiência.</p>
</section>
<!-- Features Section -->
<section style="text-align:center; padding:40px 20px; background-color:#1a1a1f;">
<h2 style="color:#6366f1;">Funcionalidades</h2>
<div style="display:flex; justify-content:center; flex-wrap:wrap; max-width:800px; margin:20px auto;">
<div style="flex:1; min-width:200px; padding:20px;">
<h3>Integração Total</h3>
<p>Nossa ferramenta conecta várias plataformas para um fluxo de trabalho unificado.</p>
</div>
<div style="flex:1; min-width:200px; padding:20px;">
<h3>Escalabilidade Dinâmica</h3>
<p>Expanda suas operações facilmente sem comprometer a qualidade.</p>
</div>
<div style="flex:1; min-width:200px; padding:20px;">
<h3>Segurança Confiável</h3>
<p>Proteja seus dados com nossa arquitetura de segurança de ponta.</p>
</div>
</div>
</section>
<!-- CTA Section -->
<section style="text-align:center; padding:40px 20px;">
<h2 style="color:#6366f1;">Entre em Contato</h2>
<p>Mantenha-se atualizado sobre nossas últimas novidades em Superpowers Management SaaS.</p>
<form style="margin:20px 0;">
<input type="email" placeholder="Digite seu email" style="padding:10px; width:90%; max-width:400px; border:1px solid #6366f1; border-radius:5px; background-color:transparent; color:#fff;">
<button type="submit" style="padding:10px 20px; margin-top:10px; background-color:#6366f1; border:none; border-radius:5px; color:#fff; cursor:pointer;">Inscreva-se</button>
</form>
</section>
</body>
</html>
```