From cf11add1e5c17425b0421112ce691f1271edc335 Mon Sep 17 00:00:00 2001 From: Deeman Date: Fri, 13 Feb 2026 08:24:54 +0100 Subject: [PATCH] add Podscan-inspired teaser calculator to landing page Interactive ROI estimate with 5 sliders (courts, peak rate, utilization, rent/sqm, exit multiple) and 4 output metrics (investment, monthly cash flow, annual revenue, equity IRR). Simplified model with Newton-Raphson IRR solver. Soft-gates full planner behind signup CTA. Co-Authored-By: Claude Opus 4.6 --- .../padelnomics/public/templates/landing.html | 301 +++++++++++++++++- 1 file changed, 290 insertions(+), 11 deletions(-) diff --git a/padelnomics/src/padelnomics/public/templates/landing.html b/padelnomics/src/padelnomics/public/templates/landing.html index 0e43f08..cbae2a7 100644 --- a/padelnomics/src/padelnomics/public/templates/landing.html +++ b/padelnomics/src/padelnomics/public/templates/landing.html @@ -9,26 +9,187 @@ + {% endblock %} {% block content %}
-
+

Plan Your Padel Business
in Minutes, Not Months

-

- The most sophisticated padel court financial planner available. Model your investment with 60+ variables, sensitivity analysis, and professional-grade projections. 100% free. +

+ Model your padel court investment with 60+ variables, sensitivity analysis, and professional-grade projections. 100% free.

-
- {% if user %} - Open Planner - {% else %} - Create Free Account - {% endif %} - Learn More -
+ +
+
+

Quick ROI Estimate

+ +
+ + + 6 +
+
+ + + €50/hr +
+
+ + + 40% +
+
+ + + €4/m² +
+
+ + + 6.0x +
+ +
+
+
Total Investment
+
+
CAPEX (rent model)
+
+
+
Monthly Cash Flow
+
+
After debt service
+
+
+
Annual Revenue
+
+
Net of booking fees
+
+
+
Equity IRR
+
+
5-year hold
+
+
+ +
+

This is a simplified estimate. The full planner models 60+ variables with monthly cash flows, sensitivity analysis, and more.

+ {% if user %} + Open Full Planner + {% else %} + Unlock the Full Planner — Free + {% endif %} +
+
+
+

From Idea to Operating Hall

@@ -108,3 +269,121 @@
{% endblock %} + +{% block scripts %} + +{% endblock %}