# Add the form & list to the Home Hub

## Overview

In this step, you will add the new customer form and the customer list widgets to the Home Hub of the Jigx mobile app.

## Steps

#### Add jigIds to index.jigx file

1. Click on the `index.jigx` file to add the new customer form and list jigs to appear on the Home Hub screen under the `home` and `calendar` tabs. The `jigId` is used to reference the form and list jig that will be displayed, and **save** the project.
2. Your index.jigx file should resemble the code below. :&#x20;

{% code title="index.jigx" %}

```yaml
# The system name that uniquely identifies the solution
name: hello-jigx-solution
# The friendly name of the solution
title: Hello-Jigx Solution
# The built-in category selected for this solution
category: business
#The widgets that act as top-level navigation elements for jigs
tabs:
  home:
    jigId: map
    icon: location
  calendar:
    jigId: calendar
    icon: calendar
  customer:
    jigId: new-customer
    icon: person
  list:
    jigId: list-customer 
    icon: list 
```

{% endcode %}


---

# 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.jigx.com/getting-started/create-an-app-from-scratch/create-data-form-_-list/add-the-form-_-list-to-the-home-hub.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.
