import React, { useState } from "react"; const Faq = () => { const [faq, setFaq] = useState([ { question: "What is Mediscape?", answer: "Mediscape is an AI-powered healthcare automation system designed to assist doctors with various tasks, such as analyzing handwritten notes, detecting diseases from medical images, and providing diagnostic insights based on symptoms. Our platform integrates advanced AI technology to streamline workflows and enhance patient care.", open: false, }, { question: "How does Mediscape analyze doctor handwriting?", answer: "Mediscape uses state-of-the-art optical character recognition (OCR) and machine learning algorithms to accurately digitize and interpret handwritten notes. This feature helps doctors save time and reduces errors in patient record management by converting handwritten text into easily searchable digital documents.", open: false, }, { question: "Can Mediscape detect all types of diseases from images?", answer: "While Mediscape is equipped with advanced AI models capable of identifying and classifying a wide range of diseases from medical images, its accuracy is continually being improved. Our system is trained on extensive datasets to provide reliable diagnostic suggestions, but it is always recommended to use it in conjunction with professional medical judgment.", open: false, }, { question: "What future features can I expect from Mediscape?", answer: "We are continuously working on expanding Mediscapes capabilities. Upcoming features include drug analysis, which will assist in understanding drug interactions and effects, and an outbreak detection system that will help identify and respond to potential health crises quickly and effectively.", open: false, }, ]); const toggleFaq = (index) => { setFaq( faq.map((item, i) => { if (i === index) { item.open = !item.open; } else { item.open = false; } return item; }) ); }; return (
Frequenty Asked Questions

{faq.map((item, index) => (

))}

Didn’t find the answer you are looking for?{" "} Contact our support

); }; export default Faq;