Zone-based pricing management with seasonal adjustments, competitor benchmarking, and revenue analytics. Inspired by Stripe, Shopify Markets, DoorDash, and ServiceTitan.
RegionalPricingScreen — main listing with KPIs and toggle control
useQuery(api.pricebook.regionalPricing.listRegions)
RegionDetailScreen — zone overview with zip chips and map
useQuery(api.pricebook.regionalPricing.getRegion, { regionId })
CreateRegionScreen — form with color picker, zip entry, and slider
useMutation(api.pricebook.regionalPricing.createRegion)
PricingTiersScreen — service-by-service pricing with region selector
useQuery(api.pricebook.regionalPricing.getRegionPricing)
RateCardScreen — per-service pricing grid with seasonal indicators
useQuery(api.pricebook.regionalPricing.getRateCard)
SeasonalAdjustmentsScreen — calendar with peak/off-peak periods
useQuery(api.pricebook.regionalPricing.getSeasons)
CompetitorComparisonScreen — market positioning with AI recommendations
useQuery(api.pricebook.regionalPricing.getMarketComparison)
PricingAnalyticsScreen — revenue charts, sensitivity, and AI insights
useQuery(api.pricebook.regionalPricing.getAnalytics)
Manage base pricing by service category and configure seasonal multipliers that auto-adjust rates throughout the year.
| Service | Base Price | Region Mult. | Seasonal Factor | Final Price | Actions |
|---|---|---|---|---|---|
Kitchen Remodel Full renovation |
$18,500 | 1.15x | 1.10x Spring | $23,403 | |
Bathroom Remodel Standard scope |
$12,200 | 1.15x | 1.10x Spring | $15,433 | |
Roof Replacement Shingle & flat |
$9,800 | 1.08x | 1.25x Summer | $13,230 | |
HVAC Install Central air & furnace |
$7,500 | 1.12x | 1.10x Spring | $9,240 | |
Electrical Panel 200 amp upgrade |
$4,200 | 1.10x | 1.00x Base | $4,620 |
Compare your pricing against market averages across service categories. Position indicators show where you stand relative to competitors in your regions.
| Service | Your Price | Market Avg | Position | Recommended Adj. |
|---|---|---|---|---|
Kitchen Remodel |
$23,403 | $21,600 | +8.3% Above | Hold — strong position |
Bathroom Remodel |
$15,433 | $14,700 | +5.0% Above | Hold — competitive |
Roof Replacement |
$13,230 | $13,500 | -2.0% Below | Raise 5–8% |
HVAC Install |
$9,240 | $8,200 | +12.7% Above | Monitor win rate |
Electrical Panel |
$4,620 | $4,500 | +2.7% At Market | Hold — aligned |
Schema tables, queries, mutations, and hooks that power the Regional Pricing system.