Skip to content

Commit

Permalink
Merge pull request #422 from skalenetwork/develop
Browse files Browse the repository at this point in the history
develop to beta - minor fix
  • Loading branch information
dmytrotkk authored Nov 7, 2024
2 parents 1bad02b + 0347f8a commit 47c8b80
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/SkDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ import HomeOutlinedIcon from '@mui/icons-material/HomeOutlined'
import GroupOutlinedIcon from '@mui/icons-material/GroupOutlined'
import AddCardRoundedIcon from '@mui/icons-material/AddCardRounded'
import LinkRoundedIcon from '@mui/icons-material/LinkRounded'
import ExploreOutlinedIcon from '@mui/icons-material/ExploreOutlined'

import { GET_STARTED_URL } from './core/constants'

const drawerWidth = 220

Expand Down Expand Up @@ -51,6 +54,21 @@ export default function SkDrawer() {
</ListItemButton>
</Link>
</ListItem>
<ListItem>
<a
className="undec fullW"
target="_blank"
href={GET_STARTED_URL}
rel="noreferrer"
>
<ListItemButton className={cls(cmn.pPrim)}>
<ListItemIcon>
<ExploreOutlinedIcon />
</ListItemIcon>
<ListItemText primary="Get Started" />
</ListItemButton>
</a>
</ListItem>
</List>
<h4 className={cls(cmn.pSec, cmn.p, cmn.p4, cmn.mtop10, cmn.mleft20)}>Transfer</h4>
<List>
Expand Down
1 change: 1 addition & 0 deletions src/core/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ export const SKALE_SOCIAL_LINKS = {
}

export const DEFAULT_SWELL_URL = 'https://swell.skale.space/'
export const GET_STARTED_URL = 'https://skale.space/get-started-on-skale'

export const DEFAULT_MIN_SFUEL_WEI = 100000000000000
export const SFUEL_CHECK_INTERVAL = 10000
Expand Down

0 comments on commit 47c8b80

Please sign in to comment.