From f4adeb2844ae69ff689929cd9f7d68b75365dc39 Mon Sep 17 00:00:00 2001 From: nmemmert Date: Thu, 7 May 2026 14:23:18 -0400 Subject: [PATCH] Refine admin content flow and improve Q&A mobile UX --- src/AdminPage.tsx | 66 ++++++++++++++++++++--- src/App.css | 102 +++++++++++++++++++++++++++++++++++ src/components/QASection.tsx | 23 ++++++-- 3 files changed, 179 insertions(+), 12 deletions(-) diff --git a/src/AdminPage.tsx b/src/AdminPage.tsx index 03c4f9a..36ef2d8 100644 --- a/src/AdminPage.tsx +++ b/src/AdminPage.tsx @@ -1829,9 +1829,9 @@ export default function AdminPage({ content, onSave, onLogout }: Props) {

Current Series

-

Update the active study card and companion guide content.

+

Update the active series card shown on the homepage and episodes page.

- {FIELDS.filter(f => f.section === 'series').map(({ key, label, multiline }) => ( + {FIELDS.filter(f => f.section === 'series' && !['studyGuideTitle', 'studyGuideDescription', 'studyGuideUrl'].includes(f.key)).map(({ key, label, multiline }) => (
{multiline ? ( @@ -1844,6 +1844,7 @@ export default function AdminPage({ content, onSave, onLogout }: Props) { )}
))} +

Companion study guide title, description, and Amazon link are now managed in Downloads.

{renderSaveStatus()}
)} @@ -2075,11 +2076,6 @@ export default function AdminPage({ content, onSave, onLogout }: Props) {