-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (66 loc) · 3.08 KB
/
Copy pathindex.html
File metadata and controls
81 lines (66 loc) · 3.08 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Planeta Power - Power Platform</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- HERO -->
<header class="bg-indigo-600 text-white py-20">
<div class="max-w-5xl mx-auto text-center px-4">
<h1 class="text-4xl font-bold mb-4">Planeta Power</h1>
<p class="text-xl">Power Platform • Power Apps • Power Automate • Power BI • Dataverse</p>
</div>
</header>
<!-- Serviços -->
<section class="py-20 max-w-6xl mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-indigo-700">Serviços</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="bg-white p-6 rounded-xl shadow">
<h3 class="text-xl font-semibold text-indigo-600 mb-3">Power Apps</h3>
<p>Aplicativos personalizados, formulários corporativos, workflows e automações conectadas a sistemas internos.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow">
<h3 class="text-xl font-semibold text-indigo-600 mb-3">Power BI</h3>
<p>Dashboards avançados, métricas de negócio, governança de dados e KPIs estratégicos.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow">
<h3 class="text-xl font-semibold text-indigo-600 mb-3">Power Automate</h3>
<p>Automação inteligente de processos, integrações com sistemas externos e redução de tarefas manuais.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow">
<h3 class="text-xl font-semibold text-indigo-600 mb-3">Dataverse</h3>
<p>Modelagem de dados corporativa, tabelas, relacionamentos, regras de negócio e segurança.</p>
</div>
</div>
</section>
<!-- Conteúdos -->
<section class="py-20 bg-white border-t">
<div class="max-w-5xl mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-indigo-700 mb-12">Conteúdos e Especialidades</h2>
<ul class="space-y-4 text-lg">
<li>✔ Desenvolvimento de soluções completas em Power Platform</li>
<li>✔ Integrações entre Power Apps, Automate e Dataverse</li>
<li>✔ Criação de dashboards avançados em Power BI</li>
<li>✔ Automação de processos corporativos</li>
<li>✔ Consultoria técnica e governança</li>
<li>✔ Estruturação de dados para analytics</li>
</ul>
</div>
</section>
<!-- CTA -->
<section class="py-16 bg-indigo-600 text-white text-center">
<h2 class="text-3xl font-bold mb-4">Precisa de uma solução em Power Platform?</h2>
<p class="mb-6 text-lg">Entre em contato e vamos construir juntos.</p>
<a href="contato.html" class="bg-white text-indigo-700 px-6 py-3 font-semibold rounded-lg shadow hover:bg-gray-200">
Fale Conosco
</a>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-300 py-8 text-center">
<p>© 2025 Planeta Power — Soluções em Power Platform</p>
</footer>
</body>
</html>