diff --git a/package.json b/package.json
index 540b66b..baaf825 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "siteforge",
"private": true,
- "version": "1.0.5",
+ "version": "1.0.6",
"type": "module",
"scripts": {
"dev": "vite",
diff --git a/src/App.tsx b/src/App.tsx
index adcb17a..8f68cc9 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -664,7 +664,7 @@ function ContactSection({ content }: { content: SiteContent }) {
}
function PodcastHighlightsSection({ content }: { content: SiteContent }) {
- const links = content.podcastFeaturedLinks ?? []
+ const links = [...(content.podcastFeaturedLinks ?? [])].reverse()
if (links.length === 0) return null
return (
@@ -2145,16 +2145,21 @@ function AdminShell({ content, onSave }: { content: SiteContent; onSave: (c: Sit
}
function QuestionsPage({ content }: { content: SiteContent }) {
+ const siteTitle = content.seo?.title || DEFAULTS.seo.title
+ usePageMeta(
+ `Q&A | ${siteTitle}`,
+ 'Real questions answered from Scripture — browse topics, search, and submit your own.',
+ )
+
return (
-