Skip to content

Commit 569b6eb

Browse files
authored
Merge pull request #143 from Developer-DAO/add/content-license
Add Creative Commons license for all site content
2 parents 2892834 + 2557d2f commit 569b6eb

File tree

3 files changed

+40
-4
lines changed

3 files changed

+40
-4
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Developer DAO
3+
Copyright (c) 2022 Developer DAO Foundation
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
## Developer DAO Academy
22

33
`Developer DAO Academy` is an open-source education platform created by the
4-
Developer DAO.
4+
Developer DAO Foundation.
55

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

88
Find us on Twitter at <https://twitter.com/devdao_academy>.
99

1010
![Academy Homepage Screenshot](./public/landing-page-screenshot.png)
1111

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+
1220
## How do I get started?
1321

1422
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
108116

109117
**For Windows Users**
110118

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.
112121

113122
## Grabbing latest version of the code
114123

components/footer/Footer.tsx

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default function Footer() {
2525
justify={{ base: 'center', md: 'space-between' }}
2626
align={{ base: 'center', md: 'center' }}
2727
>
28-
<Text>Developer DAO - {new Date().getFullYear()}</Text>
28+
<Text>Developer DAO Foundation © {new Date().getFullYear()}</Text>
2929
<Stack direction={'row'} spacing={3}>
3030
<NextLink
3131
href={
@@ -63,6 +63,33 @@ export default function Footer() {
6363
</SocialButton>
6464
</Stack>
6565
</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>
6693
</Box>
6794
)
6895
}

0 commit comments

Comments
 (0)