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

chore: Update footer links to navigate to functional content. #147

Merged
merged 1 commit into from
Jan 10, 2024
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.7.1] - 2024-01-10

- Footer links were updated.

## [3.7.0] - 2023-09-20

- The Staking application got a new look and feel. Following the new brand colors.
Expand Down Expand Up @@ -356,7 +360,8 @@ Staking Pools

- First release

[unreleased]: https://github.com/cartesi/explorer/compare/v3.7.0...HEAD
[unreleased]: https://github.com/cartesi/explorer/compare/v3.7.1...HEAD
[3.7.1]: https://github.com/cartesi/explorer/compare/v3.7.1...v3.7.0
[3.7.0]: https://github.com/cartesi/explorer/compare/v3.7.0...v3.6.2
[3.6.2]: https://github.com/cartesi/explorer/compare/v3.6.1...v3.6.2
[3.6.1]: https://github.com/cartesi/explorer/compare/v3.6.0...v3.6.1
Expand Down
12 changes: 6 additions & 6 deletions apps/staking/src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
// PARTICULAR PURPOSE. See the GNU General Public License for more details.

import { FlexProps } from '@chakra-ui/react';
import { Layout, PageBody, PageHeader, PagePanel } from '@explorer/ui';
import React, { FC } from 'react';
import {
Expand All @@ -20,7 +21,6 @@ import {
useWorkerManagerContract,
} from '../services/contracts';
import SyncStatus from './SyncStatus';
import { FlexProps } from '@chakra-ui/react';

export { PageBody, PageHeader, PagePanel };

Expand Down Expand Up @@ -53,16 +53,16 @@ export const headerLinks = [

export const footerLinks = [
{
label: 'CTSI Reserve Mining',
href: 'https://cartesi.io/en/mine/',
label: 'Governance & Grants',
href: 'https://cartesi.io/governance/',
},
{
label: 'Audit Report',
href: 'https://github.com/cartesi/pos-dlib/raw/develop/Smart%20Contract%20Security%20Audit%20Report%20-%20Staking.pdf',
},
{
label: 'How to Run a Node',
href: 'https://medium.com/cartesi/running-a-node-and-staking-42523863970e',
href: 'https://docs.cartesi.io/earn-ctsi/run-node/',
},
];

Expand All @@ -77,10 +77,10 @@ export const footerSupport = [
},
{
label: 'FAQ',
href: 'https://github.com/cartesi/noether/wiki/FAQ',
href: 'https://docs.cartesi.io/earn-ctsi/staking-faq/',
},
{
label: 'Governance',
label: 'Governance Forum',
href: 'https://governance.cartesi.io/',
},
];
Expand Down