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
+ }
/>
))}