diff --git a/web/src/padelnomics/planner/templates/export.html b/web/src/padelnomics/planner/templates/export.html
index a2446dd..e962fb8 100644
--- a/web/src/padelnomics/planner/templates/export.html
+++ b/web/src/padelnomics/planner/templates/export.html
@@ -43,7 +43,7 @@
{{ t.export_subtitle }}
- €99 one-time
+ €149 one-time
{% for key in ['planner_export_f1','planner_export_f2','planner_export_f3','planner_export_f4','planner_export_f5','planner_export_f6','planner_export_f7','planner_export_f8'] %}
diff --git a/web/src/padelnomics/scripts/setup_paddle.py b/web/src/padelnomics/scripts/setup_paddle.py
index 240f436..5273cf3 100644
--- a/web/src/padelnomics/scripts/setup_paddle.py
+++ b/web/src/padelnomics/scripts/setup_paddle.py
@@ -40,23 +40,15 @@ if not PADDLE_API_KEY:
# Maps our internal key -> product name in Paddle.
# The name is used to match existing products on sync.
PRODUCTS = [
- # Subscriptions — Basic tier (new)
- {
- "key": "supplier_basic_monthly",
- "name": "Supplier Basic (Monthly)",
- "price": 3900,
- "currency": CurrencyCode.EUR,
- "interval": "month",
- "billing_type": "subscription",
- },
- {
- "key": "supplier_basic_yearly",
- "name": "Supplier Basic (Yearly)",
- "price": 34900,
- "currency": CurrencyCode.EUR,
- "interval": "year",
- "billing_type": "subscription",
- },
+ # NOTE: Basic tier is free — no Paddle subscription product needed.
+ # Suppliers select Basic during signup without a payment flow.
+ # These entries are kept as dead/legacy references only; do not create them.
+ # {
+ # "key": "supplier_basic_monthly",
+ # "name": "Supplier Basic (Monthly)",
+ # "price": 0,
+ # ...
+ # },
# Subscriptions — Growth tier (existing monthly + new yearly)
{
"key": "supplier_growth",
@@ -119,7 +111,7 @@ PRODUCTS = [
{
"key": "boost_card_color",
"name": "Boost: Custom Card Color",
- "price": 1900,
+ "price": 5900,
"currency": CurrencyCode.EUR,
"interval": "month",
"billing_type": "subscription",
@@ -172,7 +164,7 @@ PRODUCTS = [
{
"key": "business_plan",
"name": "Padel Business Plan (PDF)",
- "price": 9900,
+ "price": 14900,
"currency": CurrencyCode.EUR,
"billing_type": "one_time",
},
diff --git a/web/src/padelnomics/suppliers/routes.py b/web/src/padelnomics/suppliers/routes.py
index f7d2977..6fa090b 100644
--- a/web/src/padelnomics/suppliers/routes.py
+++ b/web/src/padelnomics/suppliers/routes.py
@@ -36,9 +36,9 @@ bp = Blueprint(
PLAN_FEATURES = {
"supplier_basic": {
"name": "Basic",
- "monthly_price": 39,
- "yearly_price": 349,
- "yearly_monthly_equivalent": 29,
+ "monthly_price": 0,
+ "yearly_price": 0,
+ "yearly_monthly_equivalent": 0,
"monthly_credits": 0,
"paddle_key_monthly": "supplier_basic_monthly",
"paddle_key_yearly": "supplier_basic_yearly",
@@ -112,7 +112,7 @@ BOOST_OPTIONS = [
"key": "boost_card_color",
"type": "card_color",
"name_key": "sd_boost_card_color_name",
- "price": 19,
+ "price": 59,
"desc_key": "sd_boost_card_color_desc",
},
]