- Migration 079: state_trucking_requirements table seeded for all 51 jurisdictions (IRP, IFTA, weight-distance taxes, MCP/CARB, intrastate authority, state DOT) - Migration 080: carrier_operating_states tracking table - 13 new state trucking services in catalog ($99-$599) - StateTruckingHandler with state-specific admin todos - DOT compliance checker: 7 new state-level checks (IRP, IFTA, weight tax, MCP/CARB, emissions, intrastate authority, state DOT number) - New API endpoint: GET /api/v1/dot/state-requirements - DOT order page: state compliance service cards with auto-preselect - California trucking landing page (MCP + CARB + IRP + IFTA) - Fix: DOT checker nav missing Trucking/DOT section - Fix: All 8 DOT intake pages missing style block (dangling text) - Fix: DOT confirmation email now says "Order Confirmed" not "Action Required" - Fix: MCS150/BOC3/StateTrucking handlers missing async process() method - Fix: StateTruckingHandler connection leak + slug resolution Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
1.1 KiB
Text
30 lines
1.1 KiB
Text
---
|
|
import Base from "../../layouts/Base.astro";
|
|
import Wizard from "../../components/intake/Wizard.astro";
|
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
|
|
|
const slug = "dot-full-compliance";
|
|
const steps = INTAKE_MANIFEST[slug];
|
|
const meta = SERVICE_META[slug];
|
|
const title = meta ? `Order ${meta.name}` : "Order";
|
|
const description = "MCS-150 + BOC-3 + UCR + Drug & Alcohol + Audit Prep.";
|
|
---
|
|
|
|
<Base title={title} description={description}>
|
|
<main>
|
|
<section class="pw-order-intro">
|
|
<h1>{meta?.name}</h1>
|
|
<p class="pw-desc">{description}</p>
|
|
</section>
|
|
|
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
|
</main>
|
|
</Base>
|
|
|
|
<style>
|
|
main { max-width: 900px; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
|
|
.pw-order-intro { margin-bottom: 1.5rem; }
|
|
.pw-order-intro h1 { margin: 0 0 0.25rem; color: var(--pw-navy, #1a2744); }
|
|
.pw-price { font-size: 1.5rem; font-weight: 700; color: var(--pw-green, #059669); margin: 0 0 0.75rem; }
|
|
.pw-desc { color: var(--pw-muted, #64748b); max-width: 48rem; }
|
|
</style>
|