# Launch a pre-sale

Pre-sales are a great way to validate your product.

It consists of a landing page that shows the problem solved and the features of your future product, and it proposes a lifetime deal to pre-order your product.

This is the best validation possible, you collect money (strong validation) even if you don't have the product built.

{% hint style="info" %}
I suggest you invite the buyers of the lifetime deal into a community (Slack, Discord, Telegram), they represent your early users and can give you tremendous insights about what to build and which problems to solve.\
Shape your product based on their feedback.
{% endhint %}

To create a pre-sale page, open `src/app/page.tsx` and paste this:

```typescript
import { ExplainerVideo } from "@/components/ExplainerVideo/ExplainerVideo";
import { FAQ } from "@/components/FAQ/FAQ";
import { Features } from "@/components/Features/Features";
import { Footer } from "@/components/Footer/Footer";
import { Header } from "@/components/Header/Header";
import { Hero } from "@/components/Hero/Hero";
import { Lifetime } from "@/components/Lifetime/Lifetime";

export default function Home() {
  return (
    <>
      <Header />
      <main className="">
        <Hero showCta={false} showBookDemo={false} showUsers={false} />
        <ExplainerVideo />
        <Features showCta={false} />
        <FAQ />
        <Lifetime />
      </main>
      <Footer />
    </>
  );
}

```

You'll get a page like this:

<figure><img src="/files/oWcqUT1Gn8L9YTaq0ijL" alt=""><figcaption><p>Pre-sale landing page</p></figcaption></figure>

To know more about the lifetime deal customize, check the [Lifetime component docs](/components/lifetime.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.shipped.club/tutorials/launch-a-pre-sale.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
