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.
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.jsonPrefer 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
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | "Frequently asked questions" | Section heading. |
| faqs | FaqTwoColumnItem[] | none | List of question/answer pairs shown in the grid. |
| className | string | none | Extra 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.
More FAQ Blocks
View all →collapsible-accordion
Collapsible Accordion
Stacked cards with expandable sections, for full-length answers in a compact format.
open-list-layout
Open List Layout
Questions with answers displayed directly below in a simple always-open list.
three-column-grid
Three Column Grid
Q&A pairs arranged in a responsive grid layout, always open.
tabbed-categories
Tabbed Categories
Sidebar navigation with category tabs and an accordion of that category's questions.
searchable-accordion
Searchable Accordion
Search input that filters accordion items in real-time by question and answer text.
grouped-sections
Grouped Sections
FAQs organized into titled sections, each with its own independent accordion below it.