-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathAbout.tsx
More file actions
102 lines (99 loc) · 5.97 KB
/
About.tsx
File metadata and controls
102 lines (99 loc) · 5.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
//import Welcome from "../../components/Welcome/Welcome.tsx";
import Layout from "../Layout/Layout";
import Version from "../../components/Version/Version";
// import image from "./OIP.jpeg";
import image from "./OIP2.png";
function About() {
return (
<Layout>
<div className="font_body mt-48 flex w-full flex-col items-center justify-center rounded-md border bg-white p-4 px-8 ring-1 hover:ring-slate-300 md:max-w-6xl">
{/* Making it easier to research bipolar medications */}
<div className="flex w-full flex-col justify-center mb-20 md:mb-0">
<div className="flex flex-row">
<div className="flex flex-col justify-center md:w-full mr-10">
<div className="mt-5 text-3xl font-bold">
Making it easier to research bipolar medications
</div>
<div className="mt-5 text-lg text-gray-600">
It can take two to 10 years—and three to 30 medications—for people with bipolar disorder to find the right medication combination. <span className="body_logo">Balancer</span> is designed to help prescribers speed up that process by making research faster and more accessible.
</div>
</div>
<img src={image} alt="about image" className="hidden md:mt-10 md:block md:h-64 md:rounded-2xl"></img>
</div>
</div>
{/* How Balancer works */}
<div className="flex w-full flex-col justify-center md:mt-20 md:max-w-6xl mb-20 md:mb-0">
<div className="mb-5 text-3xl font-bold">
How <span>Balancer</span> works
</div>
<ul className="list-disc pl-5">
<li className="mb-5">
<span className="text-md font-bold">Medication Suggestions (rules-based):</span>
<p className="text-gray-600 mt-2">When you enter patient characteristics, Balancer suggests first-line, second-line, and third-line options. The recommendations follow a consistent framework developed from interviews with psychiatrists, psychiatry residents, nurse practitioners, and other prescribers. This part is not powered by AI.</p>
</li>
<li className="mb-5">
<span className="text-md font-bold">Explanations & Research (AI-assisted):</span>
<p className="text-gray-600 mt-2">For each suggestion, you can click to see supporting journal articles. Here, Balancer uses AI to search our database of medical research and highlight relevant sources for further reading.</p>
</li>
</ul>
<p className="text-gray-600 text-lg">Together, these features help prescribers get reliable starting points quickly—without replacing professional judgment.</p>
</div>
{/* Important disclaimer */}
<div className="flex w-full flex-col justify-center md:mt-20 md:max-w-6xl mb-20 md:mb-0">
<div className="text-3xl font-bold mb-5">
Important disclaimer
</div>
<p className="text-gray-600">Balancer is a free, open-source research tool built by volunteers at Code for Philly. It is for licensed U.S. prescribers and researchers only.</p>
<ul className="list-disc pl-5 mt-2">
<li><p className="mt-2 text-gray-600">Balancer does <em>not</em> provide medical advice.</p></li>
<li><p className="mt-2 text-gray-600">It does <em>not</em> determine treatment or replace clinical judgment.</p></li>
<li><p className="mt-2 text-gray-600">Clinical decisions should always be based on the prescriber's expertise, knowledge of the patient, and official medical guidelines.</p></li>
</ul>
</div>
{/* Our mission */}
<div className="flex w-full flex-col justify-center md:mt-20 md:max-w-6xl mb-20 md:mb-0">
<div className="text-3xl font-bold mb-5">
Our mission
</div>
<p className="text-gray-600">Bipolar disorder affects approximately 5.7 million adult Americans <u>every year</u>. Delays in the correct diagnosis and proper treatment of bipolar disorder may result in social, occupational, and economic burdens, as well as an <u>increase in completed suicides</u>.</p>
<p className="mt-2 text-gray-600">The team behind Balancer believes that building a searchable, interactive and user-friendly research tool for bipolar medications has the potential to improve the health and well-being of people with bipolar disorder.</p>
</div>
{/* Support Us section */}
<div className="flex w-full flex-col items-center justify-center md:mt-28 md:max-w-6xl">
<div className="text-3xl font-bold">Support Us</div>
<div className="mt-5 flex flex-col items-center justify-center text-center text-lg text-gray-600 md:pl-48 md:pr-48">
<div className="text-xl">
<span className="body_logo">Balancer</span> is a not-for-profit, civic-minded, open-source project
sponsored by{" "}
<a
href="https://codeforphilly.org/"
className="underline hover:text-blue-600 hover:no-underline"
target="_blank"
>
Code for Philly
</a>
.
</div>
</div>
<div className="mb-20 mt-5 flex flex-row flex-wrap justify-center gap-4">
<a href="https://github.com/CodeForPhilly/balancer-main" target="_blank">
<button className="btnBlue transition-transform focus:outline-none focus:ring focus:ring-blue-200">
Support Development
</button>
</a>
<a href="mailto:balancerteam@codeforphilly.org" target="_blank" >
<button className="btnBlue transition-transform focus:outline-none focus:ring focus:ring-blue-200">
Contact Us
</button>
</a>
</div>
<Version
as="p"
className="text-gray-500 text-sm mt-4"
/>
</div>
</div>
</Layout>
);
}
export default About;