diff --git a/apps/mail/components/pricing/pricing-card.tsx b/apps/mail/components/pricing/pricing-card.tsx
index 9035d40600..aab1cce155 100644
--- a/apps/mail/components/pricing/pricing-card.tsx
+++ b/apps/mail/components/pricing/pricing-card.tsx
@@ -21,6 +21,8 @@ const PRICING_CONSTANTS = {
'Auto labeling',
'One-click AI email writing & replies',
'Instant thread AI-generated summaries',
+ 'Priority customer support',
+ 'Access to private Discord community'
],
ENTERPRISE_FEATURES: [
'Unlimited email connections',
@@ -168,7 +170,7 @@ export default function PricingCard() {
});
}
}}
- className="z-30 mt-auto inline-flex h-10 items-center justify-center gap-2.5 self-stretch overflow-hidden rounded-lg bg-[#2D2D2D] p-3 shadow shadow-black/30 outline outline-1 -outline-offset-1 outline-[#434343]"
+ className="z-30 mt-auto inline-flex h-10 items-center justify-center gap-2.5 self-stretch overflow-hidden rounded-lg bg-[#2D2D2D] p-3 shadow shadow-black/30 outline outline-1 -outline-offset-1 outline-[#434343] cursor-pointer"
>
@@ -216,6 +218,11 @@ export default function PricingCard() {
${isAnnual ? annualPrice : monthlyPrice}
+ {isAnnual && (
+
+ ${monthlyPrice}
+
+ )}
{isAnnual ? '/MONTH (billed annually)' : '/MONTH'}
@@ -286,7 +293,7 @@ export default function PricingCard() {