diff --git a/docs/platform/howto/manage-project.md b/docs/platform/howto/manage-project.md
index d236f9bcb..7163a77a5 100644
--- a/docs/platform/howto/manage-project.md
+++ b/docs/platform/howto/manage-project.md
@@ -3,61 +3,53 @@ title: Manage projects
---
import ConsoleLabel from "@site/src/components/ConsoleIcons"
+import {ConsoleIcon} from "@site/src/components/ConsoleIcons"
## Create a project
-In the [Aiven Console](https://console.aiven.io/), follow these steps to
-create a project:
-
-1. Click **Project** and select **Create project**.
+1. Click and select **Create project**.
2. Enter a name for the project.
3. Select an organization or organizational unit to add the project to.
-4. Select a
- [billing group](/docs/platform/concepts/billing-groups). The costs from all services within this project will be
- charted to the payment method for that billing group.
+4. Select a [billing group](/docs/platform/concepts/billing-groups).
+ The costs from all services in this project are charged to the
+ payment method for this billing group.
## Rename a project
:::important
-
-- Except for Aiven for Apache Kafka®, all services have backups that
- are restored when you power them back on.
-- The project name in your DNS records will not be updated.
-
+The project name in your DNS records will not be updated.
:::
-To rename a project in the [Aiven Console](https://console.aiven.io/):
-
1. Power off all services in the project.
-1. In the **Project**, click **Settings**.
-1. Edit the **Project name**.
+ :::note
+ Except for Aiven for Apache Kafka®, all services have backups that
+ are restored when you power them back on.
+ :::
+
+1. In the project, click .
+1. In the **Project settings**, edit the **Project name**.
1. Click **Save changes**.
## Move a project
-To move a project from one organizational unit to another in the [Aiven
-Console](https://console.aiven.io/):
+You can move a project to another organization or organizational unit.
+Users with admin access to projects can move them to another
+organizational unit or up a level to the organization.
-1. Click **Admin** and select the organizational unit with the project
- to move.
+To move a project to a different organization, you must be a
+[super admin](/docs/platform/howto/make-super-admin) of both organizations.
+All project members are removed when you
+move a project to a different organization.
-1. In the project to be moved, click > **Move project**.
-
-1. Select the organizational unit to move the project to.
- You can also move the project up a level to the organization.
-
- :::note
- Projects cannot be moved to other organizations. They cannot be
- moved to organizational units that are in other organizations.
- :::
-
-1. Choose a billing group.
-
-1. Click **Move project**.
+1. In the organization with the project, click **Admin**.
+1. Click and find the project to move.
+1. Click > .
+1. Select the organization or organizational unit to move the project to.
+1. Select a **Billing group**.
+1. Click **Next** and **Finish**.
## Delete a project
-To delete a project in the [Aiven Console](https://console.aiven.io/):
-
1. Delete all the services in the project.
-1. Click **Settings** > **Delete** > **Confirm**.
+1. In the project, click .
+1. Click **Delete** and **Confirm**.
diff --git a/src/components/ConsoleIcons/index.tsx b/src/components/ConsoleIcons/index.tsx
index 139d26fba..333b5b874 100644
--- a/src/components/ConsoleIcons/index.tsx
+++ b/src/components/ConsoleIcons/index.tsx
@@ -27,12 +27,25 @@ export default function ConsoleLabel({name}): ReactElement {
Service settings
>
);
- case 'projectsettings':
+ case 'projects':
+ return (
+ <>
+ Projects
+ >
+ );
+ case 'projectsettings':
return (
<>
Settings
>
);
+ case 'moveproject':
+ return (
+ <>
+ {' '}
+ Move project
+ >
+ );
case 'integrations':
return (
<>
@@ -152,7 +165,8 @@ export default function ConsoleLabel({name}): ReactElement {
case 'makesuperadmin':
return (
<>
- Make super admin
+ {' '}
+ Make super admin
>
);
case 'viewuserprofile':