diff --git a/frontend/src/components/Marketing.tsx b/frontend/src/components/Marketing.tsx
index caf6670e..eb376a7d 100644
--- a/frontend/src/components/Marketing.tsx
+++ b/frontend/src/components/Marketing.tsx
@@ -653,12 +653,6 @@ export function Marketing() {
- {/* Free Account Callout */}
-
{PRICING_PLANS.filter((plan) => {
diff --git a/frontend/src/config/pricingConfig.tsx b/frontend/src/config/pricingConfig.tsx
index 8654be2e..7b1e8aa6 100644
--- a/frontend/src/config/pricingConfig.tsx
+++ b/frontend/src/config/pricingConfig.tsx
@@ -22,7 +22,7 @@ export const PRICING_PLANS: PricingPlan[] = [
description: "Try Maple with limited usage",
features: [
{
- text: "10 messages per week",
+ text: "25 messages per week",
included: true,
icon:
},
@@ -42,16 +42,16 @@ export const PRICING_PLANS: PricingPlan[] = [
icon:
},
{ text: "Rename Chats", included: true, icon:
},
- { text: "Gemma 3 27B", included: false, icon:
},
+ { text: "Image Upload", included: false, icon:
},
+ { text: "Document Upload", included: false, icon:
},
{ text: "DeepSeek R1 70B", included: false, icon:
},
+ { text: "Gemma 3 27B", included: false, icon:
},
{
text: "Mistral Small 3.1 24B",
included: false,
icon:
},
- { text: "Qwen 2.5 72B", included: false, icon:
},
- { text: "Image Upload", included: false, icon:
},
- { text: "Document Upload", included: false, icon:
}
+ { text: "Qwen 2.5 72B", included: false, icon:
}
],
ctaText: "Start Free"
},
@@ -103,17 +103,18 @@ export const PRICING_PLANS: PricingPlan[] = [
included: true,
icon:
},
+ { text: "Image Upload", included: true, icon:
},
{
- text: "Priority support",
+ text: "Document Upload",
included: true,
icon:
},
- { text: "Gemma 3 27B", included: true, icon:
},
{
text: "DeepSeek R1 70B",
included: true,
icon:
},
+ { text: "Gemma 3 27B", included: true, icon:
},
{
text: "Mistral Small 3.1 24B",
included: true,
@@ -123,12 +124,6 @@ export const PRICING_PLANS: PricingPlan[] = [
text: "Qwen 2.5 72B",
included: true,
icon:
- },
- { text: "Image Upload", included: true, icon:
},
- {
- text: "Document Upload",
- included: true,
- icon:
}
],
ctaText: "Start Chatting",
@@ -154,9 +149,8 @@ export const PRICING_PLANS: PricingPlan[] = [
included: true,
icon:
},
- { text: "Gemma 3 27B", included: true, icon:
},
{
- text: "DeepSeek R1 70B",
+ text: "Early Access to features and models",
included: true,
icon:
},
@@ -165,6 +159,22 @@ export const PRICING_PLANS: PricingPlan[] = [
text: "Document Upload",
included: true,
icon:
+ },
+ {
+ text: "DeepSeek R1 70B",
+ included: true,
+ icon:
+ },
+ { text: "Gemma 3 27B", included: true, icon:
},
+ {
+ text: "Mistral Small 3.1 24B",
+ included: true,
+ icon:
+ },
+ {
+ text: "Qwen 2.5 72B",
+ included: true,
+ icon:
}
],
ctaText: "Start Chatting"
@@ -180,7 +190,12 @@ export const PRICING_PLANS: PricingPlan[] = [
icon:
},
{
- text: "Even more usage per team member",
+ text: "2x more usage than Pro per team member",
+ included: true,
+ icon:
+ },
+ {
+ text: "Priority support",
included: true,
icon:
},
@@ -194,25 +209,30 @@ export const PRICING_PLANS: PricingPlan[] = [
included: true,
icon:
},
- { text: "Gemma 3 27B", included: true, icon:
},
{
- text: "DeepSeek R1 70B",
+ text: "Early Access to features and models",
included: true,
icon:
},
+ { text: "Image Upload", included: true, icon:
},
{
- text: "Mistral Small 3.1 24B",
+ text: "Document Upload",
included: true,
icon:
},
{
- text: "Qwen 2.5 72B",
+ text: "DeepSeek R1 70B",
included: true,
icon:
},
- { text: "Image Upload", included: true, icon:
},
+ { text: "Gemma 3 27B", included: true, icon:
},
{
- text: "Document Upload",
+ text: "Mistral Small 3.1 24B",
+ included: true,
+ icon:
+ },
+ {
+ text: "Qwen 2.5 72B",
included: true,
icon:
}
diff --git a/frontend/src/routes/pricing.tsx b/frontend/src/routes/pricing.tsx
index 17a7f97f..cd8fd2df 100644
--- a/frontend/src/routes/pricing.tsx
+++ b/frontend/src/routes/pricing.tsx
@@ -77,7 +77,7 @@ function PricingFAQ() {
The plans are sized to grow with your needs.
-
- Free: 10 messages per week, resets Sunday 00:00 UTC. Max length on individual
+ Free: 25 messages per week, resets Sunday 00:00 UTC. Max length on individual
messages.
- Pro: Generous usage for power users with a high monthly cap
@@ -714,7 +714,7 @@ function PricingPage() {
let monthlyPrice = monthlyOriginalPrice;
if (product) {
- monthlyOriginalPrice = (product.default_price.unit_amount / 100).toFixed(2);
+ monthlyOriginalPrice = (product.default_price.unit_amount / 100).toFixed(0);
monthlyPrice = monthlyOriginalPrice;
}