"use client"; import React from "react"; import { observer } from "mobx-react-lite"; import Link from "next/link"; import Image from "next/image"; import { useTheme } from "next-themes"; // ui import { Button, getButtonStyling } from "@plane/ui"; // helpers import { resolveGeneralTheme } from "helpers/common.helper"; // icons import TakeoffIconLight from "/public/logos/takeoff-icon-light.svg"; import TakeoffIconDark from "/public/logos/takeoff-icon-dark.svg"; type Props = { isOpen: boolean; onClose?: () => void; }; export const CreateWorkspacePopup: React.FC = observer((props) => { const { isOpen, onClose } = props; // theme const { resolvedTheme } = useTheme(); const handleClose = () => { onClose && onClose(); }; if (!isOpen) return null; return (
Create workspace
Instance setup done! Welcome to Plane instance portal. Start your journey with by creating your first workspace, you will need to login again.
Create workspace
Plane icon
); });