import { Check, ChevronRight } from "lucide-react";
import { PlusSigns } from "../icons/plus-signs";
import { Button } from "../ui/button";
import { cn } from "@/lib/utils";
type PricingTier = {
name: string;
price: string;
description: string;
features: string[];
cta: {
text: string;
href: string;
};
};
const ITEMS: PricingTier[] = [
{
name: "STARTER",
price: "$0",
description: "Free for everyone",
features: ["Unlimited members", "250 transactions", "No support"],
cta: {
text: "Start for free",
href: "/signup",
},
},
{
name: "BASIC",
price: "$29.99",
description: "per user per month",
features: [
"All free plan features and...",
"Mainline AI",
"Unlimited teams",
],
cta: {
text: "7 days free",
href: "/signup",
},
},
{
name: "ENTERPRISE",
price: "$ENT",
description: "Custom pricing",
features: [
"All basic plan features and...",
"Advanced security controls",
"Migration support",
],
cta: {
text: "Book a demo",
href: "/contact",
},
},
];
const PricingCards = () => {
return (
Use Charter for free with your whole team. Upgrade to enable
enhanced features.
Pricing
{tier.price}
{tier.description}