Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#63 Update copyright notice and add authors file #142

Merged
merged 2 commits into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Danilo Tuler tuler@pobox.com
Bruno Menezes brunodmenezes@gmail.com
Dandhee Damarrama dandhee.damarrama@gmail.com
Dimitar Angelkov dimitar@productiv-e.com
Neven Dyulgerov neven@productiv-e.com
25 changes: 23 additions & 2 deletions packages/ui/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,29 @@ const Footer: FC<FooterProps> = (props) => {
</Grid>
<Box py={4}>
<Text opacity={0.6}>
© {new Date().getFullYear()} Cartesi Foundation Ltd. All
rights reserved
(c) Cartesi and individual authors (see{' '}
<Link
href="https://github.com/cartesi/explorer/blob/main/AUTHORS"
isExternal
_hover={{
color: linkHoverColor,
}}
>
AUTHORS
</Link>
)
<br />
SPDX-License-Identifier: Apache-2.0 (see{' '}
<Link
href="https://github.com/cartesi/explorer/blob/main/LICENSE"
isExternal
_hover={{
color: linkHoverColor,
}}
>
LICENSE
</Link>
)
</Text>
</Box>
</Box>
Expand Down