Skip to content

Commit 23d5c52

Browse files
committed
feat: Add content to sidebar
1 parent 5fb4ac9 commit 23d5c52

File tree

1 file changed

+34
-17
lines changed

1 file changed

+34
-17
lines changed

src/app/components/SinglePropertyDetail.tsx

Lines changed: 34 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -54,23 +54,23 @@ const SinglePropertyDetail = ({
5454
<div className="py-4 px-2">
5555
<div className="flex justify-between content-center">
5656
<h2 className="font-bold text-2xl">{address}</h2>
57-
</div>
58-
<div style={{ textAlign: "left", marginTop: "1em" }}>
59-
<Button
60-
as="a"
61-
href={atlasUrl}
62-
target="_blank"
63-
rel="noopener noreferrer"
64-
color="primary"
65-
>
66-
View this property on Atlas
67-
</Button>
57+
<div>
58+
<a
59+
href={atlasUrl}
60+
target="_blank"
61+
rel="noopener noreferrer"
62+
color="primary"
63+
>
64+
Atlas Link
65+
</a>
66+
</div>
6867
</div>
6968
</div>
70-
<table className="w-full">
69+
70+
<table className="w-full mb-3">
7171
<tbody>
7272
<tr>
73-
<th scope="row" className="table-cell">
73+
<th scope="row" className="table-cell w-3/12">
7474
Suggested Priority
7575
</th>
7676
<td className="table-cell">{priority_level}</td>
@@ -87,8 +87,13 @@ const SinglePropertyDetail = ({
8787
</th>
8888
<td className="table-cell">{Math.round(tree_canopy_gap * 100)}%</td>
8989
</tr>
90+
</tbody>
91+
</table>
92+
93+
<table className="w-full mb-4">
94+
<tbody>
9095
<tr>
91-
<th scope="row" className="table-cell">
96+
<th scope="row" className="table-cell w-3/12">
9297
Access Process
9398
</th>
9499
<td className="table-cell">{access_process}</td>
@@ -110,7 +115,7 @@ const SinglePropertyDetail = ({
110115
</tr>
111116
<tr>
112117
<th scope="row" className="table-cell">
113-
Neighborhood
118+
RCO
114119
</th>
115120
<td className="table-cell">{neighborhood}</td>
116121
</tr>
@@ -128,7 +133,7 @@ const SinglePropertyDetail = ({
128133
</tr>
129134
<tr>
130135
<th scope="row" className="table-cell">
131-
Tax delinquency
136+
Tax Delinquency
132137
</th>
133138
<td className="table-cell">{total_due ? "Yes" : "No"}</td>
134139
</tr>
@@ -140,7 +145,19 @@ const SinglePropertyDetail = ({
140145
</tr>
141146
</tbody>
142147
</table>
143-
<p className="font-bold mt-4 py-2">Remove This Property</p>
148+
149+
<h3 className="font-bold mb-2 py-2">Ways to transform the lot</h3>
150+
<p className="mb-4">
151+
How do you envision transforming the lot? The type of change you want to make will guide the access you need. Here are a couple of possible options for this lot. Learn more.&nbsp;
152+
<a href="/transform-property">Transform a Property</a>
153+
</p>
154+
155+
<h3 className="font-bold mb-2 py-2">Getting Access</h3>
156+
<p className="mb-4">
157+
Based on the information about this property we'd recommend these actions. Learn more at <a href="/get-access">Gain Access</a>
158+
</p>
159+
160+
<h3 className="font-bold mb-2 py-2">Remove This Property</h3>
144161
<p>
145162
If you would like to request that we remove this property from the
146163
dashboard, please see our{" "}

0 commit comments

Comments
 (0)