Playground

ConnectEmbed

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.

Code
import { createThirdwebClient } from "thirdweb";
import { ConnectEmbed } from "thirdweb/react";

const thirdwebClient = createThirdwebClient({
  clientId: "<YOUR_CLIENT_ID>",
});

function App() {
  return <ConnectEmbed client={thirdwebClient} />;
}
Preview