File tree Expand file tree Collapse file tree 3 files changed +27
-1
lines changed Expand file tree Collapse file tree 3 files changed +27
-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
@@ -24,6 +26,28 @@ export default function Footer() {
24
26
align = { { base : 'center' , md : 'center' } }
25
27
>
26
28
< 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 >
27
51
< Stack direction = { 'row' } spacing = { 6 } >
28
52
< SocialButton
29
53
label = { 'Twitter' }
You can’t perform that action at this time.
0 commit comments