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

Add Get Started URL #420

Merged
merged 1 commit into from
Nov 7, 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
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
Loading