diff --git a/core/modules/workspaces/src/Hook/WorkspacesHooks.php b/core/modules/workspaces/src/Hook/WorkspacesHooks.php
index a12a66edc7b1821c83359351da6b5ffc4cc9a67a..2f3dc95801e4759d8b0129922a507b9a6dc8ef14 100644
--- a/core/modules/workspaces/src/Hook/WorkspacesHooks.php
+++ b/core/modules/workspaces/src/Hook/WorkspacesHooks.php
@@ -2,7 +2,6 @@
 
 namespace Drupal\workspaces\Hook;
 
-use Drupal\Core\Url;
 use Drupal\workspaces\ViewsQueryAlter;
 use Drupal\views\Plugin\views\query\QueryPluginBase;
 use Drupal\views\ViewExecutable;
@@ -233,57 +232,4 @@ public function cron() {
     \Drupal::service('workspaces.manager')->purgeDeletedWorkspacesBatch();
   }
 
-  /**
-   * Implements hook_toolbar().
-   */
-  #[Hook('toolbar')]
-  public function toolbar() {
-    $items['workspace'] = ['#cache' => ['contexts' => ['user.permissions']]];
-    $current_user = \Drupal::currentUser();
-    if (!$current_user->hasPermission('administer workspaces') && !$current_user->hasPermission('view own workspace') && !$current_user->hasPermission('view any workspace')) {
-      return $items;
-    }
-    /** @var \Drupal\workspaces\WorkspaceInterface $active_workspace */
-    $active_workspace = \Drupal::service('workspaces.manager')->getActiveWorkspace();
-    $items['workspace'] += [
-      '#type' => 'toolbar_item',
-      'tab' => [
-        '#lazy_builder' => [
-          'workspaces.lazy_builders:renderToolbarTab',
-                  [],
-        ],
-        '#create_placeholder' => TRUE,
-        '#lazy_builder_preview' => [
-          '#type' => 'link',
-          '#title' => $active_workspace ? $active_workspace->label() : t('Live'),
-          '#url' => Url::fromRoute('entity.workspace.collection'),
-          '#attributes' => [
-            'class' => [
-              'toolbar-tray-lazy-placeholder-link',
-            ],
-          ],
-        ],
-      ],
-      '#wrapper_attributes' => [
-        'class' => [
-          'workspaces-toolbar-tab',
-        ],
-      ],
-      '#weight' => 500,
-    ];
-    // Add a special class to the wrapper if we don't have an active workspace so
-    // we can highlight it with a different color.
-    if (!$active_workspace) {
-      $items['workspace']['#wrapper_attributes']['class'][] = 'workspaces-toolbar-tab--is-default';
-    }
-    // \Drupal\toolbar\Element\ToolbarItem::preRenderToolbarItem adds an
-    // #attributes property to each toolbar item's tab child automatically.
-    // Lazy builders don't support an #attributes property so we need to
-    // add another render callback to remove the #attributes property. We start by
-    // adding the defaults, and then we append our own pre render callback.
-    $items['workspace'] += \Drupal::service('plugin.manager.element_info')->getInfo('toolbar_item');
-    $items['workspace']['#pre_render'][] = 'workspaces.lazy_builders:removeTabAttributes';
-    return $items;
-  }
-
 }
diff --git a/core/modules/workspaces/tests/src/Functional/PathWorkspacesTest.php b/core/modules/workspaces/tests/src/Functional/PathWorkspacesTest.php
index 66dd68642170c3f38b5c64bd1b54f718229fd2c9..c6ad707fb78ebdf28bba3b98cec608cd7f51c225 100644
--- a/core/modules/workspaces/tests/src/Functional/PathWorkspacesTest.php
+++ b/core/modules/workspaces/tests/src/Functional/PathWorkspacesTest.php
@@ -30,6 +30,7 @@ class PathWorkspacesTest extends BrowserTestBase {
     'node',
     'path',
     'workspaces',
+    'workspaces_ui',
   ];
 
   /**
diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceBypassTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceBypassTest.php
index a4dc09c14ad6c2c17fe397ac7c7b5dc2098b5e19..90350fcdb267704df95d71fa50cb7df9c77902ab 100644
--- a/core/modules/workspaces/tests/src/Functional/WorkspaceBypassTest.php
+++ b/core/modules/workspaces/tests/src/Functional/WorkspaceBypassTest.php
@@ -22,7 +22,7 @@ class WorkspaceBypassTest extends BrowserTestBase {
   /**
    * {@inheritdoc}
    */
