Skip to content

Commit

Permalink
fix(app-lite): update footer links
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewklau committed Nov 9, 2024
1 parent 7480a15 commit 722b4a9
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions apps/app-lite/src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,32 +1,24 @@
import { useNetworkStore } from '@/stores/network';

import Github from './Icons/Github';

const Footer = () => {
const network = useNetworkStore((state) => state.network);

return (
<div className="bg-bottom-right">
<div className="bg-bottom-left">
<div className="container mx-auto px-3 pb-16">
<div className="flex justify-between border-t border-border-body">
<div className="font-light text-xs text-text-body pb-1 pt-6 text-center">
Powered by{' '}
Built on BOS by {' '}
<a
className="text-primary"
href={`${
network === 'testnet'
? 'https://testnet.nearblocks.io/'
: 'https://nearblocks.io'
}`}
href="https://nearblocks.io"
target="_blank"
>
NearBlocks.io
NearBlocks
</a>
</div>
<a
className="pb-1 pt-5"
href="https://github.com/Nearblocks"
href="https://github.com/Nearblocks/nearblocks/tree/main/apps/app-lite"
rel="noreferrer nofollow noopener"
target="_blank"
>
Expand Down

0 comments on commit 722b4a9

Please sign in to comment.