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

# Get started

> Adding Flynet components to your project. Coming soon.

# Get started with components

<Note>
  The component library isn't published yet. This page will carry the
  install command, setup, and a first example as soon as it ships. Until
  then, build with the [API reference](/api-reference/introduction) and
  the [Cookbook](/recipes).
</Note>

## What to expect

Flynet components will drop into your app and compose the flows you'd
otherwise wire by hand:

* **Auth.** Run the OAuth + PKCE flow and hold the session correctly,
  with the access token in memory and secrets on your backend.
* **Member context.** Render profile, status, wallets, and check-ins
  from `/users/me/*`.
* **Discovery.** List restaurants and locations from the public
  Discovery routes.
* **Payments.** Accept FLY-funded payments through Payment Intents.

Every component reads from the documented API surface, so anything you
can build with a component, you can also build directly against the
[API reference](/api-reference/introduction).

## Build it today

The [Cookbook](/recipes) already covers each of these flows in
copy-paste code:

<CardGroup cols={2}>
  <Card title="Hello, OAuth" icon="key" href="/recipes/appetizers/hello-oauth">
    The auth flow, end to end.
  </Card>

  <Card title="Fetch a restaurant list" icon="utensils" href="/recipes/appetizers/restaurant-list">
    Your first Discovery call.
  </Card>

  <Card title="User passport" icon="id-card" href="/recipes/mains/user-passport">
    Profile, status, and wallets together.
  </Card>

  <Card title="Accept your first payment" icon="credit-card" href="/recipes/mains/first-payment">
    A working FLY checkout.
  </Card>
</CardGroup>
