forked from bloom-housing/bloom
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #770 from CityOfDetroit/resources-page
Add resources page
- Loading branch information
Showing
6 changed files
with
93 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { PageHeader, t } from "@bloom-housing/ui-components" | ||
import Layout from "../layouts/application" | ||
|
||
const Feedback = () => { | ||
const pageTitle = <>{t("pageTitle.resources")}</> | ||
|
||
return ( | ||
<Layout> | ||
<PageHeader title={pageTitle} inverse /> | ||
<div className="px-5 max-w-5xl md:m-auto"> | ||
<p className="mt-8">{t("resources.body1")}</p> | ||
<div className="mt-8"> | ||
<h2>{t("resources.evictionAssistance")}</h2> | ||
</div> | ||
<div className="mt-8"> | ||
<h2>{t("resources.detroitHousingNetwork")}</h2> | ||
<p> | ||
{t("resources.detroitHousingNetworkBody")}{" "} | ||
{/* It isn't ideal to make the url separate from the translated text but polyglot | ||
doesn't support inserting a tags into a translation */} | ||
<a href="https://detroithousingnetwork.org">https://detroithousingnetwork.org</a> | ||
</p> | ||
</div> | ||
<div className="mt-8"> | ||
<h2>{t("resources.utilityAssistance")}</h2> | ||
</div> | ||
<div className="mt-8"> | ||
<h2>{t("resources.homelessnessServices")}</h2> | ||
</div> | ||
<div className="mt-8"> | ||
<h2>{t("resources.detroitLandBankAuthority")}</h2> | ||
</div> | ||
<div className="my-8"> | ||
<h2>{t("resources.homeRepairResources")}</h2> | ||
</div> | ||
</div> | ||
</Layout> | ||
) | ||
} | ||
|
||
export default Feedback |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters