feat: add how-it-works, supported platforms and FAQ sections to homepage

Enrich the landing page with reassurance/trust content inspired by
competitor downloader sites: a 3-step "how it works" guide, a
supported-platforms grid with a non-affiliation disclaimer, and an
8-question FAQ (with FAQPage JSON-LD) -- all translated across en/fr/es/it.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-11 11:24:00 +02:00
co-authored by Claude Sonnet 5
parent 1963521818
commit c8e991a8f7
8 changed files with 324 additions and 0 deletions
+6
View File
@@ -1,6 +1,9 @@
import { getTranslations } from 'next-intl/server'
import { SubmitForm } from '@/components/SubmitForm'
import { ReassuranceSection } from '@/components/ReassuranceSection'
import { HowItWorksSection } from '@/components/HowItWorksSection'
import { SupportedPlatformsSection } from '@/components/SupportedPlatformsSection'
import { FaqSection } from '@/components/FaqSection'
export default async function Home({
params,
@@ -32,6 +35,9 @@ export default async function Home({
</section>
<ReassuranceSection locale={locale} />
<HowItWorksSection locale={locale} />
<SupportedPlatformsSection locale={locale} />
<FaqSection locale={locale} />
</main>
)
}