Skip to content

Auth Welcome

First-run profile setup: big live avatar preview, grid of pastel emoji avatars (native radios), display-name field with preview chip and a “Let’s go” button enabled once named.

soft-flat/layout/auth-welcome
Open ↗

Source

"use client";

import { useId, useState } from "react";
import { cn } from "@/lib/utils";

export interface AuthWelcomeProps {
  avatars?: string[];
  onDone?: (v: { name: string; avatar: string }) => void;
  className?: string;
}

const TONES = ["bg-da-accent", "bg-da-secondary", "bg-da-primary/20", "bg-da-warning/40"];

/** First-run profile setup: pick an emoji avatar from a grid of pastel circles (radio), type a display name, live preview chip, and a “Let’s go” button. */
export function AuthWelcome({ avatars = ["🦊", "🐻", "🐼", "🦉", "🐸", "🐙", "🦄", "🐝"], onDone, className }: AuthWelcomeProps) {
  const id = useId();
  const [avatar, setAvatar] = useState(avatars[0] ?? "🦊");
  const [name, setName] = useState("");

  return (
    <div className={cn("grid min-h-dvh place-items-center bg-da-bg px-4 py-12 text-da-fg", className)}>
      <main className="w-full max-w-md rounded-[32px] bg-da-surface p-8 text-center shadow-da-lg">
        <p className="text-sm font-semibold text-da-primary">Step 2 of 2</p>
        <h1 className="mt-2 font-da-display text-3xl font-extrabold tracking-da-display">Say hi to your team!</h1>
        <p className="mt-1 text-da-muted-fg">Pick an avatar and the name they’ll see.</p>
        <div className="mt-6 flex justify-center">
          <span
            aria-hidden
            className="grid size-24 place-items-center rounded-full bg-da-primary/12 text-5xl transition-[scale] duration-(--da-duration) ease-da-emphasized"
            key={avatar}
          >
            <span className="transition-[scale] duration-(--da-duration-slow) ease-da-emphasized starting:scale-0">{avatar}</span>
          </span>
        </div>
        <fieldset className="mt-6">
          <legend className="sr-only">Choose an avatar</legend>
          <div className="grid grid-cols-4 gap-3">
            {avatars.map((a, i) => (
              <label
                key={a}
                className={cn(
                  "grid aspect-square cursor-pointer place-items-center rounded-full text-3xl transition-[scale,box-shadow] duration-(--da-duration) ease-da-emphasized has-focus-visible:ring-(length:--da-ring-width) has-focus-visible:ring-da-ring",
                  TONES[i % TONES.length],
                  avatar === a ? "scale-110 ring-3 ring-da-primary" : "hover:scale-105",
                )}
              >
                <input
                  type="radio"
                  name={`${id}-a`}
                  value={a}
                  checked={avatar === a}
                  onChange={() => setAvatar(a)}
                  className="sr-only"
                  aria-label={`Avatar ${i + 1}`}
                />
                <span aria-hidden>{a}</span>
              </label>
            ))}
          </div>
        </fieldset>
        <label htmlFor={`${id}-n`} className="mt-6 block text-left text-sm font-semibold">
          Display name
        </label>
        <input
          id={`${id}-n`}
          value={name}
          onChange={(e) => setName(e.target.value)}
          placeholder="Ana"
          maxLength={24}
          className="da-focus mt-1.5 h-12 w-full rounded-da-md bg-da-surface-2 px-4 text-[15px] placeholder:text-da-muted-fg focus:bg-da-input"
        />
        <p className="mt-4 text-sm text-da-muted-fg" aria-live="polite">
          Your teammates will see:{" "}
          <span className="inline-flex items-center gap-1.5 rounded-da-pill bg-da-surface-2 px-3 py-1 font-semibold text-da-fg">
            <span aria-hidden>{avatar}</span> {name || "Your name"}
          </span>
        </p>
        <button
          type="button"
          disabled={!name.trim()}
          onClick={() => onDone?.({ name: name.trim(), avatar })}
          className="da-focus da-transition mt-7 h-12 w-full rounded-da-pill bg-da-primary font-semibold text-da-primary-fg shadow-da-sm hover:-translate-y-0.5 disabled:opacity-50 disabled:hover:translate-y-0"
        >
          Let’s go 🚀
        </button>
      </main>
    </div>
  );
}

export default AuthWelcome;

modules/soft-flat/layout/auth-welcome/index.tsx

Props

PropTypeDefaultDescription
avatarsstring[]—Emoji choices.
onDone({ name, avatar }) => void—Handler.

Other auth screen variants in Soft Flat

Auth screen in other art directions

Auth Card

Centered login card on a dotted paper background: tilted wordmark sticker, ink title band, GitHub button, email + password with forgot link, error slot and a big pressable yellow submit.

BrutalistAuth screen

Auth Magic Link

