- No credit card required. 2,000 AI credits to get started.
+ No credit card required. 100 AI credits to get started.
diff --git a/frontend/src/marketing/pages/Pricing.tsx b/frontend/src/marketing/pages/Pricing.tsx
index e88d4d31..df5c1a4e 100644
--- a/frontend/src/marketing/pages/Pricing.tsx
+++ b/frontend/src/marketing/pages/Pricing.tsx
@@ -43,6 +43,7 @@ const Pricing: React.FC = () => {
const tiers = [
{
name: "Starter",
+ slug: "starter",
price: "$89",
cadence: "per month",
description: "For small teams starting workflows.",
@@ -67,6 +68,7 @@ const Pricing: React.FC = () => {
},
{
name: "Growth",
+ slug: "growth",
price: "$139",
cadence: "per month",
description: "For teams automating multiple workflows.",
@@ -93,6 +95,7 @@ const Pricing: React.FC = () => {
},
{
name: "Scale",
+ slug: "scale",
price: "$229",
cadence: "per month",
description: "For publishers and large orgs needing deeper control.",
@@ -305,14 +308,14 @@ const Pricing: React.FC = () => {
{/* CTA Button */}
diff --git a/frontend/src/pages/Payment.tsx b/frontend/src/pages/Payment.tsx
new file mode 100644
index 00000000..3175567a
--- /dev/null
+++ b/frontend/src/pages/Payment.tsx
@@ -0,0 +1,89 @@
+import { useEffect, useMemo, useState } from "react";
+import { useLocation, useNavigate, Link } from "react-router-dom";
+
+const PLAN_COPY: Record