Skip to content

Commit

Permalink
Merge pull request #23 from Magickbase/optimize-footer
Browse files Browse the repository at this point in the history
feat: optimize footer
  • Loading branch information
WhiteMinds authored Oct 18, 2023
2 parents c709769 + 332d23f commit cfab7c2
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions packages/app/src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { ComponentProps, FC } from 'react'
import clsx from 'clsx'
import { useTranslation } from 'react-i18next'
import Link from 'next/link'
import styles from './index.module.scss'
import IconFullLogo from './full-logo.svg'
import { Contacts } from '../Contacts'
Expand Down Expand Up @@ -35,7 +36,9 @@ export const Footer: FC<FooterProps> = props => {
})}
>
<div className={styles.dot} />
{serviceStateText}
<Link href="https://status.magickbase.com/" target="_blank">
{serviceStateText}
</Link>
</div>

<Contacts className={styles.contacts} />
Expand All @@ -50,11 +53,19 @@ export const Footer: FC<FooterProps> = props => {
<LinkWithEffect href="https://docs.nervos.org/docs/basics/guides/crypto%20wallets/neuron">
{t('Neuron Wallet')}
</LinkWithEffect>
<LinkWithEffect href="https://explorer.nervos.org/">{t('CKB Explorer')}</LinkWithEffect>
<LinkWithEffect href="https://v1.gwscan.com/">{t('Godwoke Explorer')}</LinkWithEffect>
<LinkWithEffect href="https://github.com/Magickbase/blockscan">{t('Axon Explorer')}</LinkWithEffect>
<LinkWithEffect href="https://github.com/ckb-js/kuai">{t('Kuai')}</LinkWithEffect>
<LinkWithEffect href="https://github.com/nervosnetwork/ckb/wiki/Public-JSON-RPC-nodes">
<LinkWithEffect href="https://explorer.nervos.org/" target="_blank">
{t('CKB Explorer')}
</LinkWithEffect>
<LinkWithEffect href="https://v1.gwscan.com/" target="_blank">
{t('Godwoke Explorer')}
</LinkWithEffect>
<LinkWithEffect href="https://github.com/Magickbase/blockscan" target="_blank">
{t('Axon Explorer')}
</LinkWithEffect>
<LinkWithEffect href="https://github.com/ckb-js/kuai" target="_blank">
{t('Kuai')}
</LinkWithEffect>
<LinkWithEffect href="https://github.com/nervosnetwork/ckb/wiki/Public-JSON-RPC-nodes" target="_blank">
{t('Public Node')}
</LinkWithEffect>
</div>
Expand Down

1 comment on commit cfab7c2

@vercel
Copy link

@vercel vercel bot commented on cfab7c2 Oct 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.