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

# Buildings

> Learn how to create and manage buildings in your organization portfolio

The **Buildings** page, accessible from the left-hand sidebar, displays all buildings in your Launchpad workspace. It allows you to create new buildings and provides detailed controls for managing existing buildings, including building details, which products are enabled, and publish status.

## Create Buildings

You can create buildings from the **Buildings** page using the `+Add Building` button. Follow the steps outlined below to create a new building.

<Steps>
  <Step title="Open the Buildings page">
    Once inside Launchpad, navigate to the **Buildings** page located on the left-hand sidebar.
  </Step>

  <Step title="Click +Add Building">
    Once inside **Buildings** click the `+Add Building` button to open the building creation form.
  </Step>

  <Step title="Configure building details">
    Configure the required details for the new building.

    <Expandable defaultOpen={true} title="Example Configuration">
      | Field              | Example Configuration                                    |
      | ------------------ | -------------------------------------------------------- |
      | Name\*             | `Headquarters`                                           |
      | Year Constructed   | `2015`                                                   |
      | Area\*             | `50000`                                                  |
      | Type\*             | `Office (choose from dropdown)`                          |
      | # of Floors        | `12`                                                     |
      | Country Code       | `United States +1`                                       |
      | Phone Number       | `+1 555 123 4567`                                        |
      | Base Temperature\* | `65`                                                     |
      | Unit\*             | `Fahrenheit` or `Celsius`                                |
      | Address\*          | `225 Broadway, New York, New York, United States, 10007` |
      | Street\*           | `Filled from Address`                                    |
      | City\*             | `Filled from Address`                                    |
      | State              | `Filled from Address`                                    |
      | Country\*          | `Filled from Address`                                    |
      | Zip                | `Filled from Address`                                    |
      | Address Line 2     | `Suite 100 (optional)`                                   |
      | Region             | `Choose from dropdown`                                   |
      | Brand              | `Choose from dropdown`                                   |
      | Zone               | `North`                                                  |
      | District           | `Downtown`                                               |
      | Identifier         | `BLDG-001`                                               |
      | Site               | `Choose from dropdown or add your own`                   |
      | Identifier         | `Choose from dropdown or add your own`                   |
    </Expandable>
  </Step>

  <Step title="Save">
    Once you have configured the required building details, click `Save` to create the building.
  </Step>

  <Step title="Publish the building (optional)">
    When the building is ready, click the `Publish` button to publish it. Alternatively, complete this step later.
  </Step>
</Steps>

## Manage Buildings

The **Buildings** page lists all existing buildings in rows, with each row displaying key details about the respective building. Each building in your organization has a dedicated page that provides a centralized interface to view and manage all details related to that building.

```mermaid actions={false} theme={null}
---
config:
  layout: dagre
  theme: neutral
---
flowchart LR
 subgraph s1["Client Buildings"]
        B1["Building 1"]
        B2["Building 2"]
        B3["Building 3"]
  end
    A["Buildings Page"] -- view --- A1["Buildings Table"]
    A1 -- select ---- B1
    B1 -- view & manage --- D1["Dedicated Page"]
    A1 -- select --- B2 & B3
    B2 -- view & manage --- D2["Dedicated Page"]
    B3 -- view & manage --- D3["Dedicated Page"]

    linkStyle 1 stroke:#00C853,fill:none
    linkStyle 2 stroke:#FF6D00,fill:none
    linkStyle 3 stroke:#00C853,fill:none
    linkStyle 4 stroke:#00C853,fill:none
    linkStyle 5 stroke:#FF6D00,fill:none
    linkStyle 6 stroke:#FF6D00
```

To manage a building, follow the steps outlined below:

<Steps>
  <Step title="Open the Buildings page">
    Once inside Launchpad, navigate to the **Buildings** page located on the left-hand sidebar.
  </Step>

  <Step title="Select a building">
    Select a building from the list. You will be redirected to its **dedicated** page.
  </Step>

  <Step title="Manage the building">
    Once inside the building's dedicated page, you can complete the following actions:

    * Edit building details
    * Enable or disable products for the building
    * Manage publish status
  </Step>
</Steps>
