From 6616bb776d5587acea5515701f27d8bb7cab52a3 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 15:51:58 +0000 Subject: [PATCH] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index e3d7b84..c0ce9f7 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -44,13 +44,16 @@ export default function PricingPage() { tagIcon={DollarSign} plans={[ { - id: "starter", badge: "Popular", price: "$200/mo", features: ["4-6 ad variations", "Multiple hooks and angles", "Primary ad text and headlines", "Correct ad sizes and formats", "Ready to upload"] + id: "starter", subtitle: "Popular", price: "$200/mo", 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", badge: "Most Popular", price: "$350/mo", features: ["8-12 ad variations", "Diverse visual angles", "Copy testing variations", "Multiple formats and sizes", "Platform-optimized specs", "Priority support"] + id: "professional", subtitle: "Most Popular", price: "$350/mo", 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", badge: "Enterprise", price: "$500/mo", features: ["15+ ad variations monthly", "A/B testing frameworks", "Video and static assets", "Campaign-specific creative", "Unlimited revisions", "Dedicated creative support"] + id: "enterprise", subtitle: "Enterprise", price: "$500/mo", 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"] } ]} animationType="slide-up" @@ -67,13 +70,16 @@ export default function PricingPage() { tagIcon={Zap} plans={[ { - id: "essential", badge: "Getting Started", price: "$1,500", features: ["Custom website design", "Basic Meta ads setup", "Initial creative package", "30-day support"] + id: "essential", subtitle: "Getting Started", price: "$1,500", buttons: [{ text: "Get Started", href: "/contact" }], + features: ["Custom website design", "Basic Meta ads setup", "Initial creative package", "30-day support"] }, { - id: "professional", badge: "Most Popular", price: "$2,500", features: ["Advanced website design", "Full Meta ads management", "Monthly creative production", "3-month strategy support", "Performance optimization"] + id: "professional", subtitle: "Most Popular", price: "$2,500", buttons: [{ text: "Get Started", href: "/contact" }], + features: ["Advanced website design", "Full Meta ads management", "Monthly creative production", "3-month strategy support", "Performance optimization"] }, { - id: "enterprise", badge: "Maximum Growth", price: "$4,000", features: ["Premium website design", "Dedicated ads manager", "Weekly creative delivery", "6-month strategy support", "Custom reporting", "Priority support"] + id: "enterprise", subtitle: "Maximum Growth", price: "$4,000", buttons: [{ text: "Get Started", href: "/contact" }], + features: ["Premium website design", "Dedicated ads manager", "Weekly creative delivery", "6-month strategy support", "Custom reporting", "Priority support"] } ]} animationType="slide-up" -- 2.49.1