Interest Tag Picker

Step 2 of 4

Interests

What topics interest you?

Pick at least 3 topics so we can personalize your feed and recommendations.

Technology

Business

Design

0 of 3+ selected

Skip for now
About this block

Interest Tag PickerPRO

Onboarding screen with a grid of selectable interest tags and chips for personalizing content recommendations. Perfect for content platforms, newsletters, and social apps.

Onboarding16: Interest Tag Picker

Onboarding screen that groups selectable interest tags under category headings and tracks how many are picked against a configurable minimum, unlocking the primary CTA only once that minimum is met.

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.

Upgrade Now

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/onboarding16?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/onboarding16.tsx and the badge and button shadcn/ui primitives it depends on.

Quick start

The installed file exports onboarding16Demo alongside the block: the exact props behind the preview above. Spread it to get a working interest picker in one line.

tsx
import { Onboarding16, onboarding16Demo } from "@/components/beste/block/onboarding16";

export default function OnboardingPage() {
  return <Onboarding16 {...onboarding16Demo} />;
}

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

tsx
import { Onboarding16 } from "@/components/beste/block/onboarding16";

export default function OnboardingPage() {
  return (
    <Onboarding16
      badge={{ label: "Interests", variant: "secondary" }}
      heading="What topics interest you?"
      description="Pick at least 2 topics so we can personalize your feed."
      minSelection={2}
      groups={[
        {
          title: "Technology",
          topics: [
            { id: "ai", label: "AI & Machine Learning" },
            { id: "web", label: "Web Development" },
          ],
        },
        {
          title: "Design",
          topics: [
            { id: "ux", label: "UX Design" },
            { id: "branding", label: "Branding" },
          ],
        },
      ]}
      primaryButton={{ label: "Continue", href: "/onboarding/step-3" }}
      secondaryButton={{ label: "Skip for now", href: "/dashboard" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small badge above the heading
headingstringMain headline
descriptionstringSupporting copy below the heading
groupsTopicGroup[][]Categorized groups of selectable topics
minSelectionnumber3Minimum topics required before the primary CTA unlocks
primaryButton{ label: string; href: string }Primary CTA, disabled until minSelection is met
secondaryButton{ label: string; href: string }Secondary CTA link
labels{ stepOf?: string; selectionHint?: string }Template strings for the step counter and selection-count hint
currentStepnumber1Current step number, used only to fill the step-of label
totalStepsnumber4Total step count, used only to fill the step-of label
classNamestringExtra classes for the outer <section>
ts
type Topic = { id: string; label: string };
type TopicGroup = { title: string; topics: Topic[] };

Behavior notes

  • Selection is entirely local: useState<Set<string>> always starts empty regardless of props, so nothing is pre-selected even if a topic conceptually should look "already chosen"; clicking a chip toggles its id in and out of that set.
  • primaryButton renders as a real <Button disabled> while selected.size < minSelection; once the threshold is met it becomes clickable, but it navigates with a manual window.location.href = primaryButton.href inside onClick, not through asChild/Link the way secondaryButton does.
  • The " of + selected" hint line switches from muted to text-primary the moment hasEnough becomes true, giving a visual confirmation independent of the button's own disabled styling.
  • minSelection only gates the primary button and colors the hint text; there is no per-group minimum, the count is a flat sum across every group's topics combined.

More Onboarding blocks

View all Onboarding
PRO

onboarding20

Template Starter Picker

Onboarding screen with a grid of starter templates to choose from, each with a preview thumbnail, title, and description. Perfect for project creation flows in design tools and project management apps.

PRO

onboarding25

Theme and Appearance Picker

Onboarding screen for choosing theme mode (light, dark, system) and accent color. Perfect for apps that offer visual customization as part of the onboarding experience.

PRO

onboarding13

Role Persona Selector

Onboarding screen where users select their role or persona to personalize their experience. Each role card shows an icon, title, and description with a selectable highlight state.

PRO

onboarding17

Goal Selector with Paths

Onboarding screen where users pick their primary goal to receive a tailored onboarding path. Each goal card shows a recommended feature set. Perfect for multi-purpose platforms.

PRO

onboarding27

Attribution Survey

Onboarding screen with a quick survey asking how the user discovered the product, with selectable options and an optional text input. Perfect for marketing attribution during signup.

PRO

onboarding29

Company Info Form

Onboarding screen for collecting company information including name, team size selector chips, and industry dropdown. Perfect for B2B SaaS apps that need organizational context during setup.