Connect Wallet

Full-height web3 sign-in that lists wallet providers with icons, details, and a detected badge, plus a what-is-a-wallet helper link. Perfect for crypto and decentralized app authentication.

PRO

Auth37: Connect Wallet

A full-height, centered web3 sign-in card that renders a heading and description above a bordered list of wallet providers, each row showing an icon tile, name, optional secondary badge, an optional detail line, and a chevron that nudges right on hover, followed by an optional helper link and a footer disclaimer line.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/auth37?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/auth37?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/auth37.tsx, plus the badge shadcn/ui primitive it uses for the per-wallet "Detected" style tag.

Quick start

The installed file exports auth37Demo alongside the block: the exact props behind the preview above. Spread it to get a working wallet-connect screen in one line.

tsx
import { Auth37, auth37Demo } from "@/components/beste/block/auth37";

export default function Page() {
  return <Auth37 {...auth37Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { QrCode, Wallet } from "lucide-react";
import { Auth37 } from "@/components/beste/block/auth37";

export default function Page() {
  return (
    <Auth37
      heading="Connect your wallet"
      description="Choose how you'd like to connect to continue."
      wallets={[
        {
          name: "MetaMask",
          icon: <Wallet className="size-5" />,
          detail: "Browser extension",
          badge: "Detected",
          href: "https://example.com/connect/metamask",
        },
        {
          name: "WalletConnect",
          icon: <QrCode className="size-5" />,
          detail: "Scan with any wallet",
          href: "https://example.com/connect/walletconnect",
        },
      ]}
      helpLink={{ label: "What is a wallet?", href: "/help/wallets" }}
      labels={{ footer: "By connecting, you agree to the Terms and Privacy Policy." }}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringCentered title above the list; hidden when omitted
descriptionstringMuted subtitle under the heading; hidden when omitted
walletsWalletOption[][]Provider rows rendered in the bordered list
helpLink{ label: string; href: string }Optional centered link below the list
labels{ footer?: string }{}Optional footer disclaimer text
classNamestringExtra classes for the outer <section>
ts
type WalletOption = {
  name: string;
  icon: React.ReactNode;
  detail?: string;
  badge?: string;
  href?: string;
};

Behavior notes

More Auth blocks

View all Auth
PRO

auth21

Passkey Sign In

Full-height passwordless sign-in screen with a fingerprint icon, a continue-with-passkey button, and a password fallback below a divider. Perfect for WebAuthn and biometric authentication flows.

FREE

auth6

Magic Link Sign In

Full-height passwordless sign-in screen with a single email field, a send-magic-link button, a helper note, and social login providers below a divider. Perfect for passwordless and email-link authentication flows.

FREE

auth13

Centered Sign Up Card

Full-height centered registration card with social providers, name, email, and password fields (with show/hide), a terms checkbox, and a sign-in link. Perfect for SaaS sign-up pages that don't need a split layout.

FREE

auth1

Centered Sign In Card

Full-height centered sign-in screen with social login providers, email and password fields, a show/hide password toggle, remember-me checkbox, and forgot-password link. Perfect for SaaS apps, dashboards, and member portals.

PRO

auth27

Sign-In Error

Full-height authentication error screen with a warning icon, an explanation, an optional error code, and try-again, back, and contact-support actions. Perfect for failed sign-in and OAuth callback errors.

PRO

auth17

Signed Out Confirmation

Full-height signed-out screen with a centered icon, a heading and message, a sign-back-in button, and a return-home link. Perfect for logout confirmations and expired-session pages.