-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.html
More file actions
39 lines (39 loc) · 2 KB
/
Copy pathlanding.html
File metadata and controls
39 lines (39 loc) · 2 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
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plataforma de Fluxo para Integração de Dados</title>
</head>
<body style="margin:0;padding:0;font-family:Arial, sans-serif;background-color:#0a0a0f;color:#ffffff;">
<header style="padding:40px;text-align:center;">
<h1 style="font-size:3em;color:#6366f1;">Plataforma de Fluxo</h1>
<p style="font-size:1.2em;">Integração de Dados para Empresas de Tecnologia</p>
<p style="font-style:italic;">Baseado em bytedance/deer-flow</p>
</header>
<main>
<section style="padding:20px;text-align:center;">
<h2 style="color:#6366f1;">Características</h2>
<ul style="list-style:none;padding:0;">
<li style="padding:10px;font-size:1.1em;">🔗 Integração fácil com múltiplas fontes de dados</li>
<li style="padding:10px;font-size:1.1em;">⚡ Processamento em tempo real e eficiente</li>
<li style="padding:10px;font-size:1.1em;">🔒 Segurança e conformidade líderes de mercado</li>
</ul>
</section>
<section style="padding:40px;text-align:center;background-color:#1a1a20;">
<h2 style="color:#6366f1;">Pronto para começar?</h2>
<p style="margin-bottom:20px;">Insira seu email abaixo para iniciar a integração</p>
<form>
<input type="email" placeholder="Seu email" required style="padding:10px;border:none;border-radius:3px;margin-bottom:10px;width:80%;max-width:400px;">
<br>
<button type="submit" style="padding:10px 20px;background-color:#6366f1;border:none;border-radius:3px;color:#ffffff;cursor:pointer;">Comece agora</button>
</form>
</section>
</main>
<footer style="padding:20px;text-align:center;font-size:0.9em;color:#555;">
© 2023 Plataforma de Fluxo. Todos os direitos reservados.
</footer>
</body>
</html>
```