Sign in
Create a login experience tailor-made for your app. Add your wallets of choice, enable web2 sign-in options and create a modal that fits your brand.
Embed Component
Inline component to connect to various wallets.
Use this to create your own full screen login page.
import { createThirdwebClient } from "thirdweb";
import { ConnectEmbed } from "thirdweb/react";
const THIRDWEB_CLIENT = createThirdwebClient({
clientId: "<YOUR_CLIENT_ID>",
});
function App() {
return <ConnectEmbed client={THIRDWEB_CLIENT} />;
}