Skip to content

Commit fba1083

Browse files
authored
Merge pull request #140 from Developer-DAO/add/feedback-in-footer
Add Feedback and Contribute links to footer
2 parents 2ee0bee + fdfbf7d commit fba1083

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-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: 24 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

@@ -24,6 +26,28 @@ export default function Footer() {
2426
align={{ base: 'center', md: 'center' }}
2527
>
2628
<Text>Developer DAO - {new Date().getFullYear()}</Text>
29+
<Stack direction={'row'} spacing={3}>
30+
<NextLink
31+
href={
32+
'https://github.com/Developer-DAO/academy/issues/new?assignees=&labels=needs+triage%2C+bug&template=bug_report.md&title='
33+
}
34+
passHref
35+
>
36+
<Link isExternal textDecoration="underline">
37+
Feedback
38+
</Link>
39+
</NextLink>
40+
<NextLink
41+
href={
42+
'https://github.com/Developer-DAO/academy/blob/main/CONTRIBUTING.md'
43+
}
44+
passHref
45+
>
46+
<Link isExternal textDecoration="underline">
47+
Contribute
48+
</Link>
49+
</NextLink>
50+
</Stack>
2751
<Stack direction={'row'} spacing={6}>
2852
<SocialButton
2953
label={'Twitter'}

0 commit comments

Comments
 (0)