Add 2 files
Browse files- index.html +110 -3
- prompts.txt +2 -1
index.html
CHANGED
|
@@ -71,9 +71,61 @@
|
|
| 71 |
font-size: 40px;
|
| 72 |
color: #D4AF37;
|
| 73 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
</style>
|
| 75 |
</head>
|
| 76 |
-
<body class="bg-black text-white min-h-screen flex flex-col overflow-hidden">
|
| 77 |
<!-- Language Selector -->
|
| 78 |
<div class="absolute top-4 right-4 z-50">
|
| 79 |
<div class="relative">
|
|
@@ -160,8 +212,63 @@
|
|
| 160 |
</div>
|
| 161 |
</div>
|
| 162 |
|
| 163 |
-
<!--
|
| 164 |
<div class="menu-item animate-fade-in" style="animation-delay: 0.8s;">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 165 |
<button class="menu-btn w-full bg-black border border-gold-500 text-white py-3 px-6 rounded-lg flex justify-between items-center hover:bg-gray-900 transition-colors">
|
| 166 |
<span data-es="Contacto" data-en="Contact" data-it="Contatto">Contacto</span>
|
| 167 |
<i class="fas fa-chevron-down transition-transform"></i>
|
|
@@ -193,7 +300,7 @@
|
|
| 193 |
</div>
|
| 194 |
|
| 195 |
<!-- Download CV Button -->
|
| 196 |
-
<button id="downloadBtn" class="animate-fade-in animate-pulse-slow bg-gold-600 hover:bg-gold-700 text-black font-bold py-3 px-8 rounded-full flex items-center mt-4 transition-colors" style="animation-delay:
|
| 197 |
<i class="fas fa-download mr-2"></i>
|
| 198 |
<span data-es="Descargar CV" data-en="Download CV" data-it="Scarica CV">Descargar CV</span>
|
| 199 |
</button>
|
|
|
|
| 71 |
font-size: 40px;
|
| 72 |
color: #D4AF37;
|
| 73 |
}
|
| 74 |
+
|
| 75 |
+
/* Background image with overlay */
|
| 76 |
+
body::before {
|
| 77 |
+
content: "";
|
| 78 |
+
position: fixed;
|
| 79 |
+
top: 0;
|
| 80 |
+
left: 0;
|
| 81 |
+
right: 0;
|
| 82 |
+
bottom: 0;
|
| 83 |
+
background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
|
| 84 |
+
background-size: cover;
|
| 85 |
+
background-position: center;
|
| 86 |
+
background-attachment: fixed;
|
| 87 |
+
opacity: 0.15;
|
| 88 |
+
z-index: -1;
|
| 89 |
+
}
|
| 90 |
+
|
| 91 |
+
/* Family section styles */
|
| 92 |
+
.family-section {
|
| 93 |
+
background: rgba(0, 0, 0, 0.7);
|
| 94 |
+
backdrop-filter: blur(5px);
|
| 95 |
+
border: 1px solid rgba(212, 175, 55, 0.3);
|
| 96 |
+
}
|
| 97 |
+
|
| 98 |
+
.family-member {
|
| 99 |
+
transition: transform 0.3s ease;
|
| 100 |
+
}
|
| 101 |
+
|
| 102 |
+
.family-member:hover {
|
| 103 |
+
transform: translateY(-5px);
|
| 104 |
+
}
|
| 105 |
+
|
| 106 |
+
.family-img {
|
| 107 |
+
width: 100px;
|
| 108 |
+
height: 100px;
|
| 109 |
+
object-fit: cover;
|
| 110 |
+
border: 2px solid rgba(212, 175, 55, 0.5);
|
| 111 |
+
}
|
| 112 |
+
|
| 113 |
+
/* Custom scrollbar */
|
| 114 |
+
::-webkit-scrollbar {
|
| 115 |
+
width: 8px;
|
| 116 |
+
}
|
| 117 |
+
|
| 118 |
+
::-webkit-scrollbar-track {
|
| 119 |
+
background: #111;
|
| 120 |
+
}
|
| 121 |
+
|
| 122 |
+
::-webkit-scrollbar-thumb {
|
| 123 |
+
background: #D4AF37;
|
| 124 |
+
border-radius: 4px;
|
| 125 |
+
}
|
| 126 |
</style>
|
| 127 |
</head>
|
| 128 |
+
<body class="bg-black text-white min-h-screen flex flex-col overflow-x-hidden">
|
| 129 |
<!-- Language Selector -->
|
| 130 |
<div class="absolute top-4 right-4 z-50">
|
| 131 |
<div class="relative">
|
|
|
|
| 212 |
</div>
|
| 213 |
</div>
|
| 214 |
|
| 215 |
+
<!-- Family Section -->
|
| 216 |
<div class="menu-item animate-fade-in" style="animation-delay: 0.8s;">
|
| 217 |
+
<button class="menu-btn w-full bg-black border border-gold-500 text-white py-3 px-6 rounded-lg flex justify-between items-center hover:bg-gray-900 transition-colors">
|
| 218 |
+
<span data-es="Mi Familia" data-en="My Family" data-it="La Mia Famiglia">Mi Familia</span>
|
| 219 |
+
<i class="fas fa-chevron-down transition-transform"></i>
|
| 220 |
+
</button>
|
| 221 |
+
<div class="menu-content bg-gray-900 rounded-b-lg overflow-hidden">
|
| 222 |
+
<div class="p-6">
|
| 223 |
+
<p class="text-gray-300 mb-4" data-es="Lo más importante en mi vida es mi familia. Ellos son mi mayor motivación y apoyo en todo lo que hago." data-en="The most important thing in my life is my family. They are my greatest motivation and support in everything I do." data-it="La cosa più importante nella mia vita è la mia famiglia. Sono la mia più grande motivazione e supporto in tutto ciò che faccio.">
|
| 224 |
+
Lo más importante en mi vida es mi familia. Ellos son mi mayor motivación y apoyo en todo lo que hago.
|
| 225 |
+
</p>
|
| 226 |
+
|
| 227 |
+
<div class="family-section rounded-lg p-4 mt-4">
|
| 228 |
+
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
|
| 229 |
+
<!-- Family Member 1 -->
|
| 230 |
+
<div class="family-member text-center">
|
| 231 |
+
<img src="https://images.unsplash.com/photo-1554151228-14d9def656e4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=686&q=80"
|
| 232 |
+
alt="Esposa"
|
| 233 |
+
class="family-img rounded-full mx-auto mb-2">
|
| 234 |
+
<h4 class="text-gold-400 font-medium" data-es="María" data-en="Maria" data-it="Maria">María</h4>
|
| 235 |
+
<p class="text-gray-400 text-xs" data-es="Esposa" data-en="Wife" data-it="Moglie">Esposa</p>
|
| 236 |
+
</div>
|
| 237 |
+
|
| 238 |
+
<!-- Family Member 2 -->
|
| 239 |
+
<div class="family-member text-center">
|
| 240 |
+
<img src="https://images.unsplash.com/photo-1531123897727-8f129e332c15?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=686&q=80"
|
| 241 |
+
alt="Hija"
|
| 242 |
+
class="family-img rounded-full mx-auto mb-2">
|
| 243 |
+
<h4 class="text-gold-400 font-medium" data-es="Lucía" data-en="Lucia" data-it="Lucia">Lucía</h4>
|
| 244 |
+
<p class="text-gray-400 text-xs" data-es="Hija" data-en="Daughter" data-it="Figlia">Hija</p>
|
| 245 |
+
</div>
|
| 246 |
+
|
| 247 |
+
<!-- Family Member 3 -->
|
| 248 |
+
<div class="family-member text-center">
|
| 249 |
+
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
|
| 250 |
+
alt="Hijo"
|
| 251 |
+
class="family-img rounded-full mx-auto mb-2">
|
| 252 |
+
<h4 class="text-gold-400 font-medium" data-es="Carlos" data-en="Carlos" data-it="Carlos">Carlos</h4>
|
| 253 |
+
<p class="text-gray-400 text-xs" data-es="Hijo" data-en="Son" data-it="Figlio">Hijo</p>
|
| 254 |
+
</div>
|
| 255 |
+
|
| 256 |
+
<!-- Family Member 4 -->
|
| 257 |
+
<div class="family-member text-center">
|
| 258 |
+
<img src="https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80"
|
| 259 |
+
alt="Madre"
|
| 260 |
+
class="family-img rounded-full mx-auto mb-2">
|
| 261 |
+
<h4 class="text-gold-400 font-medium" data-es="Isabel" data-en="Isabel" data-it="Isabella">Isabel</h4>
|
| 262 |
+
<p class="text-gray-400 text-xs" data-es="Madre" data-en="Mother" data-it="Madre">Madre</p>
|
| 263 |
+
</div>
|
| 264 |
+
</div>
|
| 265 |
+
</div>
|
| 266 |
+
</div>
|
| 267 |
+
</div>
|
| 268 |
+
</div>
|
| 269 |
+
|
| 270 |
+
<!-- Contact Button -->
|
| 271 |
+
<div class="menu-item animate-fade-in" style="animation-delay: 1s;">
|
| 272 |
<button class="menu-btn w-full bg-black border border-gold-500 text-white py-3 px-6 rounded-lg flex justify-between items-center hover:bg-gray-900 transition-colors">
|
| 273 |
<span data-es="Contacto" data-en="Contact" data-it="Contatto">Contacto</span>
|
| 274 |
<i class="fas fa-chevron-down transition-transform"></i>
|
|
|
|
| 300 |
</div>
|
| 301 |
|
| 302 |
<!-- Download CV Button -->
|
| 303 |
+
<button id="downloadBtn" class="animate-fade-in animate-pulse-slow bg-gold-600 hover:bg-gold-700 text-black font-bold py-3 px-8 rounded-full flex items-center mt-4 transition-colors" style="animation-delay: 1.2s;">
|
| 304 |
<i class="fas fa-download mr-2"></i>
|
| 305 |
<span data-es="Descargar CV" data-en="Download CV" data-it="Scarica CV">Descargar CV</span>
|
| 306 |
</button>
|
prompts.txt
CHANGED
|
@@ -1,2 +1,3 @@
|
|
| 1 |
preciso una sola página sin scroll para un abogado que tenga menus que muestren contacto y trayectoria y sobre mi. Co animaciones. Debe tener los colores negro dorado y blanco con la posibilidad d descargar un archivo pdf con el cv del mismo y tiene que tener un disño de toda la página y además seer resposive. sin mucho texto y con la posibilidad de traducir en 3 idiomas, español, inglés y italiano. EL diseño debe ser limpio y no tener scrooll.
|
| 2 |
-
podrías agregar arriba del nombre una imagen de justicia a modo de logotipo y además un botón para descargar su curriculum
|
|
|
|
|
|
| 1 |
preciso una sola página sin scroll para un abogado que tenga menus que muestren contacto y trayectoria y sobre mi. Co animaciones. Debe tener los colores negro dorado y blanco con la posibilidad d descargar un archivo pdf con el cv del mismo y tiene que tener un disño de toda la página y además seer resposive. sin mucho texto y con la posibilidad de traducir en 3 idiomas, español, inglés y italiano. EL diseño debe ser limpio y no tener scrooll.
|
| 2 |
+
podrías agregar arriba del nombre una imagen de justicia a modo de logotipo y además un botón para descargar su curriculum
|
| 3 |
+
esta perfecto! preciso que agreguemos en el diseño una imagen de fondo y alguna sección con imágenes de su serees queridos
|