/* JETX — TEMPORARY HOME page (review build) Same as home.jsx but every inter-page link is removed except Contact. Chrome (nav/footer/shell) lives in shared-temp.jsx. Original files untouched. */ const { useState: useStateT, useEffect: useEffectT, useRef: useRefT } = React; /* ---------- Temp Hero (links stripped to contact) ---------- */ function TempHero() { const bgRef = useRefT(null); const setVideoRef = (el) => { bgRef.current = el; if (el) { el.defaultMuted = true; el.muted = true; el.volume = 0; } }; const [entered, setEntered] = useStateT(false); useEffectT(() => { const id = setTimeout(() => setEntered(true), 60); return () => clearTimeout(id); }, []); useEffectT(() => { const onScroll = () => { if (!bgRef.current) return; const y = window.scrollY; bgRef.current.style.transform = `translate3d(0, ${y * 0.22}px, 0) scale(${1 + Math.min(y / 4000, 0.05)})`; }; window.addEventListener("scroll", onScroll, { passive: true }); return () => window.removeEventListener("scroll", onScroll); }, []); return (
Advanced Air Mobility · eVTOL

Vector Thrust No Rotation

Our core is a patent-pending vector-thrust mechanism that delivers vertical flight without tilting or rotating the propulsion. Around it we layer hybrid-electric power, Full Self Flying autonomy and modular platforms — a full stack of solutions for advanced air mobility. Validated through $500K+ in U.S. Department of War contracts.

Get in touch Email us
Funded & validated by
SBIR / STTR U.S. Army SBIR / STTR Army xTech AFWERX
Established 2020
DoW Contracts $500K+/ 3 awards
Patents Multiplepending
Headquarters OrlandoFL · USA
U.S. Army DevX Award-ReadyMay 2026
); } /* ---------- Temp Intro (no links) ---------- */ function TempIntro() { return (
01 The Idea
JETX LLC · Founded 2020 · Orlando, FL

We build the complete technology stack behind next-generation VTOL aircraft — vector-thrust propulsion, hybrid-electric power, Full Self Flying autonomy and modular platforms — for civil and military advanced air mobility.

); } /* ---------- Temp X2S flagship section (stacked, frameless) ---------- */ function TempX2S() { const specs = [ { v: "300 kg", l: "Modular Payload" }, { v: "22 min", l: "Silent Low-Signature" }, { v: "TRL 6", l: "Maturity" }, { v: "GPS-Deg.", l: "Autonomous Nav" }, ]; const slides = [ "assets/concepts/x2s-group4-tarmac.png", "assets/concepts/x2s-desert-armed.png", ]; const [i, setI] = useStateT(0); const [paused, setPaused] = useStateT(false); useEffectT(() => { if (paused) return; const id = setInterval(() => setI((p) => (p + 1) % slides.length), 4500); return () => clearInterval(id); }, [paused, slides.length]); return (
X2SFlagship Platform
Submission 4-26-0226 · Awardable · May 28 2026

The X2S.
Award-ready for the U.S. Army.

setPaused(true)} onMouseLeave={() => setPaused(false)} > X2S · GROUP IV · NON-ROTATING VECTOR THRUST {slides.map((src, idx) => ( X2S Group IV defense UAV ))}
{slides.map((src, idx) => ( ))}
Award-Ready · DevX Autonomy

Multi-Mission Defense UAV

A next-generation tactical UAV built around proprietary non-rotating vector thrust — redirecting thrust without rotating motors or moving nacelles for fewer failure points and greater control authority. It pairs helicopter vertical access with fixed-wing speed, powered by a hybrid-electric propulsion system with a multi-fuel turbogenerator, supporting ISR, reconnaissance and resupply with autonomous maneuvering in GPS-degraded environments. Designated Awardable on the U.S. Army DevX Autonomy marketplace.

{specs.map((s) => (
{s.v}
{s.l}
))}
); } function TempHomePage() { return ( ); } ReactDOM.createRoot(document.getElementById("root")).render( );