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

# Files and database

> Built-in file storage and database for your site. No setup, everything works out of the box.

Sometimes your site needs to store files (PDF catalogs, gallery images) or dynamic data (service bookings, event registrations, reviews). We have built-in storage and database. No setup, all out of the box.

## Site files

Upload PDFs, presentations, images, videos, anything you need to show on the site.

* Upload from admin or builder.
* Each file gets its own public URL, link from your site.
* Any format supported: PDF, ZIP, DOC, MP4, JPG, PNG.
* Limit: 200 MB per project (expandable on request).

## Your site's database

If your site has forms (service booking, reservations, event registration, reviews), all data is auto-saved to a database. We create it as needed. You see this data in the admin, no setup required.

## How to create a table

Just describe to the AI what you want to store.

<CardGroup cols={2}>
  <Card title="Table reservations" icon="calendar">
    "Make a table reservation form: name, phone, date, party size. Show entries in admin."
  </Card>

  <Card title="Reviews with rating" icon="star">
    "Add a reviews form with 1-5 star rating and text. Show approved reviews in the Reviews section."
  </Card>

  <Card title="Event registration" icon="ticket">
    "Make a workshop registration. Each entry: email and number of seats. When seats run out, button shows 'Sold out, join waitlist'."
  </Card>

  <Card title="Product catalog" icon="box">
    "Add a product catalog with category filter. Each product: name, photo, price, description."
  </Card>
</CardGroup>

<Tip>
  The AI handles all the technical work: creates table, form, handler, and connects to admin. You don't need SQL or programming knowledge.
</Tip>

## What's next

<CardGroup cols={2}>
  <Card title="Admin panel" icon="gauge" href="/en/management/admin-panel">
    Where all database data is visible.
  </Card>

  <Card title="Leads and CRM" icon="inbox" href="/en/management/leads-crm">
    One of the common types of data in the database.
  </Card>

  <Card title="Secret keys" icon="key" href="/en/management/secrets">
    If you need to store API keys for external services.
  </Card>
</CardGroup>
