> ## Documentation Index
> Fetch the complete documentation index at: https://docs.turbostack.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Ship in 5 minutes 🚀

> Get your startup online at turbo speed!

## First things first

Let's build a beautiful with high conversion landing page.

1. If you haven't already, clone the repo and run the server locally. See the [Get Started](/get-started) tutorial.

2. Paste the following snippet in you `/apps/web/app/home/page.tsx`:

```tsx /apps/web/app/home/page.tsx theme={null}
import { FAQ } from "@/components/marketing/faq";
import { Features } from "@/components/marketing/features";
import { Footer } from "@/components/marketing/footer";
import { Header } from "@/components/marketing/header";
import { Hero } from '@/components/marketing/hero';
import { TalkMoreAboutYourProduct } from "@/components/marketing/more-about-your-product";
import { Pricing } from "@/components/marketing/pricing";
import { Testimonials } from "@/components/marketing/testimonials";
import { CTA } from '@/components/marketing/cta';

export default function HomePage() {
  return (
    <>
      <Header />
      <Hero />
      <TalkMoreAboutYourProduct />
      <Features />
      <Pricing />
      <FAQ />
      <Testimonials />
      <CTA />
      <Footer />
    </>
  )
}
```

3. Change your page to fit your business and brand.

## Setup a waitlist (Optional)

4. To setup a waitlist to collect emails, [set up your resend account](/features/emails).

5. Replace your main call-to-action button in `apps/web/components/marketing/hero.tsx` with this:

```tsx theme={null}
<LeadForm className="mt-12" />
```

## Deploy your application

6. Now that you're finished, you can go ahead and access the [deployment tutorial](/deployment)
