Full-height workspace picker listing organizations with logo initials, member details, and a create-workspace row, plus a signed-in-as footer. Perfect for multi-tenant apps after sign-in.
A full-height, centered card that lists workspaces as clickable rows (each with an uppercase logo-initials tile, name, and detail line, plus a hover chevron that nudges right), followed by an optional dashed "create a new workspace" row and a "signed in as" footer with a sign-out link.
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.
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
npx shadcn add "https://ui.beste.co/r/auth36?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/auth36?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/auth36.tsx.
The installed file exports auth36Demo alongside the block: the exact props behind the preview above. Spread it to get a working workspace picker in one line.
import { Auth36, auth36Demo } from "@/components/beste/block/auth36";
export default function Page() {
return <Auth36 {...auth36Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Auth36 } from "@/components/beste/block/auth36";
export default function Page() {
return (
<Auth36
heading="Choose a workspace"
description="Select a workspace to continue."
workspaces={[
{ name: "Acme Inc.", detail: "12 members", logoText: "AC", href: "/w/acme" },
{ name: "Northwind", detail: "Owner · 4 members", logoText: "NW", href: "/w/northwind" },
]}
createWorkspace={{ label: "Create a new workspace", href: "/w/new" }}
account={{
signedInLabel: "Signed in as",
email: "jane@example.com",
signOutLabel: "Sign out",
signOutHref: "/logout",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
heading | string | – | Centered h1 above the card; omitted entirely when falsy |
description | string | – | Muted paragraph under the heading; omitted entirely when falsy |
workspaces | Workspace[] | [] | Rows rendered as links in the divided list |
createWorkspace | { label: string; href: string } | – | Optional dashed "create" row appended after the list |
account | { signedInLabel: string; email: string; signOutLabel: string; signOutHref: string } | – | Optional footer line with a sign-out link |
className | string | – | Extra classes for the outer <section> |
type Workspace = {
name: string;
detail: string;
logoText: string;
href?: string;
};next/link, so navigation is purely href-driven; there are no onClick handlers or selection state anywhere in the block.href falls back to "#", meaning that row links to the current page rather than being disabled.index, not by a stable id, so reordering workspaces can confuse React's reconciliation.logoText is rendered verbatim inside a fixed size-10 tile with uppercase styling; nothing truncates or caps it, so pass short initials (long strings overflow the tile).createWorkspace row and the entire account footer are conditionally rendered: pass neither and the card shows only the workspace list with no footer.translate-x-0.5 on hover via the group/auth36 scope; the create row uses a dashed Plus tile instead and has no chevron.min-h-screen and vertically centers its max-w-md content, so it is designed to own the full viewport as a post-sign-in interstitial rather than sit inline in a page.auth7
Full-height account picker that lists saved accounts with avatars, names, and emails, plus a use-another-account row. Perfect for multi-account apps, SSO hubs, and returning-user sign-in.
auth25
Full-height username picker with a prefixed input group, a live availability indicator, suggestion chips when a handle is taken, and a submit button that unlocks only when the name is free. Perfect for onboarding handle selection.
auth14
Full-height single sign-on screen with a work-email field, a continue-with-SSO button, and Google and Microsoft providers below a divider. Perfect for B2B and enterprise apps that authenticate via identity providers.
auth29
Full-height terminal-style sign-in rendered as a CLI window with a command prompt, a monospace email input, and a send-link action. Perfect for developer tools and CLI-first products.
auth21
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.
auth11
Full-height onboarding step where the user picks an account type from selectable radio cards with icons and descriptions, then continues. Perfect for tailoring sign-up flows by persona or plan.