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.
Adds a resources page with the general outline and strings that we currently have based on: https://docs.google.com/document/d/16XULtYdy1XJ9aBBty-BlQe8nYbQlJ-s1w20-t8CrcJU/edit
- Loading branch information
Gabe Benjamin
committed
Nov 16, 2021
1 parent
3963bbe
commit 32726cc
Showing
6 changed files
with
94 additions
and
5 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