top of page
PGx Results.png

Your PGx Results Delivered Securely


Your personalized pharmacogenomic (PGx) results are delivered through a secure, HIPAA-compliant portal designed to protect your privacy. Once your analysis is complete, you’ll receive confidential access to a clear, easy-to-understand report explaining how your unique genetics affect medication response. Your data is encrypted, never shared without your consent, and available to you anytime, so you can confidently use your results to make informed decisions with your healthcare provider.

© 2026 by Powered by Prescription Match, inc. 

bottom of page
import React, { useState, useEffect } from 'react'; function TestStatus() { const [status, setStatus] = useState("Awaiting test return"); useEffect(() => { // Fetch status from the backend (for example, /get_test_status) fetch('/get_test_status') .then(response => response.json()) .then(data => setStatus(data.status)); }, []); return (

Test Status: {status}

{status === "Received" && ( )}
); function handleWatchInstructions() { // Redirect to instructional video window.location.href = 'https://example.com/instructions'; } } export default TestStatus;