Skip to content

Commit 062fee2

Browse files
committed
nice subscribe
1 parent d18c54b commit 062fee2

1 file changed

Lines changed: 32 additions & 3 deletions

File tree

laia-es.html

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@
141141
</div>
142142
<div class="w-embed">
143143
<style>
144+
html { scroll-behavior: smooth; }
144145
.btn-nav {
145146
position: relative;
146147
background: black;
@@ -243,7 +244,24 @@
243244
letter-spacing: 0.06em;
244245
text-transform: uppercase;
245246
opacity: 0.85;
247+
display: flex;
248+
align-items: center;
249+
gap: 0.75rem;
250+
}
251+
.laia-soon-link {
252+
text-transform: none;
253+
letter-spacing: 0;
254+
font-weight: 700;
255+
color: #fff;
256+
text-decoration: none;
257+
background: linear-gradient(135deg, #27aae1, #462466 50%, #ec297b);
258+
border-radius: 9999px;
259+
padding: 6px 12px;
260+
display: inline-block;
261+
line-height: 1;
262+
transition: filter 0.2s ease, transform 0.2s ease;
246263
}
264+
.laia-soon-link:hover { filter: brightness(1.05); transform: translateY(-1px); }
247265
.laia-sections {
248266
width: 100%;
249267
max-width: 1200px;
@@ -332,13 +350,24 @@
332350
});
333351
}
334352
}
353+
document.addEventListener('DOMContentLoaded', function() {
354+
var link = document.querySelector('.laia-soon-link');
355+
var target = document.getElementById('suscribete');
356+
if (link && target) {
357+
link.addEventListener('click', function(e) {
358+
e.preventDefault();
359+
try { target.scrollIntoView({ behavior: 'smooth', block: 'start' }); }
360+
catch (err) { window.location.hash = '#suscribete'; }
361+
});
362+
}
363+
});
335364
</script>
336365
</div>
337366
</div>
338367

339368
<section class="w-layout-blockcontainer laia-hero w-container">
340369
<img src="images/laia-logo.png" alt="LAIA Hub Creativo" />
341-
<div class="laia-soon">Próximamente</div>
370+
<div class="laia-soon">Próximamente <a href="#suscribete" class="laia-soon-link">Suscríbete</a></div>
342371
<h1 class="laia-title">LAIA: Hub Creativo</h1>
343372
</section>
344373

@@ -427,8 +456,8 @@ <h1 class="laia-title">LAIA: Hub Creativo</h1>
427456
</section>
428457
</div>
429458

430-
<section class="laia-cta w-container">
431-
<h2 class="laia-cta-title">Suscríbete al boletín de LAIA</h2>
459+
<section id="suscribete" class="laia-cta w-container">
460+
<h2 class="laia-cta-title"><span class="highlight">¡Suscríbete</span> al boletín de LAIA y mantente a la vanguardia de la innovación, donde humanos, robots e IA crean el futuro juntos!</h2>
432461
<a
433462
class="laia-cta-btn w-button"
434463
href="https://forms.gle/YTBuNWJLeLxu9MYj7"

0 commit comments

Comments
 (0)