import { useState, useEffect, useRef } from "react"; export default function App() { const [openFaq, setOpenFaq] = useState(null); const [vis, setVis] = useState(new Set()); const refs = useRef({}); const [courts, setCourts] = useState(6); const [rate, setRate] = useState(50); const [util, setUtil] = useState(40); useEffect(() => { const obs = new IntersectionObserver((entries) => { entries.forEach((e) => { if (e.isIntersecting) setVis((p) => new Set([...p, e.target.dataset.s])); }); }, { threshold: 0.12 }); Object.values(refs.current).forEach((el) => el && obs.observe(el)); return () => obs.disconnect(); }, []); const r = (id) => (el) => { if (el) { el.dataset.s = id; refs.current[id] = el; } }; const v = (id) => vis.has(id); const fade = (id, d = 0) => ({ opacity: v(id) ? 1 : 0, transform: v(id) ? "translateY(0)" : "translateY(24px)", transition: `all 0.6s cubic-bezier(0.16,1,0.3,1) ${d}s` }); // Mini calculator const revenue = courts * rate * (util / 100) * 14 * 30; const costs = courts * 1800 + 2500; const cashflow = revenue - costs; const investment = courts * 30000 + 50000; const payback = cashflow > 0 ? (investment / (cashflow * 12)).toFixed(1) : "โ"; const $ = { bg: "#FFFFFF", soft: "#F8FAFC", muted: "#F1F5F9", warm: "#FFFBEB", border: "#E2E8F0", borderDark: "#CBD5E1", text: "#0F172A", sub: "#334155", dim: "#64748B", faint: "#94A3B8", blue: "#1D4ED8", blueLight: "#3B82F6", bluePale: "#DBEAFE", blueGhost: "#EFF6FF", blueDark: "#1E40AF", green: "#16A34A", greenPale: "#DCFCE7", greenGhost: "#F0FDF4", gold: "#D97706", goldPale: "#FEF3C7", }; const font = "'Inter', -apple-system, BlinkMacSystemFont, sans-serif"; const mono = "'JetBrains Mono', 'SF Mono', monospace"; const JOURNEY = [ { icon: "๐", title: "Plan", desc: "Model your investment with 60+ variables. CAPEX, operating costs, cash flow, returns, sensitivity analysis. Know your numbers before you commit.", tag: "Free" }, { icon: "๐ฐ", title: "Finance", desc: "Your planner output becomes your business case. Connect with banks and investors who understand sports facility financing.", tag: "Coming soon" }, { icon: "๐๏ธ", title: "Build", desc: "Get quotes from verified court suppliers matched to your specs. Compare pricing, quality, and timelines. Direct contact, no middleman.", tag: "Live" }, { icon: "๐พ", title: "Operate", desc: "Analytics powered by real booking data. Benchmark against similar venues. Pricing optimization and demand forecasting.", tag: "Coming soon" }, ]; const FEATURES = [ { icon: "๐ง", title: "60+ Variables", desc: "Every assumption adjustable โ court costs, rent, pricing, utilization, financing terms, exit scenarios." }, { icon: "๐", title: "6 Analysis Tabs", desc: "Assumptions, CAPEX, Operating Model, Cash Flow, Returns & Exit, Key Metrics. Each with interactive charts." }, { icon: "โ๏ธ", title: "Indoor & Outdoor", desc: "Model indoor halls (rent or build) and outdoor courts with seasonality. Compare scenarios side by side." }, { icon: "๐", title: "Sensitivity Analysis", desc: "See how returns change with different utilization and pricing. Find your break-even instantly." }, { icon: "๐ฏ", title: "Professional Metrics", desc: "IRR, MOIC, DSCR, cash-on-cash, break-even utilization, RevPAH. The metrics banks want to see." }, { icon: "๐พ", title: "Save & Compare", desc: "Unlimited scenarios. Test locations, court counts, financing structures. Find your optimal plan." }, ]; const TESTIMONIALS = [ { quote: "Padelnomics saved me months of spreadsheet work. I walked into the bank meeting with a professional business case and got financing approved in 2 weeks.", name: "Stefan M.", role: "Founder, Padel House Berlin", avatar: "S" }, { quote: "The supplier matching is brilliant. I submitted my specs and had 3 detailed proposals within a week. Ended up saving โฌ40K versus the first quote I'd gotten on my own.", name: "Anna L.", role: "Padel Club Amsterdam", avatar: "A" }, { quote: "I've opened two halls now, both planned on Padelnomics. The sensitivity analysis alone is worth it โ it showed me the exact utilization I needed to break even.", name: "Marco P.", role: "CEO, Padel Nation", avatar: "M" }, ]; const FAQS = [ { q: "Is the planner really free?", a: "Yes. The full financial planner with 60+ variables, 6 analysis tabs, sensitivity analysis, and unlimited saved scenarios is completely free. No credit card required. We make money on the supplier side โ suppliers pay to access project briefs from entrepreneurs like you." }, { q: "How does supplier matching work?", a: "After you've built your financial plan, you can optionally submit a project brief with your specs (courts, type, budget, timeline, location). We match you with 2โ5 pre-vetted suppliers who fit your requirements. They contact you directly with tailored proposals. It's free for you โ suppliers pay for the introduction." }, { q: "Do I have to share my contact details?", a: "Only if you choose to request supplier quotes. Your planner data is 100% private. If you submit a project brief, your contact details are shared only with the 2โ5 matched suppliers โ never published publicly, never sold to third parties." }, { q: "How accurate are the projections?", a: "The planner uses industry-standard financial models with real market assumptions. However, every market is different โ the projections are as good as your inputs. That's why we give you 60+ adjustable variables and sensitivity analysis, so you can stress-test your assumptions." }, { q: "Which countries/markets do you cover?", a: "The planner works globally โ just input your local costs and pricing. For supplier matching, we currently have the strongest network in Germany, Netherlands, France, Italy, UK, and Scandinavia, with rapid expansion across Europe and the Middle East." }, { q: "Can I use it for my bank or investor presentation?", a: "Absolutely โ that's one of the main use cases. The planner generates professional metrics (IRR, MOIC, DSCR, debt yield) that banks and investors expect to see. Many users export their scenario data for business plan documents." }, ]; const LOGOS_SEEN = ["200+ padel halls planned", "15 countries", "โฌ85M+ in planned investments"]; return (
Model your padel court investment with 60+ variables, sensitivity analysis, and professional-grade projections. Then get matched with verified suppliers.
Padelnomics walks you through the entire journey โ from first napkin math to your operating padel hall.
{step.desc}
Not a toy calculator. A professional-grade financial model.
When your numbers work, take the next step. Submit your project specs and we'll match you with 2โ5 verified court suppliers. They reach out directly with proposals tailored to your project.
"{t.quote}"
Join 200+ entrepreneurs who've planned their padel hall on Padelnomics. Free, no credit card, unlimited scenarios.