A two-column question grid with every answer already visible on a hairline, so nothing is hidden behind a toggle, closed by a soft panel pointing at a direct reply.
A two-column question grid with every answer already visible on a hairline, so nothing is hidden behind a toggle, closed by a soft panel pointing at a direct reply.
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.
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/faq93?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/faq93?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/faq93.tsx and the badge6 component it uses for the eyebrow (installed to components/beste/component/badge6.tsx).
The installed file exports faq93Demo alongside the block: the exact props behind the preview above. Spread it to get a working question grid in one line.
import { Faq93, faq93Demo } from "@/components/beste/block/faq93";
export default function FaqPage() {
return <Faq93 {...faq93Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Faq93 } from "@/components/beste/block/faq93";
export default function FaqPage() {
return (
<Faq93
eyebrow="Before you subscribe"
heading="The questions readers actually send us"
description="Everything on this page is answered in the open."
questions={[
{
question: "How often does it arrive?",
answer: "Once a week, Tuesday morning, and never twice in the same week.",
},
{
question: "Is any of it sponsored?",
answer: "No. There are no ads, no affiliate links and no paid mentions.",
},
]}
supportText="Something we have not covered here?"
supportLink={{ label: "Write to us directly", href: "/contact" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label above the hairline rule |
heading | string | – | Section heading under the rule |
description | string | – | Supporting paragraph |
questions | QuestionItem[] | [] | Question and answer pairs, two to a row |
supportText | string | – | Line in the panel under the grid |
supportLink | SupportLink | – | Link beside that line |
className | string | – | Extra classes for the outer section |
type QuestionItem = {
question: string;
answer: string;
};
type SupportLink = {
label: string;
href: string;
};h3 elements, so the page keeps a heading outline a screen reader can jump through.md up with a wide gap-x-16, so the two columns read as separate lists rather than as a table.faq80
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.
faq17
Questions on left, answers on right in a two-column grid layout. Works well for balanced, side-by-side presentation.
faq9
Q&A pairs arranged in a responsive grid layout. Ideal for displaying concise answers in a scannable, multi-column format.