From ce79bdb43a8ee8ddd356c181dc6b73cdb71d842e Mon Sep 17 00:00:00 2001 From: Horus AI Date: Mon, 13 Apr 2026 20:22:38 +0200 Subject: [PATCH] Agency plans: Starter/Growth/Scale/Pro(699)/Enterprise(Contact) --- backend/main.py | 3 ++- frontend/app/page.tsx | 22 +++++++++++++++++----- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/backend/main.py b/backend/main.py index 9419f61..b576ffe 100644 --- a/backend/main.py +++ b/backend/main.py @@ -34,7 +34,8 @@ AGENCY_PLANS = { "agency_starter": {"name": "Agency Starter", "submissions": 1000, "clients": 10, "price": 555}, "agency_growth": {"name": "Agency Growth", "submissions": 3000, "clients": 50, "price": 999}, "agency_scale": {"name": "Agency Scale", "submissions": 5000, "clients": 150, "price": 1499}, - "agency_enterprise": {"name": "Agency Enterprise", "submissions": 10000, "clients": 500, "price": 2222}, + "agency_pro": {"name": "Agency Pro", "submissions": 10000, "clients": 500, "price": 3699}, + "agency_enterprise": {"name": "Enterprise", "submissions": -1, "clients": -1, "price": -1}, } # --- Database --- diff --git a/frontend/app/page.tsx b/frontend/app/page.tsx index a7359fe..9aa22c1 100644 --- a/frontend/app/page.tsx +++ b/frontend/app/page.tsx @@ -74,7 +74,7 @@ const agencyPlans = [ clients: "10", badge: "", highlight: false, - features: ["1,000 job submissions/month", "Up to 10 client profiles", "AI resume tailoring", "White-label dashboard", "API access"], + features: ["1,000 job submissions/month", "Up to 10 client profiles", "AI resume tailoring", "White-label dashboard"], cta: "Start Agency", ctaStyle: "bg-purple-600 hover:bg-purple-500" }, @@ -103,15 +103,27 @@ const agencyPlans = [ ctaStyle: "bg-slate-600 hover:bg-slate-500" }, { - name: "Enterprise", - price: "$2,222", + name: "Pro", + price: "$3,699", period: "/mo", submissions: "10,000", clients: "500", - badge: "Max Cap", + badge: "Best Value", highlight: false, features: ["10,000 job submissions/month", "Up to 500 client profiles", "AI resume tailoring", "White-label dashboard", "Dedicated account manager", "Custom integrations"], - cta: "Get Enterprise", + cta: "Go Pro", + ctaStyle: "bg-slate-600 hover:bg-slate-500" + }, + { + name: "Enterprise", + price: "Custom", + period: "", + submissions: "Unlimited", + clients: "Unlimited", + badge: "", + highlight: false, + features: ["Unlimited job submissions", "Unlimited client profiles", "AI resume tailoring", "White-label dashboard", "Dedicated account manager", "Custom integrations", "SLA guarantee"], + cta: "Contact Us", ctaStyle: "bg-slate-600 hover:bg-slate-500" }, ]