Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit cc3e1fe

Browse files
refactor: add useful links section
Co-authored-by: manny <[email protected]>
1 parent 8a1269a commit cc3e1fe

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

frontend/public/locales/en/common.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,11 @@
3636
"title": "How do I join?",
3737
"body": "Membership is temporarily closed but will be open again soon. Follow us on Twitter for updates!"
3838
},
39+
"links": {
40+
"title": "Useful links",
41+
"wiki": "Wiki",
42+
"forum": "Forum",
43+
"snapshot": "Snapshot"
44+
},
3945
"socialLinkLabel": "Opens the Developer DAO {{platform}} in the current tab"
4046
}

frontend/src/pages/index.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,17 @@ export default function IndexPage() {
103103
</Heading>
104104
<Text>{t('membership.body')}</Text>
105105
</Stack>
106+
107+
<Stack spacing={6}>
108+
<Heading as="h2" fontSize="lg">
109+
{t('links.title')}
110+
</Heading>
111+
<UnorderedList spacing={3}>
112+
<ListItem><a href="https://developerdao.notion.site/developerdao/Developer-DAO-Wiki-eff4dcb00bef46fbaa93e9e4cf940e2e">{t('links.wiki')}</a></ListItem>
113+
<ListItem><a href="https://forum.developerdao.com">{t('links.forum')}</a></ListItem>
114+
<ListItem><a href="https://snapshot.org/#/devdao.eth">{t('links.snapshot')}</a></ListItem>
115+
</UnorderedList>
116+
</Stack>
106117
</Stack>
107118

108119
<VStack spacing={4}>

0 commit comments

Comments
 (0)