diff --git a/app/ai/page.tsx b/app/ai/page.tsx index 4c956f2..504f21f 100644 --- a/app/ai/page.tsx +++ b/app/ai/page.tsx @@ -13,9 +13,9 @@ import { AIInsightsDemo } from "@/components/demo/ai-demos/AIInsightsDemo"; import { DonationsAIDemo } from "@/components/demo/ai-demos/DonationsAIDemo"; export const metadata: Metadata = { - title: "AI Church Software | Sermon Planning, Content Creation & Pastoral Insights", + title: "AI Church Tools — Sermon Planner, Content Studio & Pastoral Care Insights", description: - "AI-powered tools built for ministry: sermon planning assistant, content studio, translation console, pastoral care insights, and donor engagement automation. See how AI saves churches 10+ hours weekly.", + "AI tools built for ministry: auto-generate sermon outlines, repurpose content for email and social, detect at-risk members, and analyze giving patterns. Save 10+ hours weekly. Free to start.", alternates: { canonical: "https://relius.ai/ai/", }, diff --git a/app/blog/[slug]/page.tsx b/app/blog/[slug]/page.tsx index 032a2eb..00f8719 100644 --- a/app/blog/[slug]/page.tsx +++ b/app/blog/[slug]/page.tsx @@ -122,7 +122,7 @@ export default async function BlogPostPage({ params }: BlogPageProps) {
{post.category} - {new Date(post.date).toLocaleDateString("en-US", { month: "long", day: "numeric", year: "numeric" })} + {post.readTime}
diff --git a/app/compare/page.tsx b/app/compare/page.tsx new file mode 100644 index 0000000..7705fc1 --- /dev/null +++ b/app/compare/page.tsx @@ -0,0 +1,546 @@ +import type { Metadata } from "next"; +import Link from "next/link"; +import { + ArrowRight, + CheckCircle2, + XCircle, + Sparkles, + Minus, +} from "lucide-react"; +import { Button } from "@/components/ui/button"; +import { BreadcrumbSchema } from "@/components/seo/structured-data"; +import { FAQSchema } from "@/components/seo/faq-schema"; + +export const metadata: Metadata = { + title: "Church Management Software Comparison 2026 | Free Feature Matrix", + description: + "Compare Relius vs Planning Center vs ChurchTrac vs Tithe.ly vs Pushpay. See features, pricing, and AI capabilities side-by-side. Find the best church software for your ministry.", + keywords: [ + "church management software comparison", + "planning center vs relius", + "churchtrac vs relius", + "tithely vs relius", + "pushpay vs relius", + "best church software 2026", + "free church management software", + "church software comparison chart", + ], + alternates: { + canonical: "https://relius.ai/compare/", + }, + openGraph: { + title: "Church Management Software Comparison 2026 | Free Feature Matrix", + description: + "Compare Relius vs Planning Center vs ChurchTrac vs Tithe.ly vs Pushpay. See features, pricing, and AI capabilities side-by-side.", + url: "https://relius.ai/compare/", + images: [ + { + url: "/og-image.png", + width: 1200, + height: 630, + alt: "Church Management Software Comparison", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Church Management Software Comparison 2026 | Free Feature Matrix", + description: + "Compare Relius vs Planning Center vs ChurchTrac vs Tithe.ly vs Pushpay side-by-side.", + }, +}; + +type ComparisonFeature = { + category: string; + features: { + name: string; + relius: boolean | string; + planningCenter: boolean | string; + churchtrac: boolean | string; + tithely: boolean | string; + pushpay: boolean | string; + isAI?: boolean; + }[]; +}; + +const comparisonData: ComparisonFeature[] = [ + { + category: "Core Church Management", + features: [ + { + name: "Member Management", + relius: true, + planningCenter: true, + churchtrac: true, + tithely: true, + pushpay: "Limited", + }, + { + name: "Donation Tracking", + relius: true, + planningCenter: true, + churchtrac: true, + tithely: true, + pushpay: true, + }, + { + name: "Online Giving", + relius: true, + planningCenter: true, + churchtrac: "Add-on", + tithely: true, + pushpay: true, + }, + { + name: "Event Calendar", + relius: true, + planningCenter: true, + churchtrac: true, + tithely: "Limited", + pushpay: false, + }, + { + name: "Check-In System", + relius: true, + planningCenter: true, + churchtrac: true, + tithely: true, + pushpay: false, + }, + { + name: "Volunteer Scheduling", + relius: true, + planningCenter: true, + churchtrac: "Basic", + tithely: false, + pushpay: false, + }, + ], + }, + { + category: "AI-Powered Features", + features: [ + { + name: "AI Content Studio", + relius: true, + planningCenter: false, + churchtrac: false, + tithely: false, + pushpay: false, + isAI: true, + }, + { + name: "AI Sermon Planner", + relius: true, + planningCenter: false, + churchtrac: false, + tithely: false, + pushpay: false, + isAI: true, + }, + { + name: "AI Pastoral Care Insights", + relius: true, + planningCenter: false, + churchtrac: false, + tithely: false, + pushpay: false, + isAI: true, + }, + { + name: "Real-time Translation (50+ languages)", + relius: true, + planningCenter: false, + churchtrac: false, + tithely: false, + pushpay: false, + isAI: true, + }, + { + name: "AI Volunteer Scheduler", + relius: true, + planningCenter: false, + churchtrac: false, + tithely: false, + pushpay: false, + isAI: true, + }, + { + name: "Predictive Giving Analytics", + relius: true, + planningCenter: false, + churchtrac: false, + tithely: false, + pushpay: false, + isAI: true, + }, + ], + }, + { + category: "Platform & Pricing", + features: [ + { + name: "Free Plan Available", + relius: true, + planningCenter: "Trial only", + churchtrac: "Limited", + tithely: "Limited", + pushpay: false, + }, + { + name: "All-in-One Platform", + relius: true, + planningCenter: false, + churchtrac: "Basic", + tithely: "Limited", + pushpay: false, + }, + { + name: "Modern, Mobile-First UI", + relius: true, + planningCenter: true, + churchtrac: false, + tithely: true, + pushpay: true, + }, + { + name: "Cloud-Native", + relius: true, + planningCenter: true, + churchtrac: "Hybrid", + tithely: true, + pushpay: true, + }, + { + name: "Free Data Migration", + relius: true, + planningCenter: false, + churchtrac: false, + tithely: false, + pushpay: false, + }, + ], + }, +]; + +const comparisonFAQs = [ + { + question: "Which church management software is best for small churches?", + answer: + "Relius is ideal for small churches because it offers a generous free plan with AI-powered features, no per-user pricing, and an all-in-one platform so you don't need multiple subscriptions. ChurchTrac also caters to smaller churches but lacks AI features and a modern interface.", + }, + { + question: "How does Relius compare to Planning Center?", + answer: + "Planning Center is a well-established platform but uses separate apps for different functions (People, Giving, Services, etc.) which means managing multiple subscriptions. Relius offers everything in one platform with AI-powered tools for content creation, pastoral care, and translation — all starting free.", + }, + { + question: "Is Relius really free?", + answer: + "Yes. Relius offers a free-forever plan that includes core church management features, AI tools, and online giving. There are no hidden fees or credit card requirements to get started.", + }, + { + question: "Can I switch from my current software to Relius?", + answer: + "Absolutely. Relius offers free guided migration from Planning Center, ChurchTrac, Tithe.ly, and Pushpay. Most churches complete their migration in 2-4 hours with our step-by-step wizard.", + }, + { + question: "What makes Relius different from other church software?", + answer: + "Relius is the only church management platform with built-in AI tools for sermon planning, content creation, pastoral care insights, real-time translation, and predictive analytics — all included in the free plan.", + }, +]; + +function CellValue({ value }: { value: boolean | string }) { + if (value === true) { + return ; + } + if (value === false) { + return ; + } + return ( + {value} + ); +} + +export default function ComparePage() { + return ( +
+ + + + {/* Hero */} +
+
+
+
+
+ + Updated for 2026 +
+

+ Church Management Software Comparison +

+

+ See how Relius compares to Planning Center, ChurchTrac, Tithe.ly, + and Pushpay across features, AI capabilities, and pricing. +

+
+ + +
+
+
+
+ + {/* Comparison Table */} +
+
+
+

+ Feature Comparison Matrix +

+

+ A comprehensive look at what each platform offers +

+
+
+ + + + + + + + + + + + + {comparisonData.map((section) => ( + <> + + + + {section.features.map((feature) => ( + + + + + + + + + ))} + + ))} + +
+ Feature + + Relius + + Planning Center + + ChurchTrac + + Tithe.ly + + Pushpay +
+ {section.category} +
+ + {feature.isAI && ( + + )} + {feature.name} + + + + + + + + + + + +
+
+
+
+ + {/* Switch Pages Links */} +
+
+
+

+ Ready to switch? +

+

+ Choose your current platform for a detailed migration guide +

+
+
+ {[ + { + name: "Planning Center", + slug: "planning-center", + description: "Import people and donations", + }, + { + name: "ChurchTrac", + slug: "churchtrac", + description: "Import people and donations", + }, + { + name: "Tithe.ly", + slug: "tithely", + description: "Import people, donations, tags, and more", + }, + { + name: "Pushpay", + slug: "pushpay", + description: "Import people and donations", + }, + ].map((platform) => ( + +

+ Switch from {platform.name} +

+

+ {platform.description} +

+ + View migration guide + + + + ))} +
+
+
+ + {/* FAQ */} +
+
+
+
+

+ Frequently asked questions +

+
+
+ {comparisonFAQs.map((faq, index) => ( +
+ + {faq.question} + + + + + + +
+ {faq.answer} +
+
+ ))} +
+
+
+
+ + {/* CTA */} +
+
+
+ ); +} diff --git a/app/page.tsx b/app/page.tsx index 367acc1..9f3a7b8 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -6,6 +6,7 @@ import { ProductPillars } from "@/components/sections/product-pillars"; import { MigrationCallout } from "@/components/sections/migration-callout"; import { SocialProof } from "@/components/sections/social-proof"; import { FinalCta } from "@/components/sections/final-cta"; +import { HomepageFAQ } from "@/components/sections/homepage-faq"; import { InteractiveDemo } from "@/components/demo"; export const metadata: Metadata = { @@ -49,6 +50,7 @@ export default function Home() { + ); diff --git a/app/pricing/layout.tsx b/app/pricing/layout.tsx index d44c5b8..4982020 100644 --- a/app/pricing/layout.tsx +++ b/app/pricing/layout.tsx @@ -1,28 +1,76 @@ -import { Metadata } from "next"; +import type { Metadata } from "next"; import { BreadcrumbSchema } from "@/components/seo/structured-data"; +import { FAQSchema } from "@/components/seo/faq-schema"; export const metadata: Metadata = { - title: "Free Church Management Software | Relius Pricing", + title: "Free Church Management Software Pricing | $0 Forever", description: - "Free church management software with online giving, AI-powered donation tools, and unlimited members. Free forever. Ministry Pro $60/mo, Ministry AI $150/mo for advanced features.", - alternates: { - canonical: "https://relius.ai/pricing/", - }, + "Relius is 100% free for church management, online giving, and AI donation tools. Upgrade to Ministry Pro ($60/mo) or Ministry AI ($150/mo) for pastoral care and advanced AI. No hidden fees.", + keywords: [ + "free church management software", + "church software pricing", + "free church software", + "church management cost", + "planning center pricing alternative", + ], + alternates: { canonical: "https://relius.ai/pricing/" }, openGraph: { - title: "Free Church Management Software | Relius Pricing", + title: "Free Church Management Software Pricing | Relius", description: - "Free church management with online giving and AI donation tools. Unlimited members, no credit card required. Upgrade for pastoral care and AI features.", + "100% free forever church management with online giving. Ministry Pro $60/mo. Ministry AI $150/mo. See the full feature comparison.", url: "https://relius.ai/pricing/", - images: [{ url: "/og-image.png", width: 1200, height: 630, alt: "Relius Pricing Plans" }], + images: [{ url: "/og-image.png", width: 1200, height: 630, alt: "Relius Pricing" }], }, twitter: { card: "summary_large_image", - title: "Free Church Management Software | Relius Pricing", - description: - "Free church management with online giving and AI donation tools. Unlimited members, no credit card required. Upgrade for pastoral care and AI features.", + title: "Free Church Management Software Pricing | Relius", + description: "100% free forever. Ministry Pro $60/mo. Ministry AI $150/mo. Compare all features.", }, }; +const pricingFAQs = [ + { + question: "Is Relius really free?", + answer: + "Yes. Our Free plan includes full church management, online giving with AI-powered donation tools, unlimited members, events, and groups — forever. No credit card, no trial period.", + }, + { + question: "What does the Free plan include?", + answer: + "The Free plan includes member management, online giving with AI-powered donation tools, event management, group management, check-in with QR codes, and a church CRM — all with unlimited members.", + }, + { + question: "What's the difference between Ministry Pro and Ministry AI?", + answer: + "Ministry Pro ($60/mo) adds pastoral care tracking, service planning, unlimited communications, and advanced reporting. Ministry AI ($150/mo) includes everything in Pro plus AI sermon planner, content studio, real-time translation in 50+ languages, pastoral care insights, and predictive analytics.", + }, + { + question: "How does Relius make money if it's free?", + answer: + "We charge a small processing fee on donations (2% + $0.19 per transaction) on the Free plan. Paid plans have lower processing fees and additional features.", + }, + { + question: "Can I switch plans at any time?", + answer: + "Yes. You can upgrade, downgrade, or cancel at any time. Your data is always yours regardless of which plan you're on.", + }, + { + question: "Is there a contract or commitment?", + answer: + "No. All plans are month-to-month with no long-term contracts. The Free plan is free forever with no trial period.", + }, + { + question: "How does Relius pricing compare to Planning Center?", + answer: + "Planning Center charges per app (People, Giving, Check-Ins, etc.) and prices scale with church size. Relius offers all features in one platform — free for core features, with flat-rate pricing for advanced plans.", + }, + { + question: "Do you offer discounts for small churches?", + answer: + "Our Free plan is designed for churches of all sizes. Most small and medium churches find the Free plan covers everything they need. There's no minimum size requirement.", + }, +]; + export default function PricingLayout({ children, }: { @@ -30,10 +78,13 @@ export default function PricingLayout({ }) { return ( <> - + + {children} ); diff --git a/app/switch/churchtrac/page.tsx b/app/switch/churchtrac/page.tsx index 6b5e12b..daac170 100644 --- a/app/switch/churchtrac/page.tsx +++ b/app/switch/churchtrac/page.tsx @@ -9,6 +9,7 @@ import { getMigrationPlatform, migrationSteps, commonMigrationFAQs } from "@/dat import { MIGRATION_PAGE_META, getContactUrlForMigration } from "@/lib/migration-urls"; import { BreadcrumbSchema } from "@/components/seo/structured-data"; import Script from "next/script"; +import { FAQSchema } from "@/components/seo/faq-schema"; const platform = getMigrationPlatform("churchtrac")!; @@ -20,14 +21,14 @@ export const metadata: Metadata = { canonical: "https://relius.ai/switch/churchtrac/", }, openGraph: { - title: "ChurchTrac Alternative | Cloud-Based Church Software — Free", + title: "Best ChurchTrac Alternative 2026 — Free AI Church Software", description: "Upgrade from ChurchTrac to Relius: cloud-based access, AI-powered features, and a modern interface. Easy migration preserves all your historical data.", url: "https://relius.ai/switch/churchtrac/", images: [{ url: "/og-image.png", width: 1200, height: 630, alt: "Switch from ChurchTrac to Relius" }], }, twitter: { card: "summary_large_image", - title: "ChurchTrac Alternative | Cloud-Based Church Software — Free", + title: "Best ChurchTrac Alternative 2026 — Free AI Church Software", description: "Upgrade from ChurchTrac to Relius: cloud-based access, AI-powered features, and a modern interface. Start free today.", }, }; @@ -42,6 +43,10 @@ export default function ChurchTracMigrationPage() { { name: "ChurchTrac", url: "https://relius.ai/switch/churchtrac/" }, ]} /> + {/* Hero Section */}
diff --git a/app/switch/planning-center/page.tsx b/app/switch/planning-center/page.tsx index 4fb2ccc..c328859 100644 --- a/app/switch/planning-center/page.tsx +++ b/app/switch/planning-center/page.tsx @@ -8,6 +8,7 @@ import { Accordion, AccordionItem, AccordionTrigger, AccordionContent } from "@/ import { getMigrationPlatform, migrationSteps, commonMigrationFAQs } from "@/data/migrations"; import { MIGRATION_PAGE_META, getContactUrlForMigration } from "@/lib/migration-urls"; import { BreadcrumbSchema } from "@/components/seo/structured-data"; +import { FAQSchema } from "@/components/seo/faq-schema"; const platform = getMigrationPlatform("planning-center")!; @@ -19,14 +20,14 @@ export const metadata: Metadata = { canonical: "https://relius.ai/switch/planning-center/", }, openGraph: { - title: "Free Planning Center Alternative 2026 | Switch to Relius", + title: "Free Planning Center Alternative 2026 | AI Church Management Software", description: "The free alternative to Planning Center with AI-powered features. Import your people and donations in under 3 hours. Simpler pricing, all-in-one platform.", url: "https://relius.ai/switch/planning-center/", images: [{ url: "/og-image.png", width: 1200, height: 630, alt: "Switch from Planning Center to Relius" }], }, twitter: { card: "summary_large_image", - title: "Free Planning Center Alternative 2026 | Switch to Relius", + title: "Free Planning Center Alternative 2026 | AI Church Management Software", description: "The free alternative to Planning Center with AI-powered features. Import your people and donations in under 3 hours.", }, }; @@ -39,6 +40,10 @@ export default function PlanningCenterMigrationPage() { { name: "Switch to Relius", url: "https://relius.ai/switch/" }, { name: "Planning Center Alternative", url: "https://relius.ai/switch/planning-center/" }, ]} /> + {/* Hero Section */}
diff --git a/app/switch/pushpay/page.tsx b/app/switch/pushpay/page.tsx new file mode 100644 index 0000000..2045ecf --- /dev/null +++ b/app/switch/pushpay/page.tsx @@ -0,0 +1,322 @@ +import type { Metadata } from "next"; +import Link from "next/link"; +import { ArrowRight, CheckCircle2, ArrowLeft, Sparkles, Clock, FileDown } from "lucide-react"; +import { Button } from "@/components/ui/button"; +import { ComparisonTable } from "@/components/ui/comparison-table"; +import { MigrationSteps } from "@/components/ui/migration-steps"; +import { Accordion, AccordionItem, AccordionTrigger, AccordionContent } from "@/components/ui/accordion"; +import { getMigrationPlatform, migrationSteps, commonMigrationFAQs } from "@/data/migrations"; +import { MIGRATION_PAGE_META, getContactUrlForMigration } from "@/lib/migration-urls"; +import { BreadcrumbSchema } from "@/components/seo/structured-data"; +import { FAQSchema } from "@/components/seo/faq-schema"; + +const platform = getMigrationPlatform("pushpay")!; + +export const metadata: Metadata = { + title: MIGRATION_PAGE_META["pushpay"].title, + description: MIGRATION_PAGE_META["pushpay"].description, + keywords: MIGRATION_PAGE_META["pushpay"].keywords, + alternates: { + canonical: "https://relius.ai/switch/pushpay/", + }, + openGraph: { + title: "Pushpay Alternative 2026 — Free Church Giving & Management | Relius", + description: + "Looking for a Pushpay alternative? Relius offers free online giving plus complete church management with AI-powered tools. Migrate your data easily.", + url: "https://relius.ai/switch/pushpay/", + images: [ + { + url: "/og-image.png", + width: 1200, + height: 630, + alt: "Switch from Pushpay to Relius", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Pushpay Alternative 2026 — Free Church Giving & Management | Relius", + description: + "Looking for a Pushpay alternative? Relius offers free online giving plus complete church management with AI tools. Start free today.", + }, +}; + +export default function PushpayMigrationPage() { + return ( +
+ + + + {/* Hero Section */} +
+
+
+
+ + + All migration guides + + +
+
+ + Average migration time: 2-3 hours +
+ +

+ Switching from {platform.name} to Relius +

+

+ {platform.description} +

+
+ + +
+
+
+
+ + {/* What Transfers Section */} +
+
+
+
+

+ What transfers from {platform.name} +

+
+ {platform.dataTypes.map((dataType) => ( +
+ +
+

{dataType}

+

+ {dataType === "People" && + "Member profiles, contact info, family relationships, attendance history"} + {dataType === "Donations" && + "Complete contribution records, fund allocations, giving statements"} +

+
+
+ ))} +
+
+ +
+

+ What you gain with Relius +

+
+ {platform.whatYouGain.map((gain, i) => ( +
+
+ {i < 3 ? ( + + ) : ( + + )} +
+

{gain}

+
+ ))} +
+
+
+
+
+ + {/* Feature Comparison */} +
+
+
+

+ {platform.name} vs Relius +

+

+ See how Relius compares feature by feature +

+
+
+ +
+
+
+ + {/* Export Instructions */} +
+
+
+
+
+ + Step 1: Export Your Data +
+

+ How to export from {platform.name} +

+

+ Follow these steps to download your data, then upload it to + Relius +

+
+
+
    + {platform.exportInstructions.map((instruction, i) => ( +
  1. + + {i + 1} + + + {instruction} + +
  2. + ))} +
+
+
+
+
+ + {/* Migration Steps */} +
+
+
+

+ Then, import into Relius +

+

+ Our guided wizard walks you through every step +

+
+
+ +
+
+
+ + {/* Common Concerns */} +
+
+
+
+

+ Concerned about switching? +

+

+ We hear you. Here's what we want you to know: +

+
+
+ {platform.commonConcerns.map((concern, i) => ( +
+ +

{concern}

+
+ ))} +
+
+
+
+ + {/* FAQ */} +
+
+
+
+

+ Frequently asked questions +

+
+ + {[...platform.faqs, ...commonMigrationFAQs.slice(0, 3)].map( + (faq, index) => ( + + {faq.question} + {faq.answer} + + ) + )} + +
+
+
+ + {/* CTA */} +
+
+
+ ); +} diff --git a/app/switch/tithely/page.tsx b/app/switch/tithely/page.tsx index f201873..388dbff 100644 --- a/app/switch/tithely/page.tsx +++ b/app/switch/tithely/page.tsx @@ -9,6 +9,7 @@ import { getMigrationPlatform, migrationSteps, commonMigrationFAQs } from "@/dat import { MIGRATION_PAGE_META, getContactUrlForMigration } from "@/lib/migration-urls"; import { BreadcrumbSchema } from "@/components/seo/structured-data"; import { Badge } from "@/components/ui/badge"; +import { FAQSchema } from "@/components/seo/faq-schema"; const platform = getMigrationPlatform("tithely")!; @@ -20,14 +21,14 @@ export const metadata: Metadata = { canonical: "https://relius.ai/switch/tithely/", }, openGraph: { - title: "Switch from Tithe.ly to Relius | Free Migration, Better Features", + title: "Tithe.ly Alternative 2026 — Free Church Giving & Management", description: "Move from Tithe.ly to Relius in 3-4 hours. Import people, donations, tags, and attendance — free. AI-powered giving tools and volunteer scheduling included.", url: "https://relius.ai/switch/tithely/", images: [{ url: "/og-image.png", width: 1200, height: 630, alt: "Switch from Tithe.ly to Relius" }], }, twitter: { card: "summary_large_image", - title: "Switch from Tithe.ly to Relius | Free Migration, Better Features", + title: "Tithe.ly Alternative 2026 — Free Church Giving & Management", description: "Move from Tithe.ly to Relius in 3-4 hours. Import people, donations, tags, and attendance — free. AI-powered giving tools included.", }, }; @@ -42,6 +43,10 @@ export default function TithelyMigrationPage() { { name: "Tithe.ly", url: "https://relius.ai/switch/tithely/" }, ]} /> + {/* Hero Section */}
diff --git a/components/sections/homepage-faq.tsx b/components/sections/homepage-faq.tsx new file mode 100644 index 0000000..f0258dc --- /dev/null +++ b/components/sections/homepage-faq.tsx @@ -0,0 +1,68 @@ +import { FAQSchema } from "@/components/seo/faq-schema"; +import { + Accordion, + AccordionItem, + AccordionTrigger, + AccordionContent, +} from "@/components/ui/accordion"; + +const homepageFAQs = [ + { + question: "Is Relius really free?", + answer: + "Yes. Our Free plan includes full church management, online giving with AI-powered donation tools, unlimited members, events, and groups — forever. No credit card, no trial period. We sustain this through small processing fees on donations (2% + $0.19 per transaction).", + }, + { + question: "How does Relius compare to Planning Center?", + answer: + "Relius offers free giving and AI-powered features that Planning Center charges for. While Planning Center splits features across separate paid apps, Relius is all-in-one. Both platforms let you manage people, groups, and services, but Relius includes AI sermon planning, content generation, and pastoral care insights.", + }, + { + question: "Can I migrate my data from other church software?", + answer: + "Yes. We have guided migration wizards for Planning Center, ChurchTrac, and Tithe.ly. Your member records, donation history, tags, and attendance data transfer safely. Most migrations take 2-4 hours and our team helps you through the process — free.", + }, + { + question: "What AI features does Relius include?", + answer: + "The Free plan includes AI-powered donation management with smart thank-you messages and donor insights. The Ministry AI plan ($150/mo) adds a sermon planner, content studio that turns sermons into social posts and emails, real-time translation in 50+ languages, pastoral care insights with at-risk member detection, and a semantic Bible search.", + }, + { + question: "How long does it take to set up Relius?", + answer: + "Most churches are up and running within a day. Create an account, import your data (if migrating), and start managing your church. If you're starting fresh, basic setup takes under an hour. Our documentation and support team are available to help at every step.", + }, + { + question: "Is my church data secure?", + answer: + "Yes. Relius uses encryption at rest and in transit, role-based access controls, and comprehensive audit logs. Your data is yours — we never sell or share it. See our security page for full details on our data protection practices.", + }, +]; + +export function HomepageFAQ() { + return ( +
+ +
+
+
+

+ Frequently asked questions +

+

+ Quick answers about Relius church management software +

+
+ + {homepageFAQs.map((faq, index) => ( + + {faq.question} + {faq.answer} + + ))} + +
+
+
+ ); +} diff --git a/components/seo/faq-schema.tsx b/components/seo/faq-schema.tsx new file mode 100644 index 0000000..aa3b445 --- /dev/null +++ b/components/seo/faq-schema.tsx @@ -0,0 +1,26 @@ +import Script from "next/script"; + +type FAQItem = { question: string; answer: string }; + +export function FAQSchema({ items, id }: { items: FAQItem[]; id?: string }) { + const faqSchema = { + "@context": "https://schema.org", + "@type": "FAQPage", + mainEntity: items.map((item) => ({ + "@type": "Question", + name: item.question, + acceptedAnswer: { + "@type": "Answer", + text: item.answer, + }, + })), + }; + + return ( +