import { FC } from "react"; import Image from "next/image"; import { useTheme } from "next-themes"; import { Crown } from "lucide-react"; import { Button } from "@plane/ui"; // public images import EstimateEmptyDarkImage from "@/public/empty-state/estimates/dark.svg"; import EstimateEmptyLightImage from "@/public/empty-state/estimates/light.svg"; export const EstimateEEBanner: FC = () => { const { resolvedTheme } = useTheme(); const emptyScreenImage = resolvedTheme === "light" ? EstimateEmptyLightImage : EstimateEmptyDarkImage; return (
Estimate issues better with points
Use points to estimate scope of work better, monitor capacity, track the burn-down report for your project.
Talk custom pricing
Empty estimate image
); };