import { FC } from "react"; import { CheckCircle } from "lucide-react"; // helpers import { cn } from "@/helpers/common.helper"; export type OnePlanUpgradeProps = { features: string[]; verticalFeatureList?: boolean; extraFeatures?: string | React.ReactNode; }; export const OnePlanUpgrade: FC = (props) => { const { features, verticalFeatureList = false, extraFeatures } = props; // env const PLANE_ONE_PAYMENT_URL = "https://prime.plane.so/"; return (
Plane One
$799
for two years’ support and updates
Upgrade to One
Everything in Free +
    {features.map((feature) => (
  • {feature}

  • ))}
{extraFeatures &&
{extraFeatures}
}
); };