-  protected static $modules = ['node', 'user', 'block', 'workspaces'];
+  protected static $modules = ['node', 'user', 'block', 'workspaces', 'workspaces_ui'];
 
   /**
    * {@inheritdoc}
diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php
index 1e46e94c2b164cd9d1ec9d1e9730acea02cb8e14..2109552e7619c8c64584bed17dd4ce9e20cb5ac3 100644
--- a/core/modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php
+++ b/core/modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php
@@ -23,7 +23,7 @@ class WorkspaceCacheContextTest extends BrowserTestBase {
   /**
    * {@inheritdoc}
    */
-  protected static $modules = ['block', 'node', 'workspaces'];
+  protected static $modules = ['block', 'node', 'workspaces', 'workspaces_ui'];
 
   /**
    * {@inheritdoc}
diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceConcurrentEditingTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceConcurrentEditingTest.php
index 20ddf4f9bdaea1ad1f1ba719e769538341fc2fff..dd51bddefa55914fe1003581c02b2944ce8bc9bf 100644
--- a/core/modules/workspaces/tests/src/Functional/WorkspaceConcurrentEditingTest.php
+++ b/core/modules/workspaces/tests/src/Functional/WorkspaceConcurrentEditingTest.php
@@ -18,7 +18,7 @@ class WorkspaceConcurrentEditingTest extends BrowserTestBase {
   /**
    * {@inheritdoc}
    */
-  protected static $modules = ['block', 'node', 'workspaces'];
+  protected static $modules = ['block', 'node', 'workspaces', 'workspaces_ui'];
 
   /**
    * {@inheritdoc}
diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceEntityDeleteTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceEntityDeleteTest.php
index 7a3e96876428659e182f22b92c5a65b28dda6f0e..165eb6c1d959f572bfdadf6cbaaa28427c9f201b 100644
--- a/core/modules/workspaces/tests/src/Functional/WorkspaceEntityDeleteTest.php
+++ b/core/modules/workspaces/tests/src/Functional/WorkspaceEntityDeleteTest.php
@@ -19,7 +19,7 @@ class WorkspaceEntityDeleteTest extends BrowserTestBase {
   /**
    * {@inheritdoc}
    */
-  protected static $modules = ['block', 'node', 'user', 'workspaces'];
+  protected static $modules = ['block', 'node', 'user', 'workspaces', 'workspaces_ui'];
 
   /**
    * {@inheritdoc}
diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceMenuLinkContentIntegrationTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceMenuLinkContentIntegrationTest.php
index 4ff79aa61dda1fcb413c8f23b157506bf23c2c15..864ac8c1a36586d056410efbe376c8b2302e35c5 100644
--- a/core/modules/workspaces/tests/src/Functional/WorkspaceMenuLinkContentIntegrationTest.php
+++ b/core/modules/workspaces/tests/src/Functional/WorkspaceMenuLinkContentIntegrationTest.php
@@ -33,6 +33,7 @@ class WorkspaceMenuLinkContentIntegrationTest extends BrowserTestBase {
     'menu_ui',
     'node',
     'workspaces',
+    'workspaces_ui',
   ];
 
   /**
diff --git a/core/modules/workspaces/tests/src/Functional/WorkspacePermissionsTest.php b/core/modules/workspaces/tests/src/Functional/WorkspacePermissionsTest.php
index 07bca1d6aaef1ac83d9f393baa8e7bf5dcff6d1f..c9ce5c0a91c959158ae6772866dcc1a1595e54fe 100644
--- a/core/modules/workspaces/tests/src/Functional/WorkspacePermissionsTest.php
+++ b/core/modules/workspaces/tests/src/Functional/WorkspacePermissionsTest.php
@@ -19,7 +19,7 @@ class WorkspacePermissionsTest extends BrowserTestBase {
   /**
    * {@inheritdoc}
    */
