feat(site): vertical-specific order-page headers (trucking/telecom/healthcare/corporate) via unified VerticalOrderHeader; apply to all 49 order pages; retire TruckingOrderHeader
This commit is contained in:
parent
695c3e2431
commit
9bcd27db80
52 changed files with 386 additions and 174 deletions
104
scripts/inject_order_headers.py
Normal file
104
scripts/inject_order_headers.py
Normal file
|
|
@ -0,0 +1,104 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Inject the vertical-specific <VerticalOrderHeader> into every order page.
|
||||||
|
|
||||||
|
Single source of truth for slug -> vertical. Idempotent: re-running it
|
||||||
|
normalizes import + placement and migrates the legacy <TruckingOrderHeader /> to
|
||||||
|
<VerticalOrderHeader vertical="trucking" />.
|
||||||
|
|
||||||
|
Placement: immediately after the closing </section> of the page's title block
|
||||||
|
(the same spot the trucking header used), or as the first child of <main>/the
|
||||||
|
top wrapper if no obvious anchor is found.
|
||||||
|
"""
|
||||||
|
import os, re, sys
|
||||||
|
|
||||||
|
ORDER_DIR = os.path.join(os.path.dirname(__file__), "..", "site", "src", "pages", "order")
|
||||||
|
|
||||||
|
# slug -> vertical. Anything not listed defaults to "trucking" (the original set).
|
||||||
|
VERTICAL = {
|
||||||
|
# ── Telecom / FCC ─────────────────────────────────────────────
|
||||||
|
"bdc-broadband": "telecom", "bdc-filing": "telecom", "bdc-voice": "telecom",
|
||||||
|
"calea-ssi": "telecom", "cdr-analysis": "telecom",
|
||||||
|
"cores-frn-registration": "telecom", "cpni-certification": "telecom",
|
||||||
|
"fcc-499a": "telecom", "fcc-499a-499q": "telecom", "fcc-499-initial": "telecom",
|
||||||
|
"fcc-63-11-notification": "telecom", "fcc-compliance-checkup": "telecom",
|
||||||
|
"fcc-full-compliance": "telecom", "ocn-registration": "telecom",
|
||||||
|
"stir-shaken": "telecom",
|
||||||
|
# ── Healthcare ────────────────────────────────────────────────
|
||||||
|
"medicare-enrollment": "healthcare", "npi-reactivation": "healthcare",
|
||||||
|
"npi-revalidation": "healthcare", "nppes-update": "healthcare",
|
||||||
|
"oig-sam-screening": "healthcare", "provider-compliance-bundle": "healthcare",
|
||||||
|
"rmd-filing": "healthcare",
|
||||||
|
# ── Corporate ─────────────────────────────────────────────────
|
||||||
|
"dc-agent": "corporate", "foreign-qualification": "corporate",
|
||||||
|
}
|
||||||
|
|
||||||
|
IMPORT_LINE = 'import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";'
|
||||||
|
LEGACY_IMPORT_RE = re.compile(r'^\s*import\s+TruckingOrderHeader\s+from\s+["\'][^"\']+["\'];\s*$', re.M)
|
||||||
|
NEW_IMPORT_RE = re.compile(r'^\s*import\s+VerticalOrderHeader\s+from\s+["\'][^"\']+["\'];\s*$', re.M)
|
||||||
|
|
||||||
|
|
||||||
|
def vertical_for(slug: str) -> str:
|
||||||
|
return VERTICAL.get(slug, "trucking")
|
||||||
|
|
||||||
|
|
||||||
|
def process(path: str) -> str:
|
||||||
|
slug = os.path.basename(path)[:-len(".astro")]
|
||||||
|
v = vertical_for(slug)
|
||||||
|
src = open(path).read()
|
||||||
|
tag = f'<VerticalOrderHeader vertical="{v}" />'
|
||||||
|
|
||||||
|
# 1) Imports: ensure VerticalOrderHeader import, drop the legacy one.
|
||||||
|
src = LEGACY_IMPORT_RE.sub("", src)
|
||||||
|
if not NEW_IMPORT_RE.search(src):
|
||||||
|
# insert after the Base import (first import line in frontmatter)
|
||||||
|
m = re.search(r'^(import\s+Base\s+from[^\n]*\n)', src, re.M)
|
||||||
|
if m:
|
||||||
|
src = src[:m.end()] + IMPORT_LINE + "\n" + src[m.end():]
|
||||||
|
else:
|
||||||
|
# fallback: after frontmatter opening ---
|
||||||
|
src = re.sub(r'^---\n', "---\n" + IMPORT_LINE + "\n", src, count=1)
|
||||||
|
|
||||||
|
# 2) Replace any legacy header usage with the new one.
|
||||||
|
src = re.sub(r'<TruckingOrderHeader\s*/>', tag, src)
|
||||||
|
|
||||||
|
# 3) If the new tag isn't placed yet, insert it after the first </section>
|
||||||
|
# in the body (the title block) — matching the trucking convention.
|
||||||
|
if tag not in src:
|
||||||
|
m = re.search(r'</section>\s*\n', src)
|
||||||
|
if m:
|
||||||
|
src = src[:m.end()] + "\n " + tag + "\n" + src[m.end():]
|
||||||
|
else:
|
||||||
|
# last resort: right after <main ...> or the first wrapper div
|
||||||
|
m = re.search(r'(<main[^>]*>\s*\n)', src)
|
||||||
|
if m:
|
||||||
|
src = src[:m.end()] + " " + tag + "\n" + src[m.end():]
|
||||||
|
else:
|
||||||
|
print(f" WARN: no anchor in {slug}, skipped placement", file=sys.stderr)
|
||||||
|
|
||||||
|
# tidy: collapse 3+ blank lines created by import removal
|
||||||
|
src = re.sub(r'\n{3,}', "\n\n", src)
|
||||||
|
return src
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
order = os.path.normpath(ORDER_DIR)
|
||||||
|
changed = 0
|
||||||
|
counts = {}
|
||||||
|
for fn in sorted(os.listdir(order)):
|
||||||
|
if not fn.endswith(".astro"):
|
||||||
|
continue
|
||||||
|
path = os.path.join(order, fn)
|
||||||
|
slug = fn[:-len(".astro")]
|
||||||
|
v = vertical_for(slug)
|
||||||
|
new = process(path)
|
||||||
|
old = open(path).read()
|
||||||
|
if new != old:
|
||||||
|
open(path, "w").write(new)
|
||||||
|
changed += 1
|
||||||
|
counts[v] = counts.get(v, 0) + 1
|
||||||
|
print(f"order pages processed; changed={changed}")
|
||||||
|
print("vertical counts:", dict(sorted(counts.items())))
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
|
|
@ -1,124 +0,0 @@
|
||||||
---
|
|
||||||
---
|
|
||||||
|
|
||||||
<section class="pw-trucking-order-hero" aria-labelledby="pw-trucking-order-hero-title">
|
|
||||||
<div class="pw-trucking-order-badge">DOT / FMCSA Compliance Specialists</div>
|
|
||||||
<h2 id="pw-trucking-order-hero-title">We handle your FMCSA filings so you can focus on the road.</h2>
|
|
||||||
<p class="pw-trucking-order-copy">
|
|
||||||
Performance West is a dedicated transportation compliance firm serving thousands of motor carriers nationwide.
|
|
||||||
We combine deep regulatory expertise with purpose-built filing technology so your paperwork is done right, done fast,
|
|
||||||
and tracked every step of the way.
|
|
||||||
</p>
|
|
||||||
<div class="pw-trucking-order-cards" aria-label="Performance West trucking compliance advantages">
|
|
||||||
<article>
|
|
||||||
<div class="pw-card-icon">📋</div>
|
|
||||||
<h3>Specialized in trucking compliance</h3>
|
|
||||||
<p>MCS-150, BOC-3, UCR, IFTA/IRP, operating authority and more, filed correctly the first time.</p>
|
|
||||||
</article>
|
|
||||||
<article>
|
|
||||||
<div class="pw-card-icon">⚡</div>
|
|
||||||
<h3>Fast turnaround</h3>
|
|
||||||
<p>Our automated filing systems submit most updates within 1-2 business days of receiving your information.</p>
|
|
||||||
</article>
|
|
||||||
<article>
|
|
||||||
<div class="pw-card-icon">🔍</div>
|
|
||||||
<h3>Attention to detail</h3>
|
|
||||||
<p>Every filing is verified against current FMCSA requirements. We catch errors before they become problems.</p>
|
|
||||||
</article>
|
|
||||||
<article>
|
|
||||||
<div class="pw-card-icon">📞</div>
|
|
||||||
<h3>Real support, real people</h3>
|
|
||||||
<p>Questions? Call (888) 411-0383 or reply to any email. We respond same business day.</p>
|
|
||||||
</article>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.pw-trucking-order-hero {
|
|
||||||
margin: 0 0 1.5rem;
|
|
||||||
padding: 2rem 1.5rem;
|
|
||||||
border-radius: 18px;
|
|
||||||
background: var(--pw-navy-dark, #0f172a);
|
|
||||||
text-align: center;
|
|
||||||
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pw-trucking-order-badge {
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 0.375rem;
|
|
||||||
margin-bottom: 0.875rem;
|
|
||||||
padding: 0.25rem 0.875rem;
|
|
||||||
border: 1px solid rgba(249, 115, 22, 0.3);
|
|
||||||
border-radius: 999px;
|
|
||||||
background: rgba(249, 115, 22, 0.15);
|
|
||||||
color: #fb923c;
|
|
||||||
font-size: 0.75rem;
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pw-trucking-order-hero h2 {
|
|
||||||
margin: 0 0 0.75rem;
|
|
||||||
color: #ffffff;
|
|
||||||
font-size: clamp(1.45rem, 3vw, 2rem);
|
|
||||||
line-height: 1.2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pw-trucking-order-copy {
|
|
||||||
margin: 0 auto 1.5rem;
|
|
||||||
max-width: 42rem;
|
|
||||||
color: #cbd5e1;
|
|
||||||
font-size: 0.95rem;
|
|
||||||
line-height: 1.7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pw-trucking-order-cards {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
||||||
gap: 0.75rem;
|
|
||||||
max-width: 920px;
|
|
||||||
margin: 0 auto;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pw-trucking-order-cards article {
|
|
||||||
padding: 1rem;
|
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
||||||
border-radius: 10px;
|
|
||||||
background: rgba(255, 255, 255, 0.06);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pw-card-icon {
|
|
||||||
margin-bottom: 0.375rem;
|
|
||||||
font-size: 1.375rem;
|
|
||||||
line-height: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pw-trucking-order-cards h3 {
|
|
||||||
margin: 0 0 0.25rem;
|
|
||||||
color: #ffffff;
|
|
||||||
font-size: 0.8125rem;
|
|
||||||
font-weight: 800;
|
|
||||||
line-height: 1.35;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pw-trucking-order-cards p {
|
|
||||||
margin: 0;
|
|
||||||
color: #94a3b8;
|
|
||||||
font-size: 0.75rem;
|
|
||||||
line-height: 1.5;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 640px) {
|
|
||||||
.pw-trucking-order-hero {
|
|
||||||
padding: 1.5rem 1rem;
|
|
||||||
border-radius: 14px;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pw-trucking-order-copy {
|
|
||||||
margin-left: 0;
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
159
site/src/components/VerticalOrderHeader.astro
Normal file
159
site/src/components/VerticalOrderHeader.astro
Normal file
|
|
@ -0,0 +1,159 @@
|
||||||
|
---
|
||||||
|
// Vertical-specific order-page hero. One component, four verticals, so the copy
|
||||||
|
// + accent live in a single place and never drift across the ~50 order pages.
|
||||||
|
//
|
||||||
|
// Usage: <VerticalOrderHeader vertical="healthcare" />
|
||||||
|
// Verticals: "trucking" | "telecom" | "healthcare" | "corporate"
|
||||||
|
// (trucking mirrors the original TruckingOrderHeader copy verbatim.)
|
||||||
|
export interface Props {
|
||||||
|
vertical: "trucking" | "telecom" | "healthcare" | "corporate";
|
||||||
|
}
|
||||||
|
const { vertical } = Astro.props;
|
||||||
|
|
||||||
|
type Card = { icon: string; h: string; p: string };
|
||||||
|
type Content = {
|
||||||
|
badge: string;
|
||||||
|
title: string;
|
||||||
|
intro: string;
|
||||||
|
accent: string; // accent color (badge text + card highlight)
|
||||||
|
cards: Card[];
|
||||||
|
};
|
||||||
|
|
||||||
|
const PHONE = "(888) 411-0383";
|
||||||
|
|
||||||
|
const CONTENT: Record<Props["vertical"], Content> = {
|
||||||
|
trucking: {
|
||||||
|
badge: "DOT / FMCSA Compliance Specialists",
|
||||||
|
title: "We handle your FMCSA filings so you can focus on the road.",
|
||||||
|
intro:
|
||||||
|
"Performance West is a dedicated transportation compliance firm serving thousands of motor carriers nationwide. We combine deep regulatory expertise with purpose-built filing technology so your paperwork is done right, done fast, and tracked every step of the way.",
|
||||||
|
accent: "#fb923c",
|
||||||
|
cards: [
|
||||||
|
{ icon: "\u{1F4CB}", h: "Specialized in trucking compliance", p: "MCS-150, BOC-3, UCR, IFTA/IRP, operating authority and more, filed correctly the first time." },
|
||||||
|
{ icon: "\u{26A1}", h: "Fast turnaround", p: "Our automated filing systems submit most updates within 1-2 business days of receiving your information." },
|
||||||
|
{ icon: "\u{1F50D}", h: "Attention to detail", p: "Every filing is verified against current FMCSA requirements. We catch errors before they become problems." },
|
||||||
|
{ icon: "\u{1F4DE}", h: "Real support, real people", p: `Questions? Call ${PHONE} or reply to any email. We respond same business day.` },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
telecom: {
|
||||||
|
badge: "FCC / Telecom Compliance Specialists",
|
||||||
|
title: "We handle your FCC filings so you can focus on your network.",
|
||||||
|
intro:
|
||||||
|
"Performance West is a dedicated telecommunications compliance firm serving carriers, VoIP providers, and resellers nationwide. We pair deep FCC regulatory expertise with purpose-built filing technology so your Form 499, STIR/SHAKEN, CPNI, and registrations are done right, done on time, and tracked every step of the way.",
|
||||||
|
accent: "#60a5fa",
|
||||||
|
cards: [
|
||||||
|
{ icon: "\u{1F4E1}", h: "Specialized in telecom compliance", p: "Form 499-A/Q, FCC registration, STIR/SHAKEN, CPNI, Robocall Mitigation, OCN/CORES and more." },
|
||||||
|
{ icon: "\u{26A1}", h: "Deadline-driven filing", p: "We track every FCC and USAC due date and file on time so you avoid red-light status and penalties." },
|
||||||
|
{ icon: "\u{1F50D}", h: "Accuracy you can audit", p: "Every filing is verified against current FCC rules. We catch revenue and classification errors before they cost you." },
|
||||||
|
{ icon: "\u{1F4DE}", h: "Real support, real people", p: `Questions? Call ${PHONE} or reply to any email. We respond same business day.` },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
healthcare: {
|
||||||
|
badge: "Healthcare Provider Compliance Specialists",
|
||||||
|
title: "We handle your Medicare and NPI filings so you can focus on patients.",
|
||||||
|
intro:
|
||||||
|
"Performance West is a dedicated healthcare compliance firm serving providers, group practices, and facilities nationwide. We combine deep CMS and NPPES regulatory expertise with purpose-built filing technology so your revalidation, enrollment, and registry updates are done right, done fast, and tracked every step of the way.",
|
||||||
|
accent: "#34d399",
|
||||||
|
cards: [
|
||||||
|
{ icon: "\u{1FA7A}", h: "Specialized in provider compliance", p: "Medicare PECOS revalidation, NPI/NPPES updates, reactivation, enrollment, and OIG/SAM screening." },
|
||||||
|
{ icon: "\u{26A1}", h: "Beat the deactivation deadline", p: "Miss a revalidation date and CMS deactivates your billing privileges. We file before the clock runs out." },
|
||||||
|
{ icon: "\u{1F50D}", h: "Accuracy that protects billing", p: "Every filing is checked against current CMS requirements so an error never interrupts your reimbursements." },
|
||||||
|
{ icon: "\u{1F4DE}", h: "Real support, real people", p: `Questions? Call ${PHONE} or reply to any email. We respond same business day.` },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
corporate: {
|
||||||
|
badge: "Corporate Compliance Specialists",
|
||||||
|
title: "We handle your corporate filings so you can focus on the business.",
|
||||||
|
intro:
|
||||||
|
"Performance West is a dedicated corporate compliance firm serving companies registering and operating across multiple states. We combine deep regulatory expertise with purpose-built filing technology so your registrations, agent designations, and annual obligations are done right, done fast, and tracked every step of the way.",
|
||||||
|
accent: "#a78bfa",
|
||||||
|
cards: [
|
||||||
|
{ icon: "\u{1F3DB}\u{FE0F}", h: "Specialized in corporate filings", p: "Foreign qualification, registered/process agent service, formations, and annual reports nationwide." },
|
||||||
|
{ icon: "\u{26A1}", h: "Fast, multi-state turnaround", p: "We handle the Secretary of State paperwork in every jurisdiction so you can expand without the delay." },
|
||||||
|
{ icon: "\u{1F50D}", h: "Nothing falls through the cracks", p: "Every registration is verified and tracked, so deadlines and renewals never slip." },
|
||||||
|
{ icon: "\u{1F4DE}", h: "Real support, real people", p: `Questions? Call ${PHONE} or reply to any email. We respond same business day.` },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const c = CONTENT[vertical];
|
||||||
|
---
|
||||||
|
|
||||||
|
<section class="pw-vhero" style={`--pw-accent:${c.accent}`} aria-labelledby="pw-vhero-title">
|
||||||
|
<div class="pw-vhero-badge">{c.badge}</div>
|
||||||
|
<h2 id="pw-vhero-title">{c.title}</h2>
|
||||||
|
<p class="pw-vhero-copy">{c.intro}</p>
|
||||||
|
<div class="pw-vhero-cards" aria-label="Performance West compliance advantages">
|
||||||
|
{c.cards.map((card) => (
|
||||||
|
<article>
|
||||||
|
<div class="pw-card-icon">{card.icon}</div>
|
||||||
|
<h3>{card.h}</h3>
|
||||||
|
<p>{card.p}</p>
|
||||||
|
</article>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.pw-vhero {
|
||||||
|
margin: 0 0 1.5rem;
|
||||||
|
padding: 2rem 1.5rem;
|
||||||
|
border-radius: 18px;
|
||||||
|
background: var(--pw-navy-dark, #0f172a);
|
||||||
|
text-align: center;
|
||||||
|
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
|
||||||
|
}
|
||||||
|
.pw-vhero-badge {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.375rem;
|
||||||
|
margin-bottom: 0.875rem;
|
||||||
|
padding: 0.25rem 0.875rem;
|
||||||
|
border: 1px solid color-mix(in srgb, var(--pw-accent) 35%, transparent);
|
||||||
|
border-radius: 999px;
|
||||||
|
background: color-mix(in srgb, var(--pw-accent) 16%, transparent);
|
||||||
|
color: var(--pw-accent);
|
||||||
|
font-size: 0.75rem;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
.pw-vhero h2 {
|
||||||
|
margin: 0 0 0.75rem;
|
||||||
|
color: #ffffff;
|
||||||
|
font-size: clamp(1.45rem, 3vw, 2rem);
|
||||||
|
line-height: 1.2;
|
||||||
|
}
|
||||||
|
.pw-vhero-copy {
|
||||||
|
margin: 0 auto 1.5rem;
|
||||||
|
max-width: 42rem;
|
||||||
|
color: #cbd5e1;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
line-height: 1.7;
|
||||||
|
}
|
||||||
|
.pw-vhero-cards {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||||
|
gap: 0.75rem;
|
||||||
|
max-width: 920px;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.pw-vhero-cards article {
|
||||||
|
padding: 1rem;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
border-radius: 10px;
|
||||||
|
background: rgba(255, 255, 255, 0.06);
|
||||||
|
}
|
||||||
|
.pw-card-icon { margin-bottom: 0.375rem; font-size: 1.375rem; line-height: 1; }
|
||||||
|
.pw-vhero-cards h3 {
|
||||||
|
margin: 0 0 0.25rem;
|
||||||
|
color: #ffffff;
|
||||||
|
font-size: 0.8125rem;
|
||||||
|
font-weight: 800;
|
||||||
|
line-height: 1.35;
|
||||||
|
}
|
||||||
|
.pw-vhero-cards p { margin: 0; color: #94a3b8; font-size: 0.75rem; line-height: 1.5; }
|
||||||
|
@media (max-width: 640px) {
|
||||||
|
.pw-vhero { padding: 1.5rem 1rem; border-radius: 14px; text-align: left; }
|
||||||
|
.pw-vhero-copy { margin-left: 0; margin-right: 0; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Availability data only (no voice subscription). For broadba
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Both BDC blocks in one order — broadband deployment + voi
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Voice subscriber counts only — the part of the legacy For
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
const slug = "boc3-filing";
|
const slug = "boc3-filing";
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Designate a process agent in all 48 states plus DC.";
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TaxDeductibilityNotice />
|
<TaxDeductibilityNotice />
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "California Motor Carrier Permit (MCP) plus CARB Clean Truck
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "System Security and Integrity plan required of every common
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Classified traffic study from your CDRs — feeds the 499-A
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Register your carrier in FCC CORES and obtain your FRN. Req
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "47 CFR § 64.2009 annual CPNI certification filed at FCC EC
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Connecticut Highway Use Fee registration for heavy multi-un
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Your required D.C. registered agent for service of process
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="corporate" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
const slug = "dot-audit-prep";
|
const slug = "dot-audit-prep";
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Prepare for your 18-month FMCSA safety audit.";
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TaxDeductibilityNotice />
|
<TaxDeductibilityNotice />
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
const slug = "dot-drug-alcohol";
|
const slug = "dot-drug-alcohol";
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Consortium enrollment, written policy, and DER designation.
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TaxDeductibilityNotice />
|
<TaxDeductibilityNotice />
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
const slug = "dot-full-compliance";
|
const slug = "dot-full-compliance";
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "MCS-150 + BOC-3 + UCR + Drug & Alcohol + Audit Prep.";
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TaxDeductibilityNotice />
|
<TaxDeductibilityNotice />
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
const slug = "dot-registration";
|
const slug = "dot-registration";
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Register a new USDOT number with FMCSA.";
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TaxDeductibilityNotice />
|
<TaxDeductibilityNotice />
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "New carrier registration with USAC — obtain your Filer ID
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Annual 499-A plus the four quarterly 499-Q filings — one
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Annual Telecommunications Reporting Worksheet. Due April 1
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "47 CFR § 63.11 notification filed with the FCC Internation
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Diagnostic check — CORES, RMD, STIR/SHAKEN, CPNI, 499-A s
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "RMD + CPNI + STIR/SHAKEN + 499-A + 499-Q in one order. Ever
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -40,6 +41,7 @@ const description =
|
||||||
)}
|
)}
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="corporate" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "foreign_qual", "review", "payment"]} title={title} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "foreign_qual", "review", "payment"]} title={title} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "PHMSA hazardous-materials registration for carriers transpo
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "International Fuel Tax Agreement (IFTA) license and decals
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Quarterly IFTA fuel-tax return preparation and filing throu
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
const slug = "intrastate-authority";
|
const slug = "intrastate-authority";
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Intrastate operating authority application for carriers hau
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TaxDeductibilityNotice />
|
<TaxDeductibilityNotice />
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Apportioned (IRP) registration for interstate carriers —
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Kentucky KYU weight-distance tax license for carriers opera
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
const slug = "mc-authority";
|
const slug = "mc-authority";
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Apply for common or contract carrier operating authority.";
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TaxDeductibilityNotice />
|
<TaxDeductibilityNotice />
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "FMCSA biennial update of company profile, fleet size, and m
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Complete your Medicare enrollment in PECOS (CMS-855), inclu
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="healthcare" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["npi-intake", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["npi-intake", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
const slug = "new-carrier-bundle";
|
const slug = "new-carrier-bundle";
|
||||||
|
|
@ -19,7 +20,7 @@ const description = "Start-to-finish for a brand-new VoIP carrier: FRN + 499 Ini
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "New Mexico Weight-Distance Tax permit and account setup.";
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Reactivate a deactivated NPI in NPPES so you can resume bil
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="healthcare" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["npi-intake", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["npi-intake", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Prepare and file your Medicare revalidation in CMS PECOS. R
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="healthcare" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["npi-intake", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["npi-intake", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Update and re-attest your NPPES record. CMS requires update
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="healthcare" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["npi-intake", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["npi-intake", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "New York Highway Use Tax (HUT) registration and decal for c
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Obtain an Operating Company Number from NECA. Required for
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Annual OIG LEIE and SAM exclusion screening for you and you
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="healthcare" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["npi-intake", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["npi-intake", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Oregon Weight-Mile Tax enrollment and account setup for car
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
const slug = "osow-permit";
|
const slug = "osow-permit";
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Oversize / Overweight (OS/OW) trip permit acquisition for n
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TaxDeductibilityNotice />
|
<TaxDeductibilityNotice />
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Annual provider compliance bundle: revalidation monitoring,
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="healthcare" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["npi-intake", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["npi-intake", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Robocall Mitigation Database filing. Annual recertification
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="healthcare" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
const slug = "state-dot-registration";
|
const slug = "state-dot-registration";
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Intrastate (state) DOT number registration for carriers ope
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TaxDeductibilityNotice />
|
<TaxDeductibilityNotice />
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "State clean-truck / emissions compliance (NY, CO, MD, NJ, M
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
const slug = "state-trucking-bundle";
|
const slug = "state-trucking-bundle";
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "State Compliance Bundle — IRP, IFTA, state weight-distanc
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TaxDeductibilityNotice />
|
<TaxDeductibilityNotice />
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
import TaxDeductibilityNotice from "../../components/TaxDeductibilityNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META, formatUSD } from "../../lib/intake_manifest";
|
||||||
|
|
@ -18,6 +19,7 @@ const description = "Posture update + RMD refresh + STI-CA vendor coordination.
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<VerticalOrderHeader vertical="telecom" />
|
||||||
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
<Wizard service_slug={slug} steps={steps ?? ["entity", "review", "payment"]} title={meta?.name ?? slug} />
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Unified Carrier Registration for interstate carriers.";
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
import Base from "../../layouts/Base.astro";
|
import Base from "../../layouts/Base.astro";
|
||||||
|
import VerticalOrderHeader from "../../components/VerticalOrderHeader.astro";
|
||||||
import Wizard from "../../components/intake/Wizard.astro";
|
import Wizard from "../../components/intake/Wizard.astro";
|
||||||
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
import OrderPriceBanner from "../../components/OrderPriceBanner.astro";
|
||||||
import TruckingOrderHeader from "../../components/TruckingOrderHeader.astro";
|
|
||||||
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
import TruckingValueNotice from "../../components/TruckingValueNotice.astro";
|
||||||
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
|
||||||
|
|
||||||
|
|
@ -20,7 +21,7 @@ const description = "Reactivate an inactive or revoked USDOT number and bring yo
|
||||||
<p class="pw-desc">{description}</p>
|
<p class="pw-desc">{description}</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TruckingOrderHeader />
|
<VerticalOrderHeader vertical="trucking" />
|
||||||
|
|
||||||
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
<OrderPriceBanner priceCents={meta?.price_cents} govFeeLabel={meta?.gov_fee_label} note="Choose card, ACH, or PayPal at payment." />
|
||||||
<TruckingValueNotice slug={slug} />
|
<TruckingValueNotice slug={slug} />
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue