Skip to content

Commit a470015

Browse files
authored
Merge pull request #156 from iris-mq/about-page-updates-6-25-25
About page updates from 6-25-25, ready to merge.
2 parents d3610fc + 551c1e2 commit a470015

File tree

3 files changed

+77
-16
lines changed

3 files changed

+77
-16
lines changed

frontend/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"eslint-plugin-react-hooks": "^5.2.0",
2929
"eslint-plugin-react-refresh": "^0.4.19",
3030
"globals": "^16.0.0",
31-
"prettier": "^3.5.3",
31+
"prettier": "^3.6.2",
3232
"typescript": "~5.7.2",
3333
"typescript-eslint": "^8.26.1",
3434
"vite": "^6.3.1"

frontend/src/About.tsx

Lines changed: 72 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,42 @@ import BackLink from "./shared/components/BackLink";
22

33
export default function About() {
44
return (
5-
<div className="flex items-center pt-16 sm:mt-26 sm:pt-0">
6-
<div className="relative max-w-2xl m-auto p-8 bg-[#F4F4F2] rounded-lg shadow-md">
5+
<div className="flex items-center my-16 mb-0 sm:mt-26 sm:mb-10">
6+
<div className="relative max-w-2xl m-auto p-8 bg-[#F4F4F2] rounded-none sm:rounded-lg shadow-md">
77
<BackLink />
88
<p className="my-6">
99
<strong>Tenant First Aid</strong> is an AI-powered chatbot designed to
10-
help tenants navigate rental issues, answer questions, and provides
11-
legal advice related to housing and eviction.
10+
help Oregon tenants navigate housing and eviction issues. It is a
11+
volunteer-built program by{" "}
12+
<a
13+
href="https://www.codepdx.org/"
14+
className="text-blue-600 underline"
15+
>
16+
Code PDX
17+
</a>{" "}
18+
and{" "}
19+
<a
20+
href="https://www.qiu-qiulaw.com/"
21+
className="text-blue-600 underline"
22+
>
23+
Qiu Qiu Law
24+
</a>
25+
.
1226
</p>
27+
<p className="mb-6 text-gray-700">
28+
It&apos;s called "Tenant First Aid" because it&apos;s like emergency
29+
help for renters facing eviction—quick, clear, and focused on what to
30+
do right now. Just like medical first aid helps stabilize someone
31+
before they can see a doctor, Tenant First Aid gives Oregon tenants
32+
the essential legal info they need to understand an eviction notice,
33+
respond on time, and avoid mistakes that could cost them their home.
34+
</p>
35+
<h2 className="text-2xl font-semibold mt-6 mb-2">Contact:</h2>
36+
<p>Michael Zhang</p>
37+
<p>Attorney, licensed in Oregon and Washington</p>
38+
1339
<h2 className="text-2xl font-semibold mt-6 mb-2">Features</h2>
14-
<ul className="list-disc list-inside mb-6">
40+
<ul className="list-disc list-inside">
1541
<li>Instant answers to common rental questions</li>
1642
<li>Guidance on tenant rights and landlord obligations</li>
1743
<li>Easy-to-use chat interface</li>
@@ -23,12 +49,47 @@ export default function About() {
2349
Aid will provide helpful information or direct you to relevant
2450
resources.
2551
</p>
26-
<h2 className="text-2xl font-semibold mt-6 mb-2">Disclaimer</h2>
27-
<p className="">
28-
<strong>Tenant First Aid</strong> is an AI assistant and does not
29-
provide legal advice. For complex or urgent legal matters, please
30-
consult a qualified professional.
31-
</p>
52+
<h2 className="text-2xl font-semibold mt-6 mb-2">Quick Facts:</h2>
53+
<ul className="list-disc list-inside mb-6">
54+
<li>Uses openAI ChatGPT o3 model</li>
55+
<li>
56+
Reference library:
57+
<ul className="list-none pl-6 mt-1">
58+
<li>
59+
<a
60+
href="https://www.oregonlegislature.gov/bills_laws/ors/ors090.html"
61+
className="text-blue-600 underline"
62+
>
63+
ORS 90 (as amended 2023)
64+
</a>
65+
</li>
66+
<li>
67+
<a
68+
href="https://www.oregonlegislature.gov/bills_laws/ors/ors105.html"
69+
className="text-blue-600 underline"
70+
>
71+
ORS 105
72+
</a>
73+
</li>
74+
<li>
75+
<a
76+
href="https://eugene.municipal.codes/EC/8.425"
77+
className="text-blue-600 underline"
78+
>
79+
Eugene Code Section 8.425
80+
</a>
81+
</li>
82+
<li>
83+
<a
84+
href="https://www.portland.gov/code/30/all"
85+
className="text-blue-600 underline"
86+
>
87+
Portland City Code Title 30
88+
</a>
89+
</li>
90+
</ul>
91+
</li>
92+
</ul>
3293
</div>
3394
</div>
3495
);

0 commit comments

Comments
 (0)