From f647d0585672db3c485b8bd965626502ae18167a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 11:08:19 +0000 Subject: [PATCH] Update src/app/help/page.tsx --- src/app/help/page.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/help/page.tsx b/src/app/help/page.tsx index 930bef3..5ae2e67 100644 --- a/src/app/help/page.tsx +++ b/src/app/help/page.tsx @@ -38,13 +38,16 @@ export default function HelpPage() { title="Help & Resources" sections={[ { - heading: "Getting Started", content: { text: "Welcome to our help center. Find guides to manage your bridal website." } + heading: "Getting Started", + content: { type: "paragraph", text: "Welcome to our help center. Find guides to manage your bridal website." } }, { - heading: "Support", content: { items: ["Contact support", "Read FAQs"] } + heading: "Support", + content: { type: "list", items: ["Contact support", "Read FAQs"] } }, { - heading: "FAQ", content: { items: ["Common questions about image uploads", "Pricing updates"] } + heading: "FAQ", + content: { type: "list", items: ["Common questions about image uploads", "Pricing updates"] } } ]} />