Live Search FAQPRO

An FAQ with a search field that narrows the list as it is typed, matching against topic, question, and answer, with every answer open on its own hairline row and an empty state when nothing matches.

Faq85: Live Search FAQ

An FAQ with a search field that narrows the list as it is typed, matching against topic, question and answer, with every answer open on its own hairline row and an empty state when nothing matches.

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

Base UI flavor

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

This installs the block to components/beste/block/faq85.tsx, the shadcn/ui input component it depends on, and the badge23 and button21 components it uses for the eyebrow and the support action.

Quick start

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

tsx
import { Faq85, faq85Demo } from "@/components/beste/block/faq85";

export default function FaqPage() {
  return <Faq85 {...faq85Demo} />;
}

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

tsx
import { Faq85 } from "@/components/beste/block/faq85";

export default function FaqPage() {
  return (
    <Faq85
      badge={{ label: "Search the answers" }}
      heading="Type what you are worried about"
      description="Every answer is open by default and the list narrows as you type."
      searchLabel="Search questions"
      searchPlaceholder="Try migration, uptime, or leaving"
      items={[
        {
          topic: "Migration",
          question: "How long does moving off our current system take?",
          answer: "Two weeks end to end, and the busy part is three days in the middle.",
        },
        {
          topic: "Uptime",
          question: "What happens when the booking service goes down?",
          answer: "Member booking links keep working from cache while the admin app recovers.",
        },
      ]}
      emptyLabel="Nothing matches that yet. Ask us directly."
      support={{ label: "Still not answered?", button: { label: "Ask an engineer", href: "/contact" } }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Centered eyebrow above the heading, rendered through Badge23
headingstringSection heading, centered and capped at max-w-2xl
descriptionstringCentered supporting paragraph, capped at max-w-xl
searchLabelstringVisually hidden label for the search field
searchPlaceholderstringPlaceholder inside the search field
itemsFaqItem[][]Questions, each carrying the topic it belongs to
emptyLabelstringLine shown when the query matches nothing
support{ label: string; button: ActionLink }Fallback prompt at the foot of the list
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type FaqItem = {
  topic: string;
  question: string;
  answer: string;
};

Behavior notes

More FAQ blocks

View all FAQ
FREE

faq77

Numbered FAQ Index

A type-forward FAQ with a sticky heading rail and a numbered accordion list of expandable questions.

PRO

faq8

Open List Layout

Questions with answers displayed below in a simple list. Best for FAQs with shorter answers that don't require expansion.

FREE

faq80

Two Column Answer Grid

An always-open FAQ laid out as a two-column grid of numbered, hairline-separated question and answer entries, closing with a soft support panel that pairs a short prompt with two actions.

PRO

faq11

Searchable Accordion

Search input with accordion items that filter in real-time. Essential for FAQs with many questions that users need to quickly locate.

PRO

faq74

FAQ Cards

Always-open FAQ presented as a scannable grid of Q&A cards.

PRO

faq82

Topic Rail FAQ

A categorised FAQ whose topic rail is derived from the questions themselves and carries live counts, switching the accordion beside it and resetting it to the first answer on every change.