Skip to content

Commit 36b387c

Browse files
committed
Add feedback links in footer. Update our Discord
channel name.
1 parent 2ee0bee commit 36b387c

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ post.
1010

1111
Once you're a member, to contribute code or content:
1212

13-
- please join us in the Developer DAO Discord (`#devdao-academy` channel)
13+
- please join us in the Developer DAO Discord (`#d_d-academy` channel)
1414
- setup the project by visiting our [README.md](./README.md)
1515
- add code or content by forking this repo. You can then submit PRs for review.
1616
- peruse our [issues](https://github.com/Developer-DAO/academy/issues) and

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Developer DAO.
55

66
Live site is at <https://academy.developerdao.com>.
77

8+
Find us on Twitter at <https://twitter.com/devdao_academy>.
9+
810
![Academy Homepage Screenshot](./public/landing-page-screenshot.png)
911

1012
## How do I get started?

components/footer/Footer.tsx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ import {
33
Container,
44
Stack,
55
Text,
6+
Link,
67
useColorModeValue,
78
} from '@chakra-ui/react'
9+
import NextLink from 'next/link'
810
import { FaTwitter, FaGithub } from 'react-icons/fa'
911
import { SocialButton } from './SocialButton'
1012

@@ -38,6 +40,30 @@ export default function Footer() {
3840
<FaGithub />
3941
</SocialButton>
4042
</Stack>
43+
<Box>
44+
<NextLink
45+
href={
46+
'https://github.com/Developer-DAO/academy/issues/new?assignees=&labels=needs+triage%2C+bug&template=bug_report.md&title='
47+
}
48+
passHref
49+
>
50+
<Link isExternal textDecoration="underline">
51+
Where to send feedback
52+
</Link>
53+
</NextLink>
54+
{'. '}
55+
<NextLink
56+
href={
57+
'https://github.com/Developer-DAO/academy/blob/main/CONTRIBUTING.md'
58+
}
59+
passHref
60+
>
61+
<Link isExternal textDecoration="underline">
62+
How to Contribute
63+
</Link>
64+
</NextLink>
65+
{'.'}
66+
</Box>
4167
</Container>
4268
</Box>
4369
)

0 commit comments

Comments
 (0)