File tree Expand file tree Collapse file tree 3 files changed +40
-4
lines changed Expand file tree Collapse file tree 3 files changed +40
-4
lines changed Original file line number Diff line number Diff line change 1
1
MIT License
2
2
3
- Copyright (c) 2022 Developer DAO
3
+ Copyright (c) 2022 Developer DAO Foundation
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 1
1
## Developer DAO Academy
2
2
3
3
` Developer DAO Academy ` is an open-source education platform created by the
4
- Developer DAO.
4
+ Developer DAO Foundation .
5
5
6
6
Live site is at < https://academy.developerdao.com > .
7
7
8
8
Find us on Twitter at < https://twitter.com/devdao_academy > .
9
9
10
10
![ Academy Homepage Screenshot] ( ./public/landing-page-screenshot.png )
11
11
12
+ ## What license applies to this site's content and code?
13
+
14
+ - All Developer DAO Academy website content © 2022 by Developer DAO Foundation
15
+ licensed under
16
+ [ Attribution-NonCommercial 4.0 International] ( http://creativecommons.org/licenses/by-nc/4.0/ ) .
17
+ - Developer DAO Academy website code © 2022 by Developer DAO Foundation licensed
18
+ under [ MIT] ( ./LICENSE ) .
19
+
12
20
## How do I get started?
13
21
14
22
Please read our [ CONTRIBUTING Guide] ( CONTRIBUTING.md ) to get started. We ask
@@ -108,7 +116,8 @@ minimum requirements, you can start using it following this
108
116
109
117
** For Windows Users**
110
118
111
- You may run into setup problems if using Windows Powershell. We suggest you use WSL.
119
+ You may run into setup problems if using Windows Powershell. We suggest you use
120
+ WSL.
112
121
113
122
## Grabbing latest version of the code
114
123
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export default function Footer() {
25
25
justify = { { base : 'center' , md : 'space-between' } }
26
26
align = { { base : 'center' , md : 'center' } }
27
27
>
28
- < Text > Developer DAO - { new Date ( ) . getFullYear ( ) } </ Text >
28
+ < Text > Developer DAO Foundation © { new Date ( ) . getFullYear ( ) } </ Text >
29
29
< Stack direction = { 'row' } spacing = { 3 } >
30
30
< NextLink
31
31
href = {
@@ -63,6 +63,33 @@ export default function Footer() {
63
63
</ SocialButton >
64
64
</ Stack >
65
65
</ Container >
66
+
67
+ < Container maxW = { '6xl' } py = { 4 } centerContent >
68
+ < Text align = "center" >
69
+ Website content licensed under{ ' ' }
70
+ < NextLink
71
+ href = { 'http://creativecommons.org/licenses/by-nc/4.0/' }
72
+ passHref
73
+ >
74
+ < Link isExternal textDecoration = "underline" >
75
+ CC BY-NC 4.0
76
+ </ Link >
77
+ </ NextLink >
78
+ .
79
+ </ Text >
80
+ < Text >
81
+ Website code is licensed under{ ' ' }
82
+ < NextLink
83
+ href = { 'https://github.com/Developer-DAO/academy/blob/main/LICENSE' }
84
+ passHref
85
+ >
86
+ < Link isExternal textDecoration = "underline" >
87
+ MIT
88
+ </ Link >
89
+ </ NextLink >
90
+ .
91
+ </ Text >
92
+ </ Container >
66
93
</ Box >
67
94
)
68
95
}
You can’t perform that action at this time.
0 commit comments