import React from "react"; import Image from "next/image"; import { useTheme } from "next-themes"; // ui import { getButtonStyling } from "@plane/ui"; // icons import { Crown } from "lucide-react"; // helper import { cn } from "helpers/common.helper"; // constants import { WORKSPACE_ACTIVE_CYCLES_DETAILS } from "constants/cycle"; export const WorkspaceActiveCyclesUpgrade = () => { // next-themes const { resolvedTheme } = useTheme(); // derived values const isDarkMode = resolvedTheme === "dark"; return (

On-demand snapshots of all your cycles

Monitor cycles across projects, track high-priority issues, and zoom in cycles that need attention.

Upgrade
l-1
r-1 r-2
{WORKSPACE_ACTIVE_CYCLES_DETAILS.map((item) => (

{item.title}

{item.description}
))}
); };