-
Free Forever — No Credit Card
-
Run Your GCC Clinic on WhatsApp — Reminders, Leads & Follow-Ups, Automated.
-
Every other clinic software sends reminders. Clinera sends WhatsApp reminders — the ones your patients actually open. Built for clinics in Dubai, Abu Dhabi, Riyadh and Jeddah.
-
- 🇦🇪 Dubai
- Abu Dhabi
- 🇸🇦 Riyadh
- Jeddah
-
-
+
+
+
Free Forever — No Credit Card
+
Your GCC Clinic, Running on WhatsApp — Reminders, Leads & Follow-Ups, Automated.
+
Every other clinic software sends reminders. Clinera sends WhatsApp messages — the ones your patients actually open. Zero setup cost. Free forever.
+
+
+ 🇦🇪 Dubai
+ Abu Dhabi
+ 🇸🇦 Riyadh
+ Jeddah
+
+
+
+
+
@@ -665,29 +638,7 @@
initSlider('photoSlider', 'photoPrev', 'photoNext', 'photoDots');
initSlider('testiSlider', 'testiPrev', 'testiNext', 'testiDots');
- // ── Hero image crossfade + dots ──
- (function() {
- const imgs = document.querySelectorAll('#heroSlider .hero-img');
- const dotsEl = document.getElementById('heroDots');
- let idx = 0;
- imgs.forEach((_, i) => {
- const d = document.createElement('div');
- d.className = 'hero-dot' + (i === 0 ? ' active' : '');
- d.addEventListener('click', () => goTo(i));
- dotsEl.appendChild(d);
- });
-
- function goTo(i) {
- imgs[idx].classList.remove('active');
- dotsEl.children[idx].classList.remove('active');
- idx = i;
- imgs[idx].classList.add('active');
- dotsEl.children[idx].classList.add('active');
- }
-
- setInterval(() => goTo((idx + 1) % imgs.length), 4000);
- })();