-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (65 loc) · 2.97 KB
/
Copy pathindex.html
File metadata and controls
74 lines (65 loc) · 2.97 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EiChefe Garçom - Documentação Legal</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc;
color: #1e293b;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.card-link {
transition: all 0.2s ease;
border: 1px solid #e2e8f0;
}
.card-link:hover {
border-color: #3b82f6;
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="antialiased">
<main class="flex-grow flex items-center justify-center px-4 py-12">
<div class="max-w-2xl w-full">
<div class="text-center mb-12">
<h1 class="text-4xl font-extrabold text-slate-900 mb-4">EiChefe Garçom</h1>
<p class="text-slate-600 text-lg">Central de Documentação e Termos Legais</p>
<div class="h-1 w-20 bg-blue-600 mx-auto mt-4 rounded-full"></div>
</div>
<div class="grid gap-6">
<!-- Link para EULA -->
<a href="eula.html" class="card-link bg-white p-8 rounded-xl block">
<h2 class="text-xl font-bold text-slate-800 mb-2">Contrato de Licença (EULA)</h2>
<p class="text-slate-500 text-sm">Consulte os termos de uso, licença de software e responsabilidades da Like Sistemas.</p>
<div class="mt-4 text-blue-600 font-semibold text-sm uppercase tracking-wider">Acessar Documento →</div>
</a>
<!-- Link para Política de Privacidade -->
<a href="privacyPolicy.html" class="card-link bg-white p-8 rounded-xl block">
<h2 class="text-xl font-bold text-slate-800 mb-2">Política de Privacidade</h2>
<p class="text-slate-500 text-sm">Saiba como seus dados são coletados, tratados e protegidos em nossa integração com a Clover.</p>
<div class="mt-4 text-blue-600 font-semibold text-sm uppercase tracking-wider">Acessar Documento →</div>
</a>
</div>
<div class="mt-12 text-center">
<p class="text-slate-400 text-xs">
Like Sistemas - Campo Mourão, PR<br>
Suporte: suporte@eichefe.com.br
</p>
</div>
</div>
</main>
<footer class="py-6 border-t border-slate-200 bg-white">
<div class="text-center text-slate-500 text-xs">
© 2026 EiChefe Garçom. Todos os direitos reservados.
</div>
</footer>
</body>
</html>