From 554e61947b0686c15a32f568f5f0b0b6b13a51c9 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Wed, 12 Mar 2025 15:23:59 +0000 Subject: [PATCH] Update design --- src/components/Billing/EmptyBillingScreen.tsx | 59 +++++++------------ 1 file changed, 22 insertions(+), 37 deletions(-) diff --git a/src/components/Billing/EmptyBillingScreen.tsx b/src/components/Billing/EmptyBillingScreen.tsx index de6acf02a..991a4cb9d 100644 --- a/src/components/Billing/EmptyBillingScreen.tsx +++ b/src/components/Billing/EmptyBillingScreen.tsx @@ -5,7 +5,6 @@ import { MessageCircleIcon, SparklesIcon, Zap, - CheckCircle, } from 'lucide-react'; type EmptyBillingScreenProps = { @@ -39,45 +38,31 @@ export function EmptyBillingScreen(props: EmptyBillingScreenProps) { const { onUpgrade } = props; return ( -
-

Subscription Details

- -
-
-
-
- -
- -

- No Active Subscription -

+
+ +

+ No Active Subscription +

-

- Unlock premium benefits by upgrading to a subscription -

+

+ Unlock pro benefits by upgrading to a subscription +

-
-

Premium Benefits

-
- {perks.map((perk) => ( -
- - {perk.text} -
- ))} -
-
- - -
-
+
+ {perks.map((perk) => ( +

+ + {perk.text} +

+ ))}
+ +
); }