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

Overview of your projects, activity, and metrics

When you have created a project and have issues assigned, you will see metrics, activity, and things you care about here. This is personalized to your role in projects, so project admins will see more than members.

{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.

);