跳到內容
調色盤星雲光譜
選擇版面配色

即時套用,保留目前的亮暗模式。

FAQSection (am-faq-section)

FAQSection 是可直接放入 landing page、產品頁或說明頁的 FAQ pattern。它沿用 Accordion 的原生 <details> / <summary> 互動,預設採用獨立圓角卡片與單一展開模式。

---
import FAQSection from "@astromer/core/components/FAQSection.astro";
---
<FAQSection
eyebrow="Support"
title="Frequently asked questions"
description="Answers to common setup questions."
defaultValue={["start"]}
items={[
{ value: "start", label: "How do I get started?", content: "Install the package and load the styles." },
{ value: "theme", label: "Can I customize the theme?", content: "Override the shared design tokens." },
]}
/>

詳見 playground /playground/accordion/ 的 FAQSection 範例。