> For the complete documentation index, see [llms.txt](https://zakariaes-organization.gitbook.io/saascore-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zakariaes-organization.gitbook.io/saascore-docs/landing-page.md).

# Landing page

```jsx
export default function Home() {
    return (
        <>
            <Header />
            <main>
                <Hero_Centered />
                {/* <Hero_Split /> */}
                <FeaturesSplit />
                <Features_Centered />
                <SubscriptionPlans />
                <Testimonials />
                <RecentBlogPosts />
                <FAQs />
            </main>
            {/* <SimpleFooter /> */}
            <ExtensiveFooter />
        </>
    );
}
```

There are two alternative hero components you can use instead of the main one:

* `<Hero_Split />`
* `<SimpleFooter />`

>