-  protected static $modules = ['workspaces'];
+  protected static $modules = ['workspaces', 'workspaces_ui'];
 
   /**
    * {@inheritdoc}
diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceSwitcherTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceSwitcherTest.php
index 763046b615411ea6c3e7828c51532a7f56a7c27c..d7ac36a5e889321069198d00c823403f93d91937 100644
--- a/core/modules/workspaces/tests/src/Functional/WorkspaceSwitcherTest.php
+++ b/core/modules/workspaces/tests/src/Functional/WorkspaceSwitcherTest.php
@@ -27,6 +27,7 @@ class WorkspaceSwitcherTest extends BrowserTestBase {
     'node',
     'toolbar',
     'workspaces',
+    'workspaces_ui',
   ];
 
   /**
diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceTest.php
index bc89e6e4249b3ea02eac4fd972a4aa1fb355ef62..ff14f78216a6961a8f93a7ad9458fb18811301f1 100644
--- a/core/modules/workspaces/tests/src/Functional/WorkspaceTest.php
+++ b/core/modules/workspaces/tests/src/Functional/WorkspaceTest.php
@@ -32,6 +32,7 @@ class WorkspaceTest extends BrowserTestBase {
     'toolbar',
     'user',
     'workspaces',
+    'workspaces_ui',
   ];
 
   /**
diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceViewTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceViewTest.php
index a304cffd621ce1187164663da3a8da2747266f5f..590b952281d407515cd39367055ddb9d91d57ac6 100644
--- a/core/modules/workspaces/tests/src/Functional/WorkspaceViewTest.php
+++ b/core/modules/workspaces/tests/src/Functional/WorkspaceViewTest.php
@@ -19,7 +19,7 @@ class WorkspaceViewTest extends BrowserTestBase {
   /**
    * {@inheritdoc}
    */
-  protected static $modules = ['workspaces'];
+  protected static $modules = ['workspaces', 'workspaces_ui'];
 
   /**
    * {@inheritdoc}
diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceViewsBulkFormTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceViewsBulkFormTest.php
index 4b9dc1f72b66caec915ae91c018e724bce41ce75..d44d95ba86be5c458026dd4302a7cf1bec44402d 100644
--- a/core/modules/workspaces/tests/src/Functional/WorkspaceViewsBulkFormTest.php
+++ b/core/modules/workspaces/tests/src/Functional/WorkspaceViewsBulkFormTest.php
@@ -20,7 +20,7 @@ class WorkspaceViewsBulkFormTest extends BulkFormTest {
   /**
    * {@inheritdoc}
    */
-  protected static $modules = ['block', 'workspaces', 'workspaces_test'];
+  protected static $modules = ['block', 'workspaces', 'workspaces_ui', 'workspaces_test'];
 
   /**
    * {@inheritdoc}
diff --git a/core/modules/workspaces/tests/src/Functional/WorkspacesUninstallTest.php b/core/modules/workspaces/tests/src/Functional/WorkspacesUninstallTest.php
index 453d08703c49b29dac0397f2644380b9e3f0380d..c14fe48effbc737e961d37a6a5c961d876f291b2 100644
--- a/core/modules/workspaces/tests/src/Functional/WorkspacesUninstallTest.php
+++ b/core/modules/workspaces/tests/src/Functional/WorkspacesUninstallTest.php
@@ -18,7 +18,7 @@ class WorkspacesUninstallTest extends BrowserTestBase {
   /**
    * {@inheritdoc}
    */
