Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions apps/web/app/(app)/premium/Pricing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,15 +133,14 @@ export function Pricing() {
</RadioGroup>

<div className="ml-1">
{/* <Badge>Save up to 40%!</Badge> */}
<Badge>Save 32%!</Badge>
<Badge>Save up to 40%!</Badge>
</div>
</div>

{/* 3 col layout */}
{/* <div className="isolate mx-auto mt-10 grid max-w-md grid-cols-1 gap-y-8 lg:mx-0 lg:max-w-none lg:grid-cols-3"> */}
{/* 2 col layout */}
<div className="isolate mx-auto mt-10 grid max-w-md grid-cols-1 gap-x-4 gap-y-8 lg:max-w-4xl lg:grid-cols-2">
<div className="isolate mx-auto mt-10 grid max-w-md grid-cols-1 gap-y-8 lg:mx-0 lg:max-w-none lg:grid-cols-3">
{/* 2 col layout */}
{/* <div className="isolate mx-auto mt-10 grid max-w-md grid-cols-1 gap-x-4 gap-y-8 lg:max-w-4xl lg:grid-cols-2"> */}
{tiers.map((tier, tierIdx) => {
const isCurrentPlan = tier.tiers?.[frequency.value] === premiumTier;

Expand All @@ -165,11 +164,11 @@ export function Pricing() {
key={tier.name}
className={clsx(
// 3 col layout
// tierIdx === 1 ? "lg:z-10 lg:rounded-b-none" : "lg:mt-8", // middle tier
// tierIdx === 0 ? "lg:rounded-r-none" : "",
// tierIdx === tiers.length - 1 ? "lg:rounded-l-none" : "",
tierIdx === 1 ? "lg:z-10 lg:rounded-b-none" : "lg:mt-8", // middle tier
tierIdx === 0 ? "lg:rounded-r-none" : "",
tierIdx === tiers.length - 1 ? "lg:rounded-l-none" : "",
// 2 col layout
"flex flex-col justify-between rounded-3xl bg-white p-8 ring-1 ring-gray-200 xl:p-10",
// "flex flex-col justify-between rounded-3xl bg-white p-8 ring-1 ring-gray-200 xl:p-10",
)}
>
<div>
Expand Down
26 changes: 13 additions & 13 deletions apps/web/app/(app)/premium/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,20 +113,20 @@ const businessTier = {
annually: discount(pricing.BUSINESS_MONTHLY, pricing.BUSINESS_ANNUALLY),
},
description: "Unlock full AI-powered email management",
// features: [
// "Everything in pro",
// "Unlimited AI credits",
// "No need to provide your own OpenAI API key",
// "Priority support",
// ],
features: [
"AI automation",
"Bulk email unsubscriber",
"Cold email blocker",
"Email analytics",
"Everything in pro",
"Unlimited AI credits",
"No need to provide your own OpenAI API key",
"Priority support",
],
// features: [
// "AI automation",
// "Bulk email unsubscriber",
// "Cold email blocker",
// "Email analytics",
// "Unlimited AI credits",
// "Priority support",
// ],
cta: "Upgrade",
mostPopular: true,
};
Expand Down Expand Up @@ -173,10 +173,10 @@ export const tiers: {
cta: string;
mostPopular?: boolean;
}[] = [
// basicTier,
// proTier,
basicTier,
proTier,
businessTier,
copilotTier,
// copilotTier,
];

export const lifetimeFeatures = [
Expand Down