-
Notifications
You must be signed in to change notification settings - Fork 4
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 #58 from galaxyproject/fran/56-questions
feat: the return of "your questions answered!" (#56)
- Loading branch information
Showing
3 changed files
with
59 additions
and
1 deletion.
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
20 changes: 19 additions & 1 deletion
20
app/components/Home/components/Section/components/SectionHelp/sectionHelp.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 |
---|---|---|
@@ -1,10 +1,28 @@ | ||
import { Link as DXLink } from "@databiosphere/findable-ui/lib/components/Links/components/Link/link"; | ||
import { Questions } from "./components/Questions/questions"; | ||
import { Section, SectionLayout } from "./sectionHelp.styles"; | ||
import { | ||
Headline, | ||
Section, | ||
SectionLayout, | ||
StyledSectionSubTitle, | ||
StyledSectionTitle, | ||
} from "./sectionHelp.styles"; | ||
|
||
export const SectionHelp = (): JSX.Element => { | ||
return ( | ||
<Section> | ||
<SectionLayout> | ||
<Headline> | ||
<StyledSectionTitle>Your questions, answered</StyledSectionTitle> | ||
<StyledSectionSubTitle> | ||
If you need further assistance, feel free to reach out to us at{" "} | ||
<DXLink | ||
label="[email protected]" | ||
url="mailto:[email protected]" | ||
/> | ||
. We're here to help! | ||
</StyledSectionSubTitle> | ||
</Headline> | ||
<Questions /> | ||
</SectionLayout> | ||
</Section> | ||
|