import { motion } from "framer-motion"; import { MessageSquare, Clock, Shield } from "lucide-react"; import intuitiveSrc from "@assets/generated_images/intuitive-interface.jpg"; import patientSrc from "@assets/generated_images/patient-connection-v2.jpg"; import dataSrc from "@assets/generated_images/data-control-v3.jpg"; export function Features() { const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.2 } } }; const itemVariants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6 } } }; return (

A New Standard for Practice

Everything you need to run your office, handled intuitively.

{/* Feature 1 — full-width with image on the right */}

Real Intuitive Interface

Chat with our AI agent to check eligibility and claims using your own words. No clicking around. Increase your work efficiency more than 10 times.

Dental professional using AI chat interface
{/* Features 2 & 3 — two columns below, each with image */}
Dental receptionist managing after-hours patient communication

24/7 Patient Connection

After-hours messaging and calling handled automatically by AI, in your way. Never miss any patient inquiry.

Secure local data storage and backup system

Your Data, Your Control

All patient data lives on your local computers. Automatic local and remote backup — always secure, always yours.

); }