File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 10
10
11
11
Once you're a member, to contribute code or content:
12
12
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)
14
14
- setup the project by visiting our [ README.md] ( ./README.md )
15
15
- add code or content by forking this repo. You can then submit PRs for review.
16
16
- peruse our [ issues] ( https://github.com/Developer-DAO/academy/issues ) and
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ Developer DAO.
5
5
6
6
Live site is at < https://academy.developerdao.com > .
7
7
8
+ Find us on Twitter at < https://twitter.com/devdao_academy > .
9
+
8
10
![ Academy Homepage Screenshot] ( ./public/landing-page-screenshot.png )
9
11
10
12
## How do I get started?
Original file line number Diff line number Diff line change @@ -3,8 +3,10 @@ import {
3
3
Container ,
4
4
Stack ,
5
5
Text ,
6
+ Link ,
6
7
useColorModeValue ,
7
8
} from '@chakra-ui/react'
9
+ import NextLink from 'next/link'
8
10
import { FaTwitter , FaGithub } from 'react-icons/fa'
9
11
import { SocialButton } from './SocialButton'
10
12
@@ -38,6 +40,30 @@ export default function Footer() {
38
40
< FaGithub />
39
41
</ SocialButton >
40
42
</ 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 >
41
67
</ Container >
42
68
</ Box >
43
69
)
You can’t perform that action at this time.
0 commit comments