-  protected static $modules = ['workspaces', 'node'];
+  protected static $modules = ['workspaces', 'node', 'workspaces_ui'];
 
   /**
    * {@inheritdoc}
@@ -51,6 +51,8 @@ public function testUninstallingWorkspace(): void {
     $this->drupalGet('/admin/modules/uninstall/entity/workspace');
     $this->submitForm([], 'Delete all workspaces');
     $this->drupalGet('admin/modules/uninstall');
+    $this->submitForm(['uninstall[workspaces_ui]' => TRUE], 'Uninstall');
+    $this->submitForm([], 'Uninstall');
     $this->submitForm(['uninstall[workspaces]' => TRUE], 'Uninstall');
     $this->submitForm([], 'Uninstall');
     $session->pageTextContains('The selected modules have been uninstalled.');
diff --git a/core/modules/workspaces/tests/src/FunctionalJavascript/WorkspacesLayoutBuilderIntegrationTest.php b/core/modules/workspaces/tests/src/FunctionalJavascript/WorkspacesLayoutBuilderIntegrationTest.php
index 56c4249267e3f963476e7de3821f174af0a6648b..feca4fbbe4c7d245292745469aaf8440d3a71300 100644
--- a/core/modules/workspaces/tests/src/FunctionalJavascript/WorkspacesLayoutBuilderIntegrationTest.php
+++ b/core/modules/workspaces/tests/src/FunctionalJavascript/WorkspacesLayoutBuilderIntegrationTest.php
@@ -32,6 +32,7 @@ class WorkspacesLayoutBuilderIntegrationTest extends InlineBlockTestBase {
   protected static $modules = [
     'field_ui',
     'workspaces',
+    'workspaces_ui',
   ];
 
   /**
diff --git a/core/modules/workspaces/workspaces.info.yml b/core/modules/workspaces/workspaces.info.yml
index 480073af15187d0c59ecf66cee1c58290bc998ed..42be3a17bb525742ff1007d99aae5939606e6f45 100644
--- a/core/modules/workspaces/workspaces.info.yml
+++ b/core/modules/workspaces/workspaces.info.yml
@@ -1,8 +1,7 @@
 name: Workspaces
 type: module
-description: 'Allows users to stage content or preview a full site by using multiple workspaces on a single site.'
+description: 'Provides an API for staging and previewing content in a full site context.'
 version: VERSION
 package: Core
-configure: entity.workspace.collection
 dependencies:
   - drupal:user
diff --git a/core/modules/workspaces/workspaces.install b/core/modules/workspaces/workspaces.install
index 1a1eb1f98fa2ce6b53b358d55d00791994400241..0028ec805e2bb572a9cc0250df13e6232a36afc4 100644
--- a/core/modules/workspaces/workspaces.install
+++ b/core/modules/workspaces/workspaces.install
@@ -142,3 +142,10 @@ function workspaces_update_11101(): void {
     'primary key' => ['workspace', 'target_entity_type_id', 'target_entity_id', 'target_entity_id_string'],
   ]);
 }
+
+/**
+ * Install the new Workspaces UI module.
+ */
+function workspaces_update_11102(): void {
+  \Drupal::service('module_installer')->install(['workspaces_ui']);
+}
diff --git a/core/modules/workspaces/workspaces.routing.yml b/core/modules/workspaces/workspaces.routing.yml
index 7ab523dfb29d93722e3c7fdf8d2e7e8cec5f83a1..037b1d55311f64f22ec3bf6d2450ca5bfa462be5 100644
--- a/core/modules/workspaces/workspaces.routing.yml
+++ b/core/modules/workspaces/workspaces.routing.yml
@@ -1,9 +1,11 @@
+# Access to these routes is enabled by the Workspaces UI module.
 entity.workspace.collection:
   path: '/admin/config/workflow/workspaces'
   defaults:
     _title: 'Workspaces'
     _entity_list: 'workspace'
   requirements:
+    _access: 'FALSE'
     _permission: 'administer workspaces+edit any workspace'
 
 entity.workspace.activate_form:
@@ -14,6 +16,7 @@ entity.workspace.activate_form:
   options:
     _admin_route: TRUE
   requirements:
+    _access: 'FALSE'
     _entity_access: 'workspace.view'
     _custom_access: '\Drupal\workspaces\Form\WorkspaceActivateForm::checkAccess'
 
@@ -28,6 +31,7 @@ entity.workspace.publish_form:
       workspace:
         type: entity:workspace
   requirements:
+    _access: 'FALSE'
     _permission: 'administer workspaces'
 
 entity.workspace.merge_form:
@@ -43,6 +47,7 @@ entity.workspace.merge_form:
       target_workspace:
         type: entity:workspace
   requirements:
+    _access: 'FALSE'
     _permission: 'administer workspaces'
 
 workspaces.switch_to_live:
@@ -51,5 +56,6 @@ workspaces.switch_to_live:
     _form: '\Drupal\workspaces\Form\SwitchToLiveForm'
     _title: 'Switch to Live'
   requirements:
+    _access: 'FALSE'
     _user_is_logged_in: 'TRUE'
     _has_active_workspace: 'TRUE'
