import { Card, CardContent, CardHeader, CardTitle } from "./ui/card"; import { MedalIcon, MapIcon, PlaneIcon } from "../components/Icons"; interface FeatureProps { icon: JSX.Element; title: string; description: string; } const features: FeatureProps[] = [ { icon: , title: "Document Classification", description: "Utilizes AI/ML algorithms to classify documents based on content and metadata", }, { icon: , title: "Anomaly Detection", description: "Identifies mistakes and misclassifications in document metadata through automated anomaly detection", }, { icon: , title: "User-Friendly Interface", description: "Simplifies the document management process for hospital staff, reducing manual effort and errors", }, ]; export const HowItWorks = () => { return (

Fast and Accurate{" "} Document Meta Data{" "} Verification

DocVerifyRAG revolutionizes document verification in healthcare, harnessing AI to classify documents and rectify metadata errors. With automated anomaly detection, ensure precise data management, compliance, and enhanced patient care.

{features.map(({ icon, title, description }: FeatureProps) => ( {icon} {title} {description} ))}
); };