import React from "react"; import Image from "next/image"; import emptyProject from "public/empty-state/empty_project_projects_screen.webp"; // ui import { Button } from "@plane/ui"; type Props = { primaryButton: { icon?: any; text: string; onClick: () => void; }; disabled?: boolean; }; export const ProjectScreenEmptyState: React.FC = ({ primaryButton, disabled = false }) => (

Start a Project

Think of each project as the parent for goal-oriented work. Projects are where Jobs, Cycles, and Modules live and, along with your colleagues, help you achieve that goal.

{primaryButton?.text}

Everything starts with a project in Plane

A project could be a product’s roadmap, a marketing campaign, or launching a new car.

);