September 02, 2025

New trial

import React from "react"; import { CheckCircle, Home, MapPin, ClipboardList, CreditCard, FileText, Activity, Pill, Building2, ArrowRight, ExternalLink } from "lucide-react"; // TailwindCSS assumed. Drop this component into your app/page. // If using Shopify/Liquid without Tailwind, I can convert this to vanilla HTML/CSS. const steps = [ { id: 1, title: "Confirm You Live in Oklahoma", icon: MapPin, body: ( <>

We currently accept new patients who reside in Oklahoma.

Yes — I live in Oklahoma
> ), }, { id: 2, title: "Pick Your Membership", icon: Home, body: ( <>

We’re a membership-based clinic. Choose the plan that fits your needs, then continue below.

{[ { name: "REV Access", desc: "Foundational access and support.", href: "/pages/membership#rev-access" }, { name: "REV Core", desc: "Advanced care and diagnostics.", href: "/pages/membership#rev-core" }, { name: "REV Elite", desc: "Highest-touch, comprehensive care.", href: "/pages/membership#rev-elite" }, ].map((m) => (
{m.name}

{m.desc}

View details
))}
> ), }, { id: 3, title: "Create Your Patient Portal Account", icon: ClipboardList, body: ( <>
  1. Click Oklahoma Residents – Start Here.
  2. Complete the sign‑up form and select +SIGN ME UP!
  3. Open the email titled “Please Confirm Your Registration” and follow the prompts to finish setting up access.
> ), }, { id: 4, title: "Complete Your Portal: My Account Details", icon: FileText, body: ( <>
  1. Go to My Account Details (right side of screen).
  2. Enter your address, city, and state.
  3. Add race, ethnicity, and pronouns, then Save account details.
  4. Select Contact PreferencesSave Contact Preferences.
  5. Upload a current photo.
  6. Enter your Insurance InformationSave Insurance Information.
  7. Upload insurance card photos.
> ), }, { id: 5, title: "Add Payment Method & Pay Retainer", icon: CreditCard, body: ( <>
  1. Open Invoices & Payment.
  2. Click Add Credit Card, complete fields, and Save Card.
  3. If you see a red bar showing Current Balance: -$200.00, that’s your non‑refundable Retainer (applied to services). Click Make Payment and follow prompts.
> ), }, { id: 6, title: "Complete Forms & Questionnaires", icon: ClipboardList, body: ( <>
  1. Go to Forms & Questionnaires.
  2. Fill out everything marked with a red Start+.
  3. The more detail you provide—especially in the Medical Intake Form—the better we can help.
> ), }, { id: 7, title: "Add Vitals (Optional, Highly Recommended)", icon: Activity, body: ( <>

Withings devices integrate seamlessly so we can track your progress.

  • Recommended devices: {" "} Blood Pressure Cuff, {" "} Body Smart Scale or {" "} Body Comp Scale
  • Go to My VitalsAdd a blood pressure reading and enter Systolic, Diastolic, Heart Rate, and Date → Submit this reading.
  • Add your current Height and Weight.
> ), }, { id: 8, title: "List Your Medications & Supplements", icon: Pill, body: ( <>
  1. Open My Medications.
    • If you aren’t taking any medications, check “I am not currently taking any medications.”
    • Otherwise, click ADD A NEW MEDICATION+, search and select the medication, add notes, then COMPLETE AND ADD THIS MEDICATION+.
  2. Open My Supplements and repeat the process above.
> ), }, { id: 9, title: "Add Your Preferred Pharmacy", icon: Building2, body: ( <>

Even though we can provide supplements, peptides, and medications, we still need a pharmacy on file in case a prescription must be sent.

  1. Go to My Pharmacies.
  2. Add your preferred pharmacy and save.
> ), }, { id: 10, title: "You’re All Set!", icon: CheckCircle, body: ( <>

Your chart is now fully created and ready for your provider. If you hit any snags, call or email our team—we’re here to help.

Revolution Health & Wellness
12142 S Yukon Ave
Glenpool, OK 74033
> ), }, ]; export default function NewPatientSteps() { return (

Welcome New Patients

Follow these steps to become a patient at Revolution Health & Wellness.

{steps.map((s, idx) => { const Icon = s.icon; const isEven = idx % 2 === 1; return (

Step {s.id}. {s.title}

{s.body}
); })}
); }