From 8a17d3ef4a3933836696689a454e105af7b010a4 Mon Sep 17 00:00:00 2001 From: Ishaan Gupta Date: Sat, 30 May 2026 22:30:49 +0530 Subject: [PATCH] Remove scale plan highlight --- apps/web/components/settings/billing.tsx | 55 +++--------------------- 1 file changed, 7 insertions(+), 48 deletions(-) diff --git a/apps/web/components/settings/billing.tsx b/apps/web/components/settings/billing.tsx index 5961b81a..dfbaedc8 100644 --- a/apps/web/components/settings/billing.tsx +++ b/apps/web/components/settings/billing.tsx @@ -75,7 +75,6 @@ type PlanCardDefinition = { description: string includesFrom?: string features: string[] - highlight?: boolean isContactSales?: boolean } @@ -125,7 +124,6 @@ const ADVANCED_PLAN_CARDS: PlanCardDefinition[] = [ "Gmail, S3 & Web Crawler connectors", "Dedicated support", ], - highlight: true, }, { id: "enterprise", @@ -206,24 +204,10 @@ function PlanCard({ className={cn( "relative flex min-h-[416px] flex-col overflow-hidden rounded-[14px] border p-5", "shadow-[inset_2.42px_2.42px_4.263px_rgba(11,15,21,0.7)]", - plan.highlight - ? "border-[#0B65C9] bg-[#14161A] shadow-[inset_2.42px_2.42px_4.263px_rgba(11,15,21,0.7),0_0_0_1px_rgba(11,101,201,0.72)]" - : "border-white/[0.08] bg-[#14161A]", + "border-white/[0.08] bg-[#14161A]", )} > - {plan.highlight ? ( -
- - Most popular - -
- ) : null} -

+

{plan.name}

@@ -251,33 +235,13 @@ function PlanCard({

{plan.isContactSales ? null : ( -
- +
+
-

+

{plan.credits}

-

+

of usage included

@@ -306,12 +270,7 @@ function PlanCard({ className="flex items-start gap-2 text-[13px] leading-snug text-[#C8D0DA]" key={feature} > - + {feature} ))}