-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
35 additions
and
0 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
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,32 @@ | ||
import React from 'react'; | ||
import { H1, LinkStyles, ParLg, SingleColumnLayout } from '@daohaus/ui'; | ||
import styled from 'styled-components'; | ||
|
||
const StyledExternalLink = styled.a` | ||
${LinkStyles}; | ||
`; | ||
|
||
const Support: React.FC = () => { | ||
return ( | ||
<SingleColumnLayout> | ||
<H1>Support</H1> | ||
<ParLg> | ||
If you have any questions there is a DIN DEV topic to post feedback/questions and find articles and videos. | ||
|
||
</ParLg> | ||
<ParLg> | ||
<StyledExternalLink href={"https://dinhaus.github.io/din-admin/#/molochv3/0xa/0xa0c536c4696f880cd61fc227662d8008893ab822/articles/0xf0c696f7dd7dc1700c1f4ec0f60151f362cd0fef2dca2bbe6f5153034363a8db"} target="_blank"> | ||
Getting Started | ||
</StyledExternalLink> | ||
</ParLg> | ||
<ParLg> | ||
<StyledExternalLink href={"https://dinhaus.github.io/din-admin/#/molochv3/0xa/0xa0c536c4696f880cd61fc227662d8008893ab822/articles"} target="_blank"> | ||
DIN DEV Feed | ||
</StyledExternalLink> | ||
</ParLg> | ||
|
||
</SingleColumnLayout> | ||
); | ||
}; | ||
|
||
export default Support; |