Staaarter

Minimal Two Column

An ultra-minimalist FAQ section that lays questions and answers out in a two-column grid using nothing but typography and spacing. Every answer is always visible, there is no accordion chrome, no card backgrounds, and no dividers, just a clean grid of short question/answer pairs.

By Staaarter Team
FAQ
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/minimal-two-column.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/faq/faq44.tsx instead.

Usage

The file also exports faq44Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.

import { Faq44, faq44Demo } from "@/components/blocks/faq/faq44";

export default function Page() {
  return <Faq44 {...faq44Demo} />;
}

Props

PropTypeDefaultDescription
headingstring"Frequently asked questions"Section heading.
faqsFaqTwoColumnItem[]noneList of question/answer pairs shown in the grid.
classNamestringnoneExtra classes for the outer section element.

Types

interface FaqTwoColumnItem {
  question: string;
  answer: string;
}

Behavior notes

  • Static server component: all answers are always open, there is no expand/collapse interaction.
  • Layout is a plain two-column CSS grid that collapses to one column below the sm breakpoint, no visual chrome around each item.