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

Commit b3e1db3

Browse files
authored
Add link to blog
1 parent 6bd5b86 commit b3e1db3

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

frontend/public/locales/en/common.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
"title": "Useful links",
4242
"wiki": "Wiki",
4343
"forum": "Forum",
44-
"snapshot": "Snapshot"
44+
"snapshot": "Snapshot",
45+
"blog": "Blog"
4546
},
4647
"socialLinkLabel": "Opens the Developer DAO {{platform}} in the current tab"
4748
}

frontend/src/pages/index.tsx

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { FaDiscord, FaGithub, FaTwitter } from 'react-icons/fa';
2323
import { GiCrownedHeart } from 'react-icons/gi';
2424
import Image from 'next/image';
2525
import { useTranslation } from 'react-i18next';
26-
import DeveloperDaoLogo from "../components/Logo"
26+
import DeveloperDaoLogo from '../components/Logo';
2727

2828
export default function IndexPage() {
2929
const { t } = useTranslation();
@@ -110,9 +110,22 @@ export default function IndexPage() {
110110
{t('links.title')}
111111
</Heading>
112112
<UnorderedList spacing={3}>
113-
<ListItem><a href="https://developerdao.notion.site/developerdao/Developer-DAO-Wiki-eff4dcb00bef46fbaa93e9e4cf940e2e">{t('links.wiki')}</a></ListItem>
114-
<ListItem><a href="https://forum.developerdao.com">{t('links.forum')}</a></ListItem>
115-
<ListItem><a href="https://snapshot.org/#/devdao.eth">{t('links.snapshot')}</a></ListItem>
113+
<ListItem>
114+
<a href="https://developerdao.notion.site/developerdao/Developer-DAO-Wiki-eff4dcb00bef46fbaa93e9e4cf940e2e">
115+
{t('links.wiki')}
116+
</a>
117+
</ListItem>
118+
<ListItem>
119+
<a href="https://forum.developerdao.com">{t('links.forum')}</a>
120+
</ListItem>
121+
<ListItem>
122+
<a href="https://snapshot.org/#/devdao.eth">
123+
{t('links.snapshot')}
124+
</a>
125+
</ListItem>
126+
<ListItem>
127+
<a href="https://blog.developerdao.com/">{t('links.blog')}</a>
128+
</ListItem>
116129
</UnorderedList>
117130
</Stack>
118131
</Stack>

0 commit comments

Comments
 (0)