diff --git a/core/modules/workspaces_ui/src/Hook/WorkspacesUiHooks.php b/core/modules/workspaces_ui/src/Hook/WorkspacesUiHooks.php
new file mode 100644
index 0000000000000000000000000000000000000000..d68d4ceda6711aba5f200e19b69ffb780baa882d
--- /dev/null
+++ b/core/modules/workspaces_ui/src/Hook/WorkspacesUiHooks.php
@@ -0,0 +1,91 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Drupal\workspaces_ui\Hook;
+
+use Drupal\Core\Hook\Attribute\Hook;
+use Drupal\Core\Routing\RouteMatchInterface;
+use Drupal\Core\Url;
+
+/**
+ * Hook implementations for the workspaces_ui module.
+ */
+class WorkspacesUiHooks {
+
+  /**
+   * Implements hook_help().
+   */
+  #[Hook('help')]
+  public function help($route_name, RouteMatchInterface $route_match): ?string {
+    switch ($route_name) {
+      // Main module help for the Workspaces UI module.
+      case 'help.page.workspaces_ui':
+        $output = '';
+        $output .= '<h2>' . t('About') . '</h2>';
+        $output .= '<p>' . t('The Workspaces UI module provides an interface for managing workspaces for the <a href=":workspaces_module">Workspaces module</a>. For more information, see the <a href=":workspaces">online documentation for the Workspaces UI module</a>.', [':workspaces_module' => Url::fromRoute('help.page', ['name' => 'workspaces'])->toString(), ':workspaces' => 'https://www.drupal.org/docs/8/core/modules/workspace/overview']) . '</p>';
+        return $output;
+    }
+    return NULL;
+  }
+
+  /**
+   * Implements hook_toolbar().
+   */
+  #[Hook('toolbar')]
+  public function toolbar(): array {
+    $items['workspace'] = [
+      '#cache' => [
+        'contexts' => [
+          'user.permissions',
+        ],
+      ],
+    ];
+    $current_user = \Drupal::currentUser();
+    if (!$current_user->hasPermission('administer workspaces')
+      && !$current_user->hasPermission('view own workspace')
+      && !$current_user->hasPermission('view any workspace')) {
+      return $items;
+    }
+
+    /** @var \Drupal\workspaces\WorkspaceInterface $active_workspace */
+    $active_workspace = \Drupal::service('workspaces.manager')->getActiveWorkspace();
+
+    $items['workspace'] += [
+      '#type' => 'toolbar_item',
+      'tab' => [
+        '#lazy_builder' => ['workspaces.lazy_builders:renderToolbarTab', []],
+        '#create_placeholder' => TRUE,
+        '#lazy_builder_preview' => [
+          '#type' => 'link',
+          '#title' => $active_workspace ? $active_workspace->label() : t('Live'),
+          '#url' => Url::fromRoute('entity.workspace.collection'),
+          '#attributes' => [
+            'class' => ['toolbar-tray-lazy-placeholder-link'],
+          ],
+        ],
+      ],
+      '#wrapper_attributes' => [
+        'class' => ['workspaces-toolbar-tab'],
+      ],
+      '#weight' => 500,
+    ];
+
+    // Add a special class to the wrapper if we don't have an active workspace so
+    // we can highlight it with a different color.
+    if (!$active_workspace) {
+      $items['workspace']['#wrapper_attributes']['class'][] = 'workspaces-toolbar-tab--is-default';
+    }
+
+    // \Drupal\toolbar\Element\ToolbarItem::preRenderToolbarItem adds an
+    // #attributes property to each toolbar item's tab child automatically.
+    // Lazy builders don't support an #attributes property so we need to
+    // add another render callback to remove the #attributes property. We start by
+    // adding the defaults, and then we append our own pre render callback.
+    $items['workspace'] += \Drupal::service('plugin.manager.element_info')->getInfo('toolbar_item');
+    $items['workspace']['#pre_render'][] = 'workspaces.lazy_builders:removeTabAttributes';
+
+    return $items;
+  }
+
+}
diff --git a/core/modules/workspaces_ui/src/Routing/RouteSubscriber.php b/core/modules/workspaces_ui/src/Routing/RouteSubscriber.php
new file mode 100644
index 0000000000000000000000000000000000000000..77d519818444e3acc4a313a88cb7ec42b48ebf43
--- /dev/null
+++ b/core/modules/workspaces_ui/src/Routing/RouteSubscriber.php
@@ -0,0 +1,36 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Drupal\workspaces_ui\Routing;
+
+use Drupal\Core\Routing\RouteSubscriberBase;
+use Symfony\Component\Routing\RouteCollection;
+
+/**
+ * Subscriber for Workspaces routes.
+ */
+class RouteSubscriber extends RouteSubscriberBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function alterRoutes(RouteCollection $collection): void {
+    // Re-enable access to the workspace routes.
+    $workspaces_routes = [
+      'entity.workspace.collection',
+      'entity.workspace.activate_form',
+      'entity.workspace.publish_form',
+      'entity.workspace.merge_form',
+      'workspaces.switch_to_live',
+    ];
+    foreach ($workspaces_routes as $workspace_route) {
+      if ($route = $collection->get($workspace_route)) {
+        $requirements = $route->getRequirements();
+        unset($requirements['_access']);
+        $route->setRequirements($requirements);
+      }
+    }
+  }
+
+}
diff --git a/core/modules/workspaces_ui/tests/src/Functional/GenericTest.php b/core/modules/workspaces_ui/tests/src/Functional/GenericTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..c93a336f3087054fd8df0d49e6085e7142cf7c3e
--- /dev/null
+++ b/core/modules/workspaces_ui/tests/src/Functional/GenericTest.php
@@ -0,0 +1,16 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Drupal\Tests\workspaces_ui\Functional;
+
+use Drupal\Tests\system\Functional\Module\GenericModuleTestBase;
+
+/**
+ * Generic module test for workspaces_ui.
+ *
+ * @group workspaces_ui
+ */
+class GenericTest extends GenericModuleTestBase {
+
+}
diff --git a/core/modules/workspaces/tests/src/FunctionalJavascript/WorkspaceToolbarIntegrationTest.php b/core/modules/workspaces_ui/tests/src/FunctionalJavascript/WorkspaceToolbarIntegrationTest.php
similarity index 93%
rename from core/modules/workspaces/tests/src/FunctionalJavascript/WorkspaceToolbarIntegrationTest.php
rename to core/modules/workspaces_ui/tests/src/FunctionalJavascript/WorkspaceToolbarIntegrationTest.php
index 701d89ec9067b072f1482ea2effc17f5b1512e48..488a6dd34c3c4a7430663ed9df18a9d79a6e999c 100644
--- a/core/modules/workspaces/tests/src/FunctionalJavascript/WorkspaceToolbarIntegrationTest.php
+++ b/core/modules/workspaces_ui/tests/src/FunctionalJavascript/WorkspaceToolbarIntegrationTest.php
@@ -2,21 +2,21 @@
 
 declare(strict_types=1);
 
