import { useState } from "react"; import { Plus, Minus, HelpCircle, MessageSquare } from "lucide-react"; import { motion, AnimatePresence } from "motion/react"; export default function FAQ() { const [openId, setOpenId] = useState("faq-0"); // keep first open by default const faqs = [ { id: "faq-0", question: "Is Lumina Convert free to use?", answer: "Yes! Lumina Convert is 100% free at all times with absolutely no limitations, file size restricts, or premium locks. It supports all 200+ formats straight out of the box, with zero watermark logs, offline telemetry, or sign-up gates. Our team is fully committed to keeping it a clean, accessible security asset for the global development community.", }, { id: "faq-1", question: "Does my data or files get uploaded to any online server?", answer: "Absolutely not. Lumina Convert is configured as an 'offline-first' software. When you drop files, 100% of the conversion process occurs on your computer. Your files never leave your machine which guarantees absolute protection from leak risks, compliance audits (HIPAA/GDPR), and slow internet queues.", }, { id: "faq-2", question: "Which file formats are supported?", answer: "We support over 200+ formats! This includes PDFs, Microsoft Office documents (DOCX, XLSX, PPTX), rich images (PNG, WebP, JPG, SVG, TIFF), high-fidelity video codecs (MP4, MOV, MKV, AVI, WebM), audio containers (MP3, WAV, FLAC, AAC), and software formats like JSON, XML, or archives.", }, { id: "faq-3", question: "Is technical support available? Can I reach you on WhatsApp?", answer: "Yes, we offer real-time customer support! You can reach out directly via WhatsApp at +92-303-4572298 or email us anytime at bahaduralimunnabhai@gmail.com. We operate standard under 12-hour response SLAs, helping you install codecs or configure directory watchers.", }, ]; return (
{/* Header */}
Frequently Asked

Got questions? We have{" "} answers

Everything you need to know about formats, compliance standards, license activation, and local installation.

{/* FAQs list accordion */}
{faqs.map((faq, index) => { const isOpen = openId === faq.id; return (
{isOpen && (
{faq.answer}
)}
); })}
{/* Floating Support Info */}

Need personal folder automation?

We offer custom shell triggers for business server arrays.

WhatsApp Us Email Specialist
); }