-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: create Sign Up Copy * fix: style fix * fix: reinstate success dto * fix: update icon margin --------- Co-authored-by: ColinBuyck <[email protected]> Co-authored-by: cliu02 <[email protected]>
- Loading branch information
1 parent
110d220
commit 615e07b
Showing
6 changed files
with
301 additions
and
214 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
16 changes: 16 additions & 0 deletions
16
sites/public/src/components/account/SignUpBenefitsHeadingGroup.tsx
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,16 @@ | ||
import { t } from "@bloom-housing/ui-components" | ||
import { HeadingGroup } from "@bloom-housing/ui-seeds" | ||
|
||
const SignUpBenefitsHeadingGroup = (props: { mobileView: boolean }) => { | ||
const classNames = props.mobileView ? "py-6 px-4" : "" | ||
return ( | ||
<HeadingGroup | ||
heading={t("account.signUpSaveTime.title")} | ||
subheading={t("account.signUpSaveTime.subTitle")} | ||
size="2xl" | ||
className={classNames} | ||
/> | ||
) | ||
} | ||
|
||
export default SignUpBenefitsHeadingGroup |
Oops, something went wrong.