From 020a5802bda26ea49bc7c3faf4ac87387f8c74c7 Mon Sep 17 00:00:00 2001 From: abrichr Date: Fri, 24 Jul 2026 18:28:42 -0400 Subject: [PATCH] Add Dr. Victor Abrich RVU audit case study --- components/CustomerCaseStudy.js | 59 ++++++++ components/NavHeader.js | 4 + data/customerCaseStudies.js | 42 ++++++ pages/customers/rvu-audit-heart-care.js | 178 ++++++++++++++++++++++++ pages/index.js | 4 + public/llms.txt | 1 + public/sitemap.xml | 6 + tests/customerCaseStudy.test.js | 46 ++++++ 8 files changed, 340 insertions(+) create mode 100644 components/CustomerCaseStudy.js create mode 100644 data/customerCaseStudies.js create mode 100644 pages/customers/rvu-audit-heart-care.js create mode 100644 tests/customerCaseStudy.test.js diff --git a/components/CustomerCaseStudy.js b/components/CustomerCaseStudy.js new file mode 100644 index 0000000..4a7af83 --- /dev/null +++ b/components/CustomerCaseStudy.js @@ -0,0 +1,59 @@ +import Link from 'next/link' + +import { ABRICH_RVU_AUDIT_CASE } from '../data/customerCaseStudies' + +export default function CustomerCaseStudy() { + const customerCase = ABRICH_RVU_AUDIT_CASE + + return ( +
+
+
+
+

Customer result

+

+ {customerCase.title} +

+

+ {customerCase.summary} +

+

+ + {customerCase.customer.name} + +
+ {customerCase.customer.role} +
+ {customerCase.customer.organization} +

+ + Read the case study + +
+ +
+ {customerCase.results.map((result) => ( +
+

+ {result.value} +

+

+ {result.label} +

+
+ ))} +
+
+
+
+ ) +} diff --git a/components/NavHeader.js b/components/NavHeader.js index 26e5307..cc90e84 100644 --- a/components/NavHeader.js +++ b/components/NavHeader.js @@ -30,6 +30,10 @@ const SOLUTIONS_LINKS = [ const PRODUCT_LINKS = [ { label: 'How it works', href: '/how-it-works' }, + { + label: 'Customer results', + href: '/customers/rvu-audit-heart-care', + }, { label: 'Platforms & deployment', href: '/#product-status' }, { label: 'Workflows', href: '/workflows' }, { label: 'Safety', href: '/safety' }, diff --git a/data/customerCaseStudies.js b/data/customerCaseStudies.js new file mode 100644 index 0000000..00233a4 --- /dev/null +++ b/data/customerCaseStudies.js @@ -0,0 +1,42 @@ +export const ABRICH_RVU_AUDIT_CASE = { + slug: 'rvu-audit-heart-care', + customer: { + name: 'Dr. Victor Abrich, MD', + role: 'Board-certified electrophysiologist', + organization: 'MercyOne Waterloo Heart Care', + profileUrl: + 'https://www.mercyone.org/provider/victor-abrich-md-electrophysiology', + }, + title: 'Recovering missed billables with automated RVU audits', + summary: + 'OpenAdapt automated the repetitive EMR navigation, clicking, and data entry behind Dr. Abrich’s monthly RVU audits.', + challenge: + 'RVU audits took several hours every month and still did not consistently surface every missed billable.', + workflow: [ + 'Review the month’s procedures and expected RVUs.', + 'Navigate the relevant records in the EMR.', + 'Enter and reconcile audit information through the existing interface.', + 'Surface missed billables for correction and follow-through.', + ], + results: [ + { + value: '≈$75,000', + label: 'recovered billables per year', + }, + { + value: 'Several hours', + label: 'of manual audit work saved each month', + }, + { + value: 'EMR-native', + label: 'navigation, clicking, and data entry automated', + }, + ], + result: + 'The automated audit caught billables that manual review did not consistently find, recovering approximately $75,000 per year while saving several hours of physician time each month.', + surface: 'Electronic medical record', + workflowType: 'Monthly physician RVU audit', + industry: 'Healthcare', +} + +export const CUSTOMER_CASE_STUDIES = [ABRICH_RVU_AUDIT_CASE] diff --git a/pages/customers/rvu-audit-heart-care.js b/pages/customers/rvu-audit-heart-care.js new file mode 100644 index 0000000..3d19120 --- /dev/null +++ b/pages/customers/rvu-audit-heart-care.js @@ -0,0 +1,178 @@ +import Head from 'next/head' +import Link from 'next/link' + +import Footer from '@components/Footer' +import { ABRICH_RVU_AUDIT_CASE } from '../../data/customerCaseStudies' + +const customerCase = ABRICH_RVU_AUDIT_CASE +const canonical = `https://openadapt.ai/customers/${customerCase.slug}` + +const articleSchema = { + '@context': 'https://schema.org', + '@type': 'Article', + headline: customerCase.title, + description: customerCase.result, + url: canonical, + about: { + '@type': 'MedicalBusiness', + name: customerCase.customer.organization, + }, + mentions: { + '@type': 'Person', + name: customerCase.customer.name, + jobTitle: customerCase.customer.role, + url: customerCase.customer.profileUrl, + }, + publisher: { + '@type': 'Organization', + name: 'OpenAdapt.AI', + url: 'https://openadapt.ai', + }, +} + +export default function RvuAuditHeartCareCaseStudy() { + return ( +
+ + + RVU Audit Automation at MercyOne Waterloo Heart Care | + OpenAdapt + + + + + + +