-namespace Drupal\Tests\workspaces\FunctionalJavascript;
+namespace Drupal\Tests\workspaces_ui\FunctionalJavascript;
 
 use Drupal\Tests\system\FunctionalJavascript\OffCanvasTestBase;
 
 /**
  * Tests workspace settings stray integration.
  *
- * @group workspaces
+ * @group workspaces_ui
  */
 class WorkspaceToolbarIntegrationTest extends OffCanvasTestBase {
 
   /**
    * {@inheritdoc}
    */
-  protected static $modules = ['toolbar', 'workspaces'];
+  protected static $modules = ['toolbar', 'workspaces', 'workspaces_ui'];
 
   /**
    * {@inheritdoc}
diff --git a/core/modules/workspaces_ui/workspaces_ui.info.yml b/core/modules/workspaces_ui/workspaces_ui.info.yml
new file mode 100644
index 0000000000000000000000000000000000000000..71f12f5596732344ea2dc87b869d6fd85eb73f0c
--- /dev/null
+++ b/core/modules/workspaces_ui/workspaces_ui.info.yml
@@ -0,0 +1,8 @@
+name: 'Workspaces UI'
+type: module
+description: 'Provides a user interface for creating and managing workspaces.'
+version: VERSION
+package: Core
+configure: entity.workspace.collection
+dependencies:
+  - drupal:workspaces
diff --git a/core/modules/workspaces_ui/workspaces_ui.services.yml b/core/modules/workspaces_ui/workspaces_ui.services.yml
new file mode 100644
index 0000000000000000000000000000000000000000..e4407f463e083ebdd6b82044a0b41fa7c832239b
--- /dev/null
+++ b/core/modules/workspaces_ui/workspaces_ui.services.yml
@@ -0,0 +1,5 @@
+services:
+  _defaults:
+    autoconfigure: true
+  workspaces_ui.route_subscriber:
+    class: Drupal\workspaces_ui\Routing\RouteSubscriber