// SERVICES — Detailed lanes with bullets, process, capability table, FAQ, CTA const ServicesHero = () => (
Services · Six lanes Everything from spec sheet
to shelf-ready.

Run the whole program with us, or hand us one piece. Hardware, fill, terpenes, snowcap, packaging, co-pack — every lane runs out of our LA floor.

); const ServiceLane = ({s, i}) => { const Icon = Icons[s.icon] || Icons.Box; const accent = s.accent === "cyan" ? "var(--color-cyan)" : "var(--color-pink)"; const reverse = i % 2 === 1; return (
{s.num}
{s.name}
{s.tag}

{s.blurb}

    {s.bullets.map(b => (
  • {b}
  • ))}
SPEC · {s.id.toUpperCase()}
SSL-{s.num}
); }; const CapabilityTable = () => (
Capability sheet · At a glance What we run.
{[ ["Hardware formats", "0.3g · 0.5g · 1g · 2g · 3g · pods · post-less"], ["Oil types", "Distillate · live resin · live rosin · snowcap · CDT · CBD · CBG · CBN"], ["Fill capacity", "Up to 50,000 units per batch · cold + hot lines"], ["Lab testing", "Every batch · COAs delivered with shipment · CA, NV, AZ compliance"], ["Packaging", "Boxes · sleeves · mylars · child-resistant · tamper-evident"], ["Print finishes", "Spot UV · soft-touch · foil · emboss · holographic"], ["Fulfillment", "Direct-to-shop · DTC · 3PL handoff · tracked shipping"], ["Compliance markets", "All 50 US states for compliant SKUs · International by request"], ].map(([k,v], i) => (
{k} {v}
))}
); const FAQBlock = () => { const [open, setOpen] = React.useState(0); return (
Common questions FAQ.
{FAQ.map((f, i) => { const isOpen = open === i; return (
{isOpen && (
{f.a}
)}
); })}
); }; const Services = ({setRoute}) => ( <> {SERVICES.map((s, i) => )} ); window.Services = Services;