update landing journey: 5-stage funnel with Coming Soon badges
Explore → Plan → Finance → Build → Grow, with .grid-5 layout. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Landing page journey section: renamed "From Idea to Operating Hall" → "Your Journey", expanded from 4 cards to 5 (Explore → Plan → Finance → Build → Grow) with "Coming Soon" badges on unreleased stages
|
||||||
|
- Added `.grid-5` CSS helper for 5-column grid layout
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- **Pico CSS → Tailwind CSS v4** — full design system migration across all templates (except planner, which keeps its own CSS)
|
- **Pico CSS → Tailwind CSS v4** — full design system migration across all templates (except planner, which keeps its own CSS)
|
||||||
- Standalone Tailwind CLI binary (no Node.js) with `make css-build` / `make css-watch`
|
- Standalone Tailwind CLI binary (no Node.js) with `make css-build` / `make css-watch`
|
||||||
|
|||||||
@@ -119,23 +119,27 @@
|
|||||||
|
|
||||||
<!-- The Journey -->
|
<!-- The Journey -->
|
||||||
<section class="py-12">
|
<section class="py-12">
|
||||||
<h2 class="text-2xl text-center mb-8">From Idea to Operating Hall</h2>
|
<h2 class="text-2xl text-center mb-8">Your Journey</h2>
|
||||||
<div class="grid-4">
|
<div class="grid-5">
|
||||||
<div class="card border-l-4 border-l-electric">
|
<div class="card border-l-4 border-l-electric">
|
||||||
<p class="font-semibold text-navy mb-2">📊 Plan</p>
|
<p class="font-semibold text-navy mb-2">🔍 Explore <span class="badge">Coming Soon</span></p>
|
||||||
<p class="text-sm text-slate-dark">Model your padel hall investment with our financial planner. CAPEX, operating costs, cash flow, returns, sensitivity analysis.</p>
|
<p class="text-sm text-slate-dark">Market demand analysis, whitespace mapping, location scoring. Is padel viable in your area?</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="card border-l-4 border-l-accent">
|
<div class="card border-l-4 border-l-accent">
|
||||||
<p class="font-semibold text-navy mb-2">💰 Finance</p>
|
<p class="font-semibold text-navy mb-2">📊 Plan</p>
|
||||||
<p class="text-sm text-slate-dark">Connect with banks and investors experienced in sports facility loans. Your planner data becomes your business case.</p>
|
<p class="text-sm text-slate-dark">Model your investment with our financial planner. CAPEX, operating costs, cash flow, returns, sensitivity analysis.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="card border-l-4 border-l-warning">
|
<div class="card border-l-4 border-l-warning">
|
||||||
<p class="font-semibold text-navy mb-2">🏗️ Build</p>
|
<p class="font-semibold text-navy mb-2">💰 Finance <span class="badge">Coming Soon</span></p>
|
||||||
|
<p class="text-sm text-slate-dark">Connect with banks and investors experienced in sports facility loans. Your planner data becomes your business case.</p>
|
||||||
|
</div>
|
||||||
|
<div class="card border-l-4 border-l-danger">
|
||||||
|
<p class="font-semibold text-navy mb-2">🏗️ Build <span class="badge">Coming Soon</span></p>
|
||||||
<p class="text-sm text-slate-dark">Get quotes from verified court suppliers. Compare pricing, quality, and delivery timelines for your specific project.</p>
|
<p class="text-sm text-slate-dark">Get quotes from verified court suppliers. Compare pricing, quality, and delivery timelines for your specific project.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="card border-l-4 border-l-slate">
|
<div class="card border-l-4 border-l-slate">
|
||||||
<p class="font-semibold text-navy mb-2">🎾 Operate</p>
|
<p class="font-semibold text-navy mb-2">📈 Grow <span class="badge">Coming Soon</span></p>
|
||||||
<p class="text-sm text-slate-dark">Coming soon: analytics powered by real booking data, benchmarking against similar venues, optimization recommendations.</p>
|
<p class="text-sm text-slate-dark">Launch playbook, performance benchmarking, operational KPIs, and expansion analytics for your venue.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -184,6 +184,9 @@
|
|||||||
.grid-4 {
|
.grid-4 {
|
||||||
@apply grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6;
|
@apply grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6;
|
||||||
}
|
}
|
||||||
|
.grid-5 {
|
||||||
|
@apply grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-5 gap-6;
|
||||||
|
}
|
||||||
|
|
||||||
/* Monospace data display */
|
/* Monospace data display */
|
||||||
.metric {
|
.metric {
|
||||||
|
|||||||
Reference in New Issue
Block a user