Everything on this page is answered in the open, in the same words we would use in a reply.
Once a week, Tuesday morning, and never twice in the same week. If there is nothing worth sending, nothing is sent.
The two of us who run the studio. Nothing is drafted by an agency, and nothing goes out under a name that did not write it.
No. There are no ads, no affiliate links, and no paid mentions. When we name a tool, we are paying for it ourselves.
It sits in the sending tool and nowhere else. It is never sold, never shared, and deleted the moment you unsubscribe.
The whole archive is public, back to the first issue. Nothing is held behind an email address.
One click, from the link at the top of every issue. There is no confirmation page and nobody emails to ask why.
Something we have not covered here?
Write to us directlyA 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.
faq96
An FAQ with nothing to open: a serif heading that settles in word by word beside the intro and a pill action, then six questions and answers laid out in a three-column ruled grid that arrive in turn.
faq17
Questions on left, answers on right in a two-column grid layout. Works well for balanced, side-by-side presentation.