mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
* feat: workspace management from admin app * chore: UI and UX copy improvements * chore: ux copy improvements
22 lines
833 B
TypeScript
22 lines
833 B
TypeScript
"use client";
|
|
|
|
import { observer } from "mobx-react";
|
|
// components
|
|
import { WorkspaceCreateForm } from "./form";
|
|
|
|
const WorkspaceCreatePage = observer(() => (
|
|
<div className="relative container mx-auto w-full h-full p-4 py-4 space-y-6 flex flex-col">
|
|
<div className="border-b border-custom-border-100 mx-4 py-4 space-y-1 flex-shrink-0">
|
|
<div className="text-xl font-medium text-custom-text-100">Create a new workspace on this instance.</div>
|
|
<div className="text-sm font-normal text-custom-text-300">
|
|
You will need to invite users from Workspace Settings after you create this workspace.
|
|
</div>
|
|
</div>
|
|
<div className="flex-grow overflow-hidden overflow-y-scroll vertical-scrollbar scrollbar-md px-4">
|
|
<WorkspaceCreateForm />
|
|
</div>
|
|
</div>
|
|
));
|
|
|
|
export default WorkspaceCreatePage;
|