Skip to main content

Custom Welcome Screen (wide screen)

On wide modal, a welcome screen is shown on the right side of the modal.

This screen can be customized in two ways

1. customize metadata

<ConnectWallet
welcomeScreen={{
title: "Your Title",
subtitle: "Your Subtitle",
img: {
src: "https://...",
width: 300,
height: 50,
},
}}
/>

2. Render custom component

<ConnectWallet
welcomeScreen={() => {
return <YourComponent />;
}}
/>