-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (63 loc) · 3.7 KB
/
Copy pathindex.html
File metadata and controls
71 lines (63 loc) · 3.7 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nexus Sistemas | Links</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="icon" href="img/nexus_favicon.ico" type="image/x-icon">
<style>
body {
font-family: 'Inter', sans-serif;
}
.gradient-bg {
background-color: #111827;
background-image: radial-gradient(circle at 1px 1px, #374151 1px, transparent 0);
background-size: 2rem 2rem;
}
</style>
</head>
<body class="gradient-bg text-white antialiased">
<div class="min-h-screen flex flex-col items-center justify-center p-4">
<div class="w-full max-w-md mx-auto text-center">
<header class="mb-8">
<img
src="img/nexus_banner_alt.png"
alt="Logo da Nexus Sistemas"
class="w-32 h-32 rounded-full mx-auto mb-4 border-4 border-gray-700 shadow-lg"
onerror="this.onerror=null;this.src='https://placehold.co/128x128/4338CA/FFFFFF?text=N&font=inter';">
<h1 class="text-3xl font-bold text-gray-100">Nexus Sistemas</h1>
<p class="text-md text-gray-400 mt-2">🚀 Software que impulsiona o seu negócio.</p>
</header>
<main class="w-full space-y-4">
<a href="https://nexus-sistemas.github.io/Portfolio-Nexus/inicio" target="_blank" rel="noopener noreferrer"
class="group flex items-center justify-center w-full bg-indigo-600 hover:bg-indigo-700 text-white font-semibold py-3 px-4 rounded-lg shadow-md transition-all duration-300 transform hover:scale-105">
<img src="img/nexus_favicon.ico" alt="Ícone de globo" class="w-6 h-6 mr-3">
<span>Site Nexus</span>
</a>
<a href="https://wa.me/5513991838939?text=Ol%C3%A1!%20Gostaria%20de%20um%20or%C3%A7amento%20para%20um%20projeto." target="_blank" rel="noopener noreferrer"
class="group flex items-center justify-center w-full bg-gray-800 hover:bg-gray-700 text-white font-semibold py-3 px-4 rounded-lg shadow-md transition-all duration-300 transform hover:scale-105">
<img src="https://www.svgrepo.com/show/452133/whatsapp.svg" alt="Ícone do WhatsApp" class="w-6 h-6 mr-3">
<span>WhatsApp</span>
</a>
<a href="https://www.instagram.com/nexus.sistemas.ofc/" target="_blank" rel="noopener noreferrer"
class="group flex items-center justify-center w-full bg-gray-800 hover:bg-gray-700 text-white font-semibold py-3 px-4 rounded-lg shadow-md transition-all duration-300 transform hover:scale-105">
<img src="https://www.svgrepo.com/show/452229/instagram-1.svg" alt="Ícone do Instagram" class="w-6 h-6 mr-3">
<span>Instagram</span>
</a>
<a href="https://www.tiktok.com/@nexus.sistemas.ofc" target="_blank" rel="noopener noreferrer"
class="group flex items-center justify-center w-full bg-gray-800 hover:bg-gray-700 text-white font-semibold py-3 px-4 rounded-lg shadow-md transition-all duration-300 transform hover:scale-105">
<img src="img/tiktok.svg" alt="Ícone do TikTok" class="w-6 h-6 mr-3">
<span>TikTok</span>
</a>
</main>
<footer class="mt-12 text-sm text-gray-500">
<p>© 2025 Nexus Sistemas. Todos os direitos reservados.</p>
</footer>
</div>
</div>
</body>
</html>