From 228215e49f0aeed2a83b00d7a9654067cf44cdb0 Mon Sep 17 00:00:00 2001 From: Desktop Date: Fri, 14 Nov 2025 02:36:10 +0500 Subject: [PATCH] Update Pricing.tsx --- frontend/src/marketing/pages/Pricing.tsx | 618 ++++++++++++++++------- 1 file changed, 429 insertions(+), 189 deletions(-) diff --git a/frontend/src/marketing/pages/Pricing.tsx b/frontend/src/marketing/pages/Pricing.tsx index 44d05c0e..642c4c1a 100644 --- a/frontend/src/marketing/pages/Pricing.tsx +++ b/frontend/src/marketing/pages/Pricing.tsx @@ -1,219 +1,459 @@ import React from "react"; -import SectionHeading from "../components/SectionHeading"; -import CTASection from "../components/CTASection"; - -const tiers = [ - { - name: "Launch", - price: "$199", - cadence: "per month", - description: "For emerging teams launching AI-assisted content operations.", - features: [ - "Up to 5 team seats", - "Planner + Writer modules", - "3 automation recipes", - "2,500 AI credits / month", - "Email support", - ], - badge: "Most popular for startups", - }, - { - name: "Scale", - price: "$499", - cadence: "per month", - description: "For growing organizations automating multi-site workflows.", - features: [ - "Unlimited seats", - "Planner + Writer + Thinker", - "All automation recipes", - "10,000 AI credits / month", - "Priority support & onboarding", - ], - featured: true, - badge: "Best value", - }, - { - name: "Enterprise", - price: "Let’s talk", - cadence: "", - description: "For publishers and agencies needing advanced governance.", - features: [ - "Custom SLAs and SSO", - "Private automation recipes", - "Dedicated success architect", - "Credit scaling & on-prem options", - "Security reviews & compliance support", - ], - badge: "Tailored programs", - }, -]; - -const featureMatrix = [ - { - feature: "Global keyword database", - launch: true, - scale: true, - enterprise: true, - }, - { - feature: "AI clustering & topical maps", - launch: "10k keywords", - scale: "100k keywords", - enterprise: "Unlimited", - }, - { - feature: "Automation recipes", - launch: "3 core", - scale: "All 12", - enterprise: "Custom", - }, - { - feature: "WordPress publishing", - launch: "Manual", - scale: "Automated", - enterprise: "Automated + custom CMS", - }, - { - feature: "Support", - launch: "Email + docs", - scale: "Priority + onboarding", - enterprise: "Dedicated CSM", - }, -]; +import { Link } from "react-router-dom"; +import { + RocketLaunchIcon, + ChatBubbleLeftRightIcon, + CheckIcon, + XMarkIcon, + SparklesIcon, + PhotoIcon, + BoltIcon, + ChartBarIcon, + UserGroupIcon, + CreditCardIcon, + ShieldCheckIcon, +} from "@heroicons/react/24/outline"; const Pricing: React.FC = () => { + const renderCta = (cta: { label: string; href: string }, className: string) => { + const isExternal = cta.href.startsWith("http"); + + if (isExternal) { + return ( + + {cta.label} + + ); + } + + return ( + + {cta.label} + + ); + }; + + const tiers = [ + { + name: "Starter", + price: "$89", + cadence: "per month", + description: "For small teams starting workflows.", + icon: SparklesIcon, + iconColor: "from-[#0693e3] to-[#0472b8]", + features: [ + "3 sites", + "5 users", + "500 keywords", + "100 clusters", + "300 content ideas", + "120K words/month", + "10 daily content tasks", + "1,000 AI credits/month", + "120 images/month", + "HIDREAM image model", + "AI Writer", + "Image Generation", + "Email support", + ], + badge: "Most popular for startups", + }, + { + name: "Growth", + price: "$139", + cadence: "per month", + description: "For teams automating multiple workflows.", + icon: BoltIcon, + iconColor: "from-[#0bbf87] to-[#08966b]", + features: [ + "10 sites", + "10 users", + "1,000 keywords", + "200 clusters", + "600 content ideas", + "240K words/month", + "20 daily content tasks", + "2,000 AI credits/month", + "240 images/month", + "DALL-E 3 + HIDREAM", + "AI Writer", + "Image Generation", + "Auto Publish", + "Priority support & onboarding", + ], + featured: true, + badge: "Best value", + }, + { + name: "Scale", + price: "$229", + cadence: "per month", + description: "For publishers and large orgs needing deeper control.", + icon: ChartBarIcon, + iconColor: "from-[#5d4ae3] to-[#3a2f94]", + features: [ + "25 sites", + "25 users", + "2,000 keywords", + "400 clusters", + "1,200 content ideas", + "480K words/month", + "40 daily content tasks", + "4,000 AI credits/month", + "500 images/month", + "DALL-E 3 + HIDREAM", + "AI Writer", + "Image Generation", + "Auto Publish", + "Custom Prompts", + "Priority support & onboarding", + ], + badge: "For scaling teams", + }, + ]; + + const featureMatrix = [ + { + feature: "Sites", + starter: "3", + growth: "10", + scale: "25", + }, + { + feature: "Users", + starter: "5", + growth: "10", + scale: "25", + }, + { + feature: "Keywords", + starter: "500", + growth: "1,000", + scale: "2,000", + }, + { + feature: "Clusters", + starter: "100", + growth: "200", + scale: "400", + }, + { + feature: "Content Ideas", + starter: "300", + growth: "600", + scale: "1,200", + }, + { + feature: "Monthly Word Count", + starter: "120K", + growth: "240K", + scale: "480K", + }, + { + feature: "Daily Content Tasks", + starter: "10", + growth: "20", + scale: "40", + }, + { + feature: "AI Credits / Month", + starter: "1,000", + growth: "2,000", + scale: "4,000", + }, + { + feature: "Images / Month", + starter: "120", + growth: "240", + scale: "500", + }, + { + feature: "Image Models", + starter: "HIDREAM", + growth: "DALL-E 3 + HIDREAM", + scale: "DALL-E 3 + HIDREAM", + }, + { + feature: "AI Writer", + starter: true, + growth: true, + scale: true, + }, + { + feature: "Image Generation", + starter: true, + growth: true, + scale: true, + }, + { + feature: "Auto Publish", + starter: false, + growth: true, + scale: true, + }, + { + feature: "Custom Prompts", + starter: false, + growth: false, + scale: true, + }, + { + feature: "Support", + starter: "Email + docs", + growth: "Priority + onboarding", + scale: "Priority + onboarding", + }, + ]; + return ( -
-
- -
- Looking to migrate from an existing AI content stack? Ask about our migration credit and onboarding accelerator. +
+ {/* PRICING HERO SECTION */} +
+
+ +
+ + Pricing + +

+ Simple plans that scale with your automation goals. +

+

+ Flexible pricing for teams of all sizes. No seat limits. No hidden charges. Built for growth. +

-
- {tiers.map((tier) => ( -
- {tier.badge && ( - - {tier.badge} - - )} -
-

{tier.name}

-

{tier.description}

-
-
- {tier.price} - {tier.cadence && ( - - {tier.cadence} - - )} -
-
    - {tier.features.map((feature, idx) => { - const colors = ["bg-[#0693e3]", "bg-[#0bbf87]", "bg-[#ff7a00]", "bg-[#5d4ae3]"]; - return ( -
  • - - {feature} -
  • - ); - })} -
-
+ {/* Badge */} + {tier.badge && ( + + {tier.badge} + + )} -
-

- Compare plan capabilities -

-
- - - - - - - - - - - {featureMatrix.map((row, index) => ( - - - - - - - ))} - -
CapabilityLaunchScaleEnterprise
{row.feature} - {row.launch === true ? Included : row.launch} - - {row.scale === true ? Included : row.scale} - - {row.enterprise === true ? Included : row.enterprise} -
+ {/* Icon */} +
+ +
+ + {/* Plan Info */} +
+

{tier.name}

+

{tier.description}

+
+ + {/* Price */} +
+ {tier.price} + {tier.cadence && ( + + {tier.cadence} + + )} +
+ + {/* Features List */} +
    + {tier.features.map((feature, idx) => { + const colors = [ + "bg-[#0693e3]", + "bg-[#0bbf87]", + "bg-[#ff7a00]", + "bg-[#5d4ae3]", + ]; + return ( +
  • + + {feature} +
  • + ); + })} +
+ + {/* CTA Button */} + +
+ ); + })}
-
-
-
-

- - Usage-based credits explained -

-

+ {/* COMPARISON TABLE SECTION */} +

+

+ Compare plan capabilities +

+
+
+ + + + + + + + + + + {featureMatrix.map((row, index) => ( + + + + + + + ))} + +
CapabilityStarter + Growth + Scale
{row.feature} + {row.starter === true ? ( + + ) : row.starter === false ? ( + + ) : ( + + + {row.starter} + + )} + + {row.growth === true ? ( + + ) : row.growth === false ? ( + + ) : ( + + + {row.growth} + + )} + + {row.scale === true ? ( + + ) : row.scale === false ? ( + + ) : ( + + + {row.scale} + + )} +
+
+
+
+ + {/* INFO BLOCKS SECTION */} +
+
+
+
+
+ +
+

+ Usage-based credits explained +

+
+

Igny8 credits cover AI-generated drafts, clustering, and image creation. Monitor usage in real time from your dashboard. Credits roll over for 30 days.

-

+

Need more? Add packs instantly or set automation rules to pause when thresholds are hit.

-
-

- - Security & compliance -

-

+

+
+
+ +
+

+ Security & compliance +

+
+

Igny8 supports granular access controls, SSO, audit logging, and data residency requests. Enterprise plans include SOC 2 documentation and custom security reviews.

- + {/* FINAL CTA */} +
+ {/* Radial glow */} +
+ +
+

+ Let's build a plan tailored to your growth. +

+

+ Get guidance for automation mapping, migration, and onboarding. +

+
+ + + Talk to sales + + + + Start free trial + +
+
+
); }; export default Pricing; -