# remove slot

Learn how to remove a slot from your project.

This command removes one or more [slots](/explanation/slot) from your project, [regenerating type definitions](/reference/cli/type-generation) and [fallback content](/reference/cli/fallback-content) accordingly.

## Usage

This command has the following syntax:

```sh
croct remove slot <slots>
```

## Example

Remove a slot interactively:

```sh
croct remove slot
```

Remove a specific slot:

```sh
croct remove slot hero-banner
```

Remove multiple slots at once:

```sh
croct remove slot hero-banner sidebar-cta
```

## Arguments

- `slots`: `Array<string>` (optional)

  One or more slots to remove, separated by spaces.

  If omitted, the CLI prompts you to select slots interactively.

## Options

This command only accepts [global options](../global-options).

## Explore

- [Add slot](/reference/cli/commands/add-slot): Learn how to add a slot to your project.
- [Upgrade](/reference/cli/commands/upgrade): Learn how to upgrade components and slots.
