-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (67 loc) · 3.45 KB
/
index.html
File metadata and controls
72 lines (67 loc) · 3.45 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inverbello Crediya LTDA</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
</head>
<body class="bg-gray-50">
<nav class="bg-blue-600 p-4">
<div class="container mx-auto flex justify-between items-center">
<div class="text-white text-2xl font-bold">Inverbello Crediya</div>
<div class="hidden md:flex space-x-4">
<a href="#" class="text-white hover:text-blue-200">Inicio</a>
<a href="#" class="text-white hover:text-blue-200">Nosotros</a>
<a href="#" class="text-white hover:text-blue-200">Contacto</a>
</div>
</div>
</nav>
<header class="bg-blue-700 text-white py-20">
<div class="container mx-auto text-center px-4">
<h1 class="text-4xl md:text-6xl font-bold mb-4">Soluciones Financieras a tu Alcance</h1>
<p class="text-xl md:text-2xl text-blue-100">Tu mejor aliado en créditos y financiamiento</p>
</div>
</header>
<main class="container mx-auto py-16 px-4">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Simulador de Crédito -->
<a href="/simulador" class="transform hover:scale-105 transition-transform duration-300">
<div class="bg-white rounded-lg shadow-lg p-8 text-center h-full">
<div class="text-blue-600 text-5xl mb-4">
<i class="fas fa-calculator"></i>
</div>
<h2 class="text-2xl font-bold text-gray-800 mb-4">Simulador de Crédito</h2>
<p class="text-gray-600">Calcula las cuotas y plazos de tu crédito de manera fácil y rápida</p>
</div>
</a>
<!-- Calcular Cupo -->
<a href="/cupo" class="transform hover:scale-105 transition-transform duration-300">
<div class="bg-white rounded-lg shadow-lg p-8 text-center h-full">
<div class="text-blue-600 text-5xl mb-4">
<i class="fas fa-coins"></i>
</div>
<h2 class="text-2xl font-bold text-gray-800 mb-4">Calcular Cupo</h2>
<p class="text-gray-600">Descubre el monto máximo al que puedes acceder según tu perfil</p>
</div>
</a>
<!-- Estudio de Crédito -->
<a href="/estudio" class="transform hover:scale-105 transition-transform duration-300">
<div class="bg-white rounded-lg shadow-lg p-8 text-center h-full">
<div class="text-blue-600 text-5xl mb-4">
<i class="fas fa-file-signature"></i>
</div>
<h2 class="text-2xl font-bold text-gray-800 mb-4">Estudio de Crédito</h2>
<p class="text-gray-600">Inicia tu proceso de aprobación con un estudio personalizado</p>
</div>
</a>
</div>
</main>
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto px-4 text-center">
<p>© 2025 Inverbello Crediya LTDA. Todos los derechos reservados.</p>
</div>
</footer>
</body>
</html>