Passwordless login split screen: blue product panel with staggered pipeline cards (desktop), huge uppercase headline, single email field and yellow send button, then a 'Check your inbox' state with open-mail and retry actions.

BrutalistAuth screen

Auth Screen

Split sign-in / sign-up page: form column with GitHub & Google buttons, email + password (show/hide), remember-me, error slot and pending state; yellow grid panel with a big customer quote on desktop.

BrutalistAuth screen

Auth Signup Steps

Three-step signup wizard: ruled step tabs (done in ink, current in yellow) fused to a card with account fields, team size and use-case tile choices, Back/Continue and a success state.

BrutalistAuth screen

Auth Floating

Sign-up screen: centered glass card (Google button, divider, email magic-link form with success state) surrounded on desktop by floating, bobbing glass preview cards and a gradient orb.

GlassAuth screen

Auth Onboarding

Three-step onboarding glass card: workspace name with URL preview, role radio chips, calendar connection buttons; gradient progress bar, back/continue and a finish screen.

GlassAuth screen

Auth Passkey

Passkey sign-in glass card: glowing gradient fingerprint orb, account email, ‘Sign in with passkey’ with waiting / success / error states and email-link or password fallbacks.

GlassAuth screen

Auth Screen

Centered 40px-blur glass panel over the mesh and two soft orbs: gradient logo, Google/Microsoft buttons, email + password (show/hide), forgot link, error slot, gradient pill submit. Sign-in and sign-up modes.

GlassAuth screen

Auth Screen

Centered passwordless login in three steps: provider choice (Google, email, SAML SSO) → email form → "check your email" confirmation. Faint indigo glow on top, legal footer.

MinimalAuth screen

Auth Split

Split sign-in screen: form on the left (email, password with reveal, remember me, error alert) and an always-dark brand panel with indigo glow, grid, customer quote and three stats on large screens.

MinimalAuth screen

Auth Sso

SSO-first sign-in card on a tinted page: key icon, Google / GitHub / Microsoft buttons, an ‘or use SAML SSO’ divider and work-email discovery with inline arrow submit, legal links below.

MinimalAuth screen

Auth Verify

Email verification screen: mail icon, six single-digit mono boxes (split 3 + 3) with auto-advance, paste, arrow/backspace navigation, auto-submit, error and success states and a resend countdown.

MinimalAuth screen

Auth Centered

Minimal centered sign-in with lots of air: logo, small title, two hairline-boxed fields stacked edge to edge, ink button, “or continue with” text links and a mono legal line at the very bottom.

Mono CleanAuth screen

Auth Magic

Passwordless: a huge “Enter your email” prompt with a single oversized underline input and ↵ button; after submit, a large confirmation with the address and a mono resend link.

Mono CleanAuth screen

Auth Screen

Split sign-in: the left half is an ink panel with a large statement and mono footer; the right half holds a minimal underline form (email, password), an ink button and text links. Panel hides on mobile.

Mono CleanAuth screen

Auth Steps

Three-step sign-up with an index header “01 / 03 — Your account” and segmented hairline progress; underline fields per step, Back text link and ink Continue; final step shows the site address preview.

Mono CleanAuth screen

Auth Screen

Centered sign-in card on a surface-2 page: logo, Google + SSO buttons, “or” divider, email/password (show/hide toggle, forgot link), remember me, blue submit, sign-up link and legal footer.

Neo CorporateAuth screen

Auth Split

Split sign-up page: form on the left (name, work email, company, password with live strength checklist), blue gradient panel on the right with benefits, a customer quote and compliance badges (panel hidden below lg).

Neo CorporateAuth screen

Auth Sso

Enterprise SSO sign-in: email-first step that detects the domain; SSO domains show the org + identity provider and a “Continue with Okta” button, others fall back to a password field.

Neo CorporateAuth screen

Auth Verify

Two-factor verification screen: shield icon, 6 separate digit boxes (auto-advance, backspace, paste support), error/success states, resend with 30s countdown and “use a recovery code” link.

Neo CorporateAuth screen

Auth Magic

Passwordless sign-in: one rounded email field and “Send me a link”, then a gentle sent state with an open-envelope in a sage circle, the address, resend and change-email links.

Organic SoftAuth screen

Auth Onboarding

Post-signup onboarding: two gentle steps (industry as pill radio cards, goals as check cards) with a leaf progress bar, back/continue pills and a warm “all set” finish.

Organic SoftAuth screen

Auth Screen

Centered sign-in on cream with two soft blobs behind a rounded card: serif welcome, filled inputs, password reveal, sage pill submit, Google alternative and a sign-up link.

Organic SoftAuth screen

Auth Split

Split sign-up: form on cream (name, email, company, team-size pills) and an arch-topped landscape illustration panel with sun and hills plus a quote card (hidden below lg).

Organic SoftAuth screen