Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions frontend/src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,14 @@ function Footer() {
</button>
</div>
</div>
<div className="flex justify-center rounded px-4 py-2 ">
© 2025 Balancer. All rights reserved. V1 2-04-2025
<div className="flex justify-center rounded px-4 py-2 ">
<p>© 2025 Balancer. All rights reserved. V1 2-04-2025</p>
</div>
<div className="flex justify-center rounded px-4 py-2 ">
<p className="text-gray-600 text-sm font-light italic">
Balancer is an educational resource designed to support{" "}
—never replace— the judgment of licensed U.S. clinicians. Final prescribing decisions must always be made by the treating clinician.
</p>
</div>
</footer>
</div>
Expand Down
19 changes: 11 additions & 8 deletions frontend/src/pages/PatientManager/PatientManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,17 @@ const PatientManager = () => {

const descriptionEl = (
<div className="md:mt-10">
Use our tool to get medication suggestions for bipolar disorder based on
patient characteristics.{" "}
<Link
to="/data-sources"
className="mr-5 underline hover:border-blue-600 hover:text-blue-600 hover:no-underline"
>
Read about where we get our data.
</Link>
<p>Use our tool to explore medication options for bipolar disorder based on patient characteristics.</p>
<p>
<Link
to="/data-sources"
className="mr-5 underline hover:border-blue-600 hover:text-blue-600 hover:no-underline"
>
Read about where we get our data.
</Link>
</p>
<p className="text-gray-600 mt-4 text-sm font-light italic">Balancer is an educational resource designed to support —never replace— the judgment of licensed U.S. clinicians.</p>
<p className="text-gray-600 text-sm font-light italic">Final prescribing decisions must always be made by the treating clinician.</p>
</div>
);

Expand Down