Skip to content

Commit

Permalink
base updates (#2383)
Browse files Browse the repository at this point in the history
* add retire on base button, emphasized text

* Update base url

Co-authored-by: Atmosfearful <[email protected]>

---------

Co-authored-by: Atmosfearful <[email protected]>
  • Loading branch information
0xMakka and Atmosfearful authored Jul 30, 2024
1 parent d9904c9 commit 488a38d
Show file tree
Hide file tree
Showing 6 changed files with 1,857 additions and 1,398 deletions.
23 changes: 16 additions & 7 deletions app/components/NavMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,13 +209,22 @@ export const NavMenu: FC<Props> = (props) => {
</div>
)}
<div className="navFooter">
<ButtonPrimary
target="_blank"
href={SQUID_ROUTER_URL}
className={styles.bridgeButton}
icon={<BaseLogo className={styles.baseIcon} />}
label={<Trans>Bridge to Base</Trans>}
/>
<div className={styles.baseButtons}>
<ButtonPrimary
target="_blank"
href={SQUID_ROUTER_URL}
className={styles.baseButton}
icon={<BaseLogo className={styles.baseIcon} />}
label={<Trans>Bridge to Base</Trans>}
/>
<ButtonPrimary
target="_blank"
href="https://base.klimadao.finance"
className={styles.baseButton}
icon={<BaseLogo className={styles.baseIcon} />}
label={<Trans>Retire on Base</Trans>}
/>
</div>
<div className="hr" />
<div className="navFooter_buttons">
<A className="navFooter_button" href={urls.twitter}>
Expand Down
10 changes: 9 additions & 1 deletion app/components/NavMenu/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,15 @@ export const container = css`
}
`;

export const bridgeButton = css`
export const baseButtons = css`
gap: 1.6rem;
display: flex;
flex-direction: column;
justify-content: center;
margin-top: 2.4rem;
`;

export const baseButton = css`
padding: 0 1.2rem;
color: white !important;
background-color: #0052ff; // base brand color
Expand Down
Loading

0 comments on commit 488a38d

Please sign in to comment.