FAQ sections

Centered accordion. The HEEx side uses Phoenix.LiveView.JS.toggle + an aria-expanded flip; the React side uses Headless UI v2 Disclosure.

Preview

Frequently asked questions

React preview

LiveView (HEEx)

alias DesignSystem.UI.FaqSections

<FaqSections.faq_section
  id="faq"
  title="Frequently asked questions"
  faqs={[
    %{question: "What's the best thing about Switzerland?", answer: "..."},
    %{question: "How do you make holy water?", answer: "..."}
  ]}
/>

React (JSX)

import { FaqSection } from "../ui/index.mjs"

<FaqSection
  title="Frequently asked questions"
  faqs={[
    { question: "What's the best thing about Switzerland?", answer: "..." },
    { question: "How do you make holy water?", answer: "..." },
  ]}
/>