From eb511f7edd1a0bb6cb963c8e86cab40122156661 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Tue, 22 Jul 2025 18:40:23 +0100 Subject: [PATCH] Premium page UI --- src/components/Premium/PremiumPage.tsx | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/src/components/Premium/PremiumPage.tsx b/src/components/Premium/PremiumPage.tsx index a4bf0ba05..5757f6650 100644 --- a/src/components/Premium/PremiumPage.tsx +++ b/src/components/Premium/PremiumPage.tsx @@ -6,6 +6,7 @@ import { Clock, GitPullRequest, Lock, + PartyPopper, Play, Star, Users2, @@ -49,7 +50,9 @@ function FeatureCard(props: FeatureCardProps) {

{title}

-

{description}

+

+ {description} +

); @@ -297,7 +300,12 @@ export function PremiumPage() { {/* Features Grid */}

- Click any card below to watch a quick demo of our AI features + + Paid users{' '} + + get unlimited access + {' '} + to all the features below.

{features.map((feature, index) => ( @@ -309,7 +317,11 @@ export function PremiumPage() { thumbnail={feature.thumbnail} duration={feature.duration} isComingSoon={feature.isComingSoon} - onClick={feature.videoId ? () => setActiveVideoId(feature.videoId) : undefined} + onClick={ + feature.videoId + ? () => setActiveVideoId(feature.videoId) + : undefined + } /> ))}