Welcome to FLEX-AI

Revolutionize your WhatsApp experience with our advanced AI bot. Featuring 300+ commands, GPT integration, and powerful automation tools.

Explore Features
300+
Commands
24/7
Active Support
GPT-4
AI Integration
100%
Uptime

ADVANCED FEATURES

Auto Status Viewing

View contacts' statuses automatically with likes and custom views.

AI Responder

Smart automatic responses powered by AI algorithms.

GPT Access

Ask anything and get intelligent responses from integrated GPT.

Anti-Delete

See messages even after they've been deleted.

ABOUT FLEX-AI

FLEX-AI is a cutting-edge WhatsApp AI bot developed by Davincs Tech. With 300+ commands and advanced features, it revolutionizes your messaging experience.

COMMAND SYNTAX

/gpt [question]
Ask any question to the AI
/ai [prompt]
Generate AI response to any prompt
/download [url]
Download media from social sites

CONTACT US

Developer: Allan*Davincs
WhatsApp: +255759637644
TikTok: davincs_tech
Facebook: Da Vincs
Instagram: Dan_Vincs
const supabaseUrl = "https://ldjkvneqtcjcebknesad.supabase.co"; const supabaseKey = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Imxkamt2bmVxdGNqY2Via25lc2FkIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTcyNDM5MzMsImV4cCI6MjA3MjgxOTkzM30.u_MNdU-B48XfPvLuXY7tznC6tZZPuz4zWbIYQDuxrEI"; const supabaseClient = supabase.createClient(supabaseUrl, supabaseKey); async function checkSettings() { // Maintenance mode let { data: maintenance } = await supabaseClient .from("settings") .select("value") .eq("key", "maintenance_mode") .single(); if (maintenance && maintenance.value === "on") { document.body.innerHTML = `
⚠️ Site is under maintenance. Please check back later.
`; return; } // Popup message let { data: popup } = await supabaseClient .from("settings") .select("value") .eq("key", "popup_message") .single(); if (popup && popup.value) { const popupDiv = document.createElement("div"); popupDiv.innerText = popup.value; popupDiv.style.position = "fixed"; popupDiv.style.bottom = "20px"; popupDiv.style.right = "20px"; popupDiv.style.background = "#0070f3"; popupDiv.style.color = "white"; popupDiv.style.padding = "15px 20px"; popupDiv.style.borderRadius = "10px"; popupDiv.style.boxShadow = "0 4px 10px rgba(0,0,0,0.3)"; popupDiv.style.zIndex = "9999"; document.body.appendChild(popupDiv); setTimeout(() => popupDiv.remove(), 8000); } } checkSettings(); // Smooth scroll document.querySelectorAll('.menu a[href^="#"], .cta-button').forEach(anchor => { anchor.addEventListener("click", function(e) { e.preventDefault(); document.querySelector(this.getAttribute("href")).scrollIntoView({ behavior: "smooth" }); }); }); // Slider functionality const slides = document.querySelector('.slides'); const dots = document.querySelectorAll('.dot'); let currentIndex = 0; let totalSlides = 6; // exclude duplicate (now 6 slides) let slideInterval; function updateDots(index) { dots.forEach(dot => dot.classList.remove('active')); dots[index].classList.add('active'); } function goToSlide(index) { currentIndex = index; slides.style.transition = 'transform 0.5s ease'; slides.style.transform = `translateX(-${(100/7) * index}%)`; // 7 total slides (6 + duplicate) updateDots(index); } function nextSlide() { currentIndex = (currentIndex + 1) % totalSlides; goToSlide(currentIndex); // If we're at the last slide (the duplicate), reset without animation if (currentIndex === 0) { setTimeout(() => { slides.style.transition = 'none'; slides.style.transform = 'translateX(0)'; }, 500); } } // Initialize dots dots.forEach(dot => { dot.addEventListener('click', () => { clearInterval(slideInterval); goToSlide(parseInt(dot.dataset.index)); startSliderInterval(); }); }); function startSliderInterval() { slideInterval = setInterval(nextSlide, 5000); } // Pause on hover const slider = document.querySelector('.slider'); slider.addEventListener('mouseenter', () => { clearInterval(slideInterval); }); slider.addEventListener('mouseleave', () => { startSliderInterval(); }); // Start the slider startSliderInterval(); // Mobile menu toggle document.getElementById('menu-toggle').addEventListener('change', function() { const menu = document.querySelector('.menu'); if (this.checked) { menu.style.display = 'flex'; } else { menu.style.display = 'none'; } }); // Handle clean URLs - fallback for non-Vercel environments document.querySelectorAll('a[href^="/"]').forEach(link => { // Skip anchor links if (link.getAttribute('href').includes('#')) return; link.addEventListener('click', function(e) { // Check if we're on Vercel (clean URLs should work) // If not, add .html extension if (!window.location.hostname.includes('vercel.app') && !window.location.hostname.includes('localhost')) { e.preventDefault(); const href = this.getAttribute('href'); window.location.href = href + '.html'; } }); });