From db50ee8979119429bdc20d1d1a6eca583a776124 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 15:48:36 +0000 Subject: [PATCH] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 4b07c35..fea0c1f 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -44,15 +44,18 @@ export default function PricingPage() { tagIcon={DollarSign} plans={[ { - id: "starter", subtitle: "Perfect for small businesses", price: "$200/mo", buttons: [{ text: "Get Started", href: "/contact" }], + id: "starter", badge: "Good for Beginners", badgeIcon: Sparkles, + price: "$200/mo", subtitle: "Fresh creative angles monthly", buttons: [{ text: "Get Started", href: "/contact" }], features: ["4-6 ad variations", "Multiple hooks and angles", "Primary ad text and headlines", "Correct ad sizes and formats", "Ready to upload"] }, { - id: "professional", subtitle: "Ideal for growing companies", price: "$350/mo", buttons: [{ text: "Get Started", href: "/contact" }], + id: "professional", badge: "Most Popular", badgeIcon: Star, + price: "$350/mo", subtitle: "Comprehensive creative support", buttons: [{ text: "Get Started", href: "/contact" }], features: ["8-12 ad variations", "Diverse visual angles", "Copy testing variations", "Multiple formats and sizes", "Platform-optimized specs", "Priority support"] }, { - id: "enterprise", subtitle: "For established brands", price: "$500/mo", buttons: [{ text: "Get Started", href: "/contact" }], + id: "enterprise", badge: "For Scaling Brands", badgeIcon: Zap, + price: "$500/mo", subtitle: "Maximum creative output and strategy", buttons: [{ text: "Get Started", href: "/contact" }], features: ["15+ ad variations monthly", "A/B testing frameworks", "Video and static assets", "Campaign-specific creative", "Unlimited revisions", "Dedicated creative support"] } ]} @@ -64,22 +67,25 @@ export default function PricingPage() {