@@ -13,6 +13,7 @@ import PropertyAccessOptionContainer from "./PropertyAccessOptionContainer";
13
13
import { ThemeButton , ThemeButtonLink } from "./ThemeButton" ;
14
14
import ContentCard from "./ContentCard" ;
15
15
import cleanup from "@/images/transform-a-property.png" ;
16
+ import { PiEyeSlash } from "react-icons/pi" ;
16
17
17
18
interface PropertyDetailProps {
18
19
property : MapGeoJSONFeature | null ;
@@ -270,30 +271,17 @@ const SinglePropertyDetail = ({
270
271
/>
271
272
</ Link >
272
273
273
- { /*
274
- <div className="flex mb-4 px-2 gap-4">
275
- <SinglePropertyInfoCard
276
- title="Lot Cleanup"
277
- body="In a day, clean up with a street crew and PHS!"
278
- icon={<Broom className="h-12 w-12" aria-hidden="true" />}
279
- />
280
- <SinglePropertyInfoCard
281
- title="Community Garden"
282
- body="Set up a longer term, sustainable green space."
283
- icon={<PottedPlant className="h-12 w-12" aria-hidden="true" />}
284
- />
274
+ < div className = "flex flex-col space-y-6 mt-[72px]" >
275
+ < p > You can request that we remove this property from the dashboard.</ p >
276
+ < div className = "flex" >
277
+ < ThemeButtonLink
278
+ color = "secondary"
279
+ href = "/request-removal"
280
+ startContent = { < PiEyeSlash /> }
281
+ label = { "Request we hide this property" }
282
+ />
283
+ </ div >
285
284
</ div >
286
- */ }
287
-
288
- < h3 className = "font-bold mb-2 py-2 heading-xl" > Remove This Property</ h3 >
289
- < p >
290
- If you would like to request that we remove this property from the
291
- dashboard, please see our{ " " }
292
- < a href = "/request-removal" className = "link" >
293
- Request Removal page
294
- </ a >
295
- .
296
- </ p >
297
285
</ div >
298
286
) ;
299
287
} ;
0 commit comments