/* global React, ReactDOM */ const { useState, useEffect } = React; const { Logo, Header, Footer } = window; // ============ Hero ============ function Hero({ tweaks }) { return (
[ HERO PHOTO · oilfield / severe service installation · 1920×1080 — client to provide ]
Industrial Equipment Supplier

Equipment built for
severe service.

Johnson Resources is a trusted supplier of valves, actuators, air regulators, flares, and combustors — built for flow control, pressure management, OOOOC compliance, and automation across the oil and gas industry.

Severe service valvesActuatorsAir regulatorsFlares CombustorsFlow controlPressure managementOOOOC complianceAutomation Severe service valvesActuatorsAir regulatorsFlares CombustorsFlow controlPressure managementOOOOC complianceAutomation
); } // ============ About / Who Are We ============ function About() { return (
Field operations [ photo · severe service install / field crew · 4:5 ]
01 / Who we are
Who Are We?

A trusted supplier for severe service applications.

Johnson Resources, LLC is a trusted supplier of high-performance industrial equipment for flow control, pressure management, OOOOC compliance, and automation. We specialize in severe service valves, actuators, air regulators, flares, combustors, and other related products.

Our solutions serve the oil and gas industry and related sectors — helping customers operate safely and efficiently in the most demanding conditions. Backed by top manufacturers and real-world expertise, we deliver reliable products and expert support for both standard and severe applications.

Committed to exceptional service.

We go the extra mile to ensure fast response times, expert guidance, and unwavering support so your operations stay running smoothly. Contact us today to experience the difference.

Contact Our Team
); } // ============ What We Do ============ function WhatWeDo() { const cards = [ { num: "01", title: "Severe Service Valves & Actuators", body: "Severe service valves and actuation equipment built for high-pressure, high-temperature, and demanding flow-control duties across upstream and midstream operations.", tag: "Flow control", }, { num: "02", title: "Air Regulators, Flares & Combustors", body: "Pressure management, flare and combustor equipment — specified to keep operations safely within OOOOC compliance and process spec.", tag: "Pressure & emissions", }, { num: "03", title: "Application & Technical Support", body: "We work directly with customers and manufacturers on selection, sizing, and specifications so the right solution is applied from the start — for standard and severe applications alike.", tag: "Engineering", }, ]; return (
02 / Capabilities
What We Do

Three product groups, one job: get the right equipment in the right application.

A focused line backed by top manufacturers and real-world expertise — for both standard and severe service work.

{cards.map((c) => (
{`/ ${c.num}`} {c.tag}

{c.title}

{c.body}

Learn more
))}
); } // ============ Manufacturers ============ function Manufacturers() { const mfrs = [ { name: "Hydroplex", tag: "Pumps · Valves" }, { name: "Manufacturer 02", tag: "Actuation" }, { name: "Manufacturer 03", tag: "Choke valves" }, { name: "Manufacturer 04", tag: "Flow control" }, { name: "Manufacturer 05", tag: "Fluid handling" }, { name: "Manufacturer 06", tag: "Pumps" }, { name: "Manufacturer 07", tag: "Valves" }, { name: "Manufacturer 08", tag: "Equipment" }, ]; return (
Trusted Partners

Manufacturers we represent.

A focused line card of manufacturers we know inside and out. Click any partner to see their products, applications, and request quotes.

{mfrs.map((m, i) => (
{m.name}
{m.tag}
View →
))}
View All Products
); } // ============ Applications in the Field ============ function FieldApplications() { const apps = [ { tag: "Severe service valve", caption: "High-pressure severe service valve installation", meta: "Upstream operation · Permian Basin", aspect: "portrait-tall", }, { tag: "Combustor", caption: "Combustor commissioning for OOOOC compliance", meta: "Midstream facility · South Louisiana", aspect: "landscape", }, { tag: "Actuator + valve", caption: "Pneumatic actuator and severe service valve package", meta: "Production site · Eagle Ford", aspect: "landscape", }, ]; return (
03 / In the field
Applications

Real equipment, real applications.

From severe service valve installs to OOOOC-ready combustor packages — a look at the equipment we supply and where it goes to work.

{apps[0].tag} [ field photo · 4:5 · client to provide ]

{apps[0].caption}

{apps[0].meta}
{apps[1].tag} [ field photo · 16:10 · client to provide ]

{apps[1].caption}

{apps[1].meta}
{apps[2].tag} [ field photo · 16:10 · client to provide ]

{apps[2].caption}

{apps[2].meta}
View All Applications
); } // ============ Final CTA ============ function FinalCTA() { return (
[ bg photo · field operation · full-bleed ]
04 / Next step
Get in Touch

Need help specifying the right equipment?

From severe service valves and actuators to flares and combustors — reach out and we'll get you to the right spec, manufacturer, and quote. Quickly.

Contact Us Request a Quote View Products
); } // ============ App ============ function App() { return (