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 ( -
+ Flexible pricing for teams of all sizes. No seat limits. No hidden charges. Built for growth. +
{tier.description}
-
+ {/* COMPARISON TABLE SECTION */}
+
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.
+
Igny8 supports granular access controls, SSO, audit logging, and data residency requests. Enterprise plans include SOC 2 documentation and custom security reviews.
+ Get guidance for automation mapping, migration, and onboarding.
+
+ Compare plan capabilities
+
+
+
+
+
+
+
+
+ {featureMatrix.map((row, index) => (
+ Capability
+ Starter
+
+ Growth
+
+ Scale
+
+
+ ))}
+
+ {row.feature}
+
+ {row.starter === true ? (
+
+
+ {row.growth === true ? (
+
+
+ {row.scale === true ? (
+
+
+ Usage-based credits explained
+
+
-
- Security & compliance
-
-
+ Security & compliance
+
+
+ Let's build a plan tailored to your growth.
+
+