textes revues et traduction
This commit is contained in:
@@ -1,25 +1,42 @@
|
||||
{% load i18n %}
|
||||
<!-- ══ HERO ══ -->
|
||||
<section class="hero">
|
||||
<div class="hero-text reveal">
|
||||
|
||||
<h1>L'agriculture<br>de précision,<br><span>accessible.</span></h1>
|
||||
<p>Des technologies agricoles pour cartographier, diagnostiquer et piloter avec précision.</p>
|
||||
<h1>{% blocktrans %}L'agriculture n'a plus<br><span>de zones d'ombre.</span>{% endblocktrans %}</h1>
|
||||
<p>{% blocktrans %}JooL révèle ce que chaque hectare cache : risques, anomalies, potentiel et décisions à prendre grâce à l'IA,<br> au satellite et aux drones.{% endblocktrans %}</p>
|
||||
<div class="hero-form">
|
||||
<input class="hero-input" type="email" placeholder="Votre adresse email">
|
||||
<button class="btn-hero">
|
||||
Demander une démo
|
||||
<input id="hero-email" class="hero-input" type="email" placeholder="{% trans 'Votre adresse email' %}">
|
||||
<button id="hero-demo-btn" class="btn-hero" type="button">
|
||||
{% trans "Demander une démo" %}
|
||||
<span class="material-icons-round" style="font-size:18px;">arrow_forward</span>
|
||||
</button>
|
||||
</div>
|
||||
<script>
|
||||
document.getElementById('hero-demo-btn').addEventListener('click', function () {
|
||||
const email = document.getElementById('hero-email').value.trim();
|
||||
const target = document.getElementById('contact');
|
||||
if (target) {
|
||||
target.scrollIntoView({ behavior: 'smooth' });
|
||||
if (email) {
|
||||
setTimeout(function () {
|
||||
const contactEmail = document.querySelector('#contact-form input[name="email"]');
|
||||
if (contactEmail) contactEmail.value = email;
|
||||
const lastName = document.querySelector('#contact-form input[name="last_name"]');
|
||||
if (lastName) lastName.focus();
|
||||
}, 600);
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
<div class="hero-visual reveal">
|
||||
<div class="float-badge fb-1">
|
||||
<span class="material-icons-round">satellite_alt</span>
|
||||
NDVI · Analyse live
|
||||
{% trans "NDVI · Analyse live" %}
|
||||
</div>
|
||||
<div class="float-badge fb-2">
|
||||
<span class="material-icons-round">check_circle</span>
|
||||
+34% détection précoce
|
||||
{% trans "Diagnostic en moins de 2h" %}
|
||||
</div>
|
||||
<div class="hero-mockup">
|
||||
<div class="hero-mockup-bar">
|
||||
@@ -31,15 +48,15 @@
|
||||
<div class="hc-icon"><span class="material-icons-round">satellite_alt</span></div>
|
||||
<div class="hc-text">
|
||||
<div class="hc-title">KIRIQ AI</div>
|
||||
<div class="hc-sub">Diagnostic agricole à distance</div>
|
||||
<div class="hc-sub">{% trans "Risques détectés, rapport disponible" %}</div>
|
||||
</div>
|
||||
<div class="hc-arrow"><span class="material-icons-round">chevron_right</span></div>
|
||||
</div>
|
||||
<div class="hero-card">
|
||||
<div class="hc-icon" style="background:#e07c00;"><span class="material-icons-round">flight</span></div>
|
||||
<div class="hc-icon" style="background:#e07c00;"><span class="material-icons-round">camera</span></div>
|
||||
<div class="hc-text">
|
||||
<div class="hc-title">Jool Monitor</div>
|
||||
<div class="hc-sub">Vision terrain augmentée</div>
|
||||
<div class="hc-sub">{% trans "Carte drone prête" %}</div>
|
||||
</div>
|
||||
<div class="hc-arrow"><span class="material-icons-round">chevron_right</span></div>
|
||||
</div>
|
||||
@@ -47,7 +64,15 @@
|
||||
<div class="hc-icon" style="background:#1a6080;"><span class="material-icons-round">badge</span></div>
|
||||
<div class="hc-text">
|
||||
<div class="hc-title">Jool ID</div>
|
||||
<div class="hc-sub">Gestion digitale des producteurs</div>
|
||||
<div class="hc-sub">{% trans "Producteur géoréférencé" %}</div>
|
||||
</div>
|
||||
<div class="hc-arrow"><span class="material-icons-round">chevron_right</span></div>
|
||||
</div>
|
||||
<div class="hero-card">
|
||||
<div class="hc-icon" style="background:#806c1a;"><span class="material-icons-round">person</span></div>
|
||||
<div class="hc-text">
|
||||
<div class="hc-title">Mon Agro</div>
|
||||
<div class="hc-sub">{% trans "Agronome disponible" %}</div>
|
||||
</div>
|
||||
<div class="hc-arrow"><span class="material-icons-round">chevron_right</span></div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user