Skip to content
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
2 changes: 1 addition & 1 deletion docs/src/lib/components/FeaturesSection.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
/>
<FeatureCard
title={'Multiple Chain Support'}
text={'Allow users to switch between chains/networks with ease.'}
text={'The best connect wallet button for allowing users to switch between chains/networks with ease.'}
/>
</div>
</Container>
Expand Down
6 changes: 2 additions & 4 deletions docs/src/lib/components/HeroSection.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@

<section style="background-image: url({heroBg});">
<div class="textblock">
<div class="title">Web3-Onboard</div>
<div class="title">{"Web3-Onboard"}</div>
<div class="text">
Open-source, framework-agnostic JavaScript library to onboard users to web3 apps. Help your
users transact with ease by enabling wallet connection, real-time transaction states, and
more.
{"Open-source, framework-agnostic JavaScript library to onboard users to web3 apps. Help your users transact with ease by enabling wallet connection, real-time transaction states, and more."}
</div>
<div>
<CodeBlock>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/routes/__layout-homepage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
]
}

const title = 'Web3-Onboard | The easy way to connect web3 users to dapps'
const title = 'Web3-Onboard | Framework-agnostic Web3 Connect Wallet Button'
const metadescription =
'Open-source, framework-agnostic JavaScript library to onboard users to web3 apps. Help your users transact with ease by enabling wallet connection, real-time transaction states, and more.'
const url = 'https://onboard.blocknative.com/'
Expand Down
6 changes: 3 additions & 3 deletions docs/src/routes/examples/connect-wallet.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: Connect Wallet Button Example
description: Learn how to create a connect wallet button for your dapp with Web3-Onboard. For this example, we are going to use the injected wallets module.
title: Connect Wallet Example
description: Learn how to connect a wallet to your dapp with Web3-Onboard. For this example, we are going to use the injected wallets module.
---

<script>
import { ConnectWallet, ReactConnectWallet, SvelteConnectWallet } from '$lib/components'

const frameworks = ['react', 'svelte']
</script>

Expand Down