// ABOUT — Story, Floor, Team, Values const AboutHero = () => (
About · Smoke Show Labs · Est. 2001 25 years on the floor.
One block in downtown LA.

We started in 2001 packing glass. We're still in the same building. Same floor, same crew, more SKUs. Brands you've seen on shelves were built here — under their name, not ours.

); const StoryBlock = () => (
The story Built by operators,
for operators.

Smoke Show Labs started as a packing room behind a glass shop on Olympic. M. Reyes hand-rolled mylars for one local brand for a year before adding hardware.

Twenty-five years and a few thousand SKUs later, the floor is bigger, the lab is real, and the same brand still ships from us. The pitch has not changed: your line, our floor.

We don't put our name on the box. We don't co-brand. We don't pitch your customer. The work goes out under your label and stays there.

"We're the people
behind the people
on the shelf."

); const FloorTour = () => (
The floor · Downtown LA What you'd see
walking in.
{[ {n:"01", t:"Receiving", b:"Hardware QA, oil intake, packaging stock. Everything tagged with batch ID before it touches a line."}, {n:"02", t:"Lab", b:"Potency, residual solvents, pesticides, terpenes. ISO-7 clean room. Every batch tested before fill."}, {n:"03", t:"Fill lines", b:"Cold + hot lines. 510 carts, AIOs, pods. Optical fill check on every cart. Snowcap station."}, {n:"04", t:"Pack-out", b:"Cartoning, kit-pack, label, shrink. Direct-to-shop trays staged for tracked shipping."}, ].map((s, i) => (
{s.n}
{s.t}

{s.b}

))}
Floor tours by appointment · 1234 Industrial Way · LA, CA 90021
); const TeamBlock = () => (
The crew People you'll
actually talk to.
{TEAM.map((t, i) => (
{t.init}
{t.name}
{t.role}
{t.yrs}
))}
); const ValuesBlock = () => (
— What we believe Show up.
Ship clean.
Stay quiet.
{[ {n:"01", t:"Show up.", b:"On the floor every day. Same crew, same building, since 2001. Phone number is a real number."}, {n:"02", t:"Ship clean.", b:"Lab COAs every batch. Tracked shipping. Tamper-evident. Compliance checked per market."}, {n:"03", t:"Stay quiet.", b:"Your name on the box, never ours. We don't co-brand. We don't pitch your customer."}, ].map(v => (
— {v.n}
{v.t}

{v.b}

))}
); const About = ({setRoute}) => ( <> ); window.About = About;