// OEG Homepage — Hero variants // Three hero layouts, cycled via Tweaks const Arrow = ({ size = 14 }) => ( ); // ============================================================ // Hero variant 1 — Bold statement + product screenshot // ============================================================ const HeroBold = () => { return (

Industrial training, engineered for the people who run the plant.

OEG builds the 3D content and learning platform that refineries, processors, and operators use to train, certify, and re‑qualify their workforce — from the control room to the catwalks.

Since 2007
Building industrial learning content
19 years
Of partnership with refining & oil/gas operators
SCORM ready
Distributes to your LMS, mobile, or offline kits
01 3D content authored in‑house
02 Tracked to the learner, by site
knowledgelibrary.oegllc.com / dashboard
); }; // ============================================================ // Hero variant 2 — Split studio | library // ============================================================ const HeroSplit = () => { return (
Two halves, one company / Studio + Knowledge Library

We make the content,
and the system it lives in.

01 Industrial Content Studio

3D content
that earns trust on the floor.

FCC units, subsea trees, fired heaters, gear pumps. We model the equipment, animate the process, and produce the video your trainers actually want to use.

3D render placeholder · FCC-04
Explore the studio
02 Knowledge Library

The platform that
finds the right resource.

Your animations, videos, procedures, and SOPs — searchable, trackable, and ready at the point of work. In class, on the web, or in hand.

Active learners
1,284+12.4%
Completion
94.7%+2.1pt
Sessions / wk
3,402+18.6%
Sites
12+2
Tour the platform
); }; // ============================================================ // Hero variant 3 — Isometric cube centerpiece // ============================================================ const HeroCube = () => { return (
OEG cube OEG cube

Build, distribute, and prove industrial training.

OEG produces the 3D content and operates the learning platform that the world's most demanding refineries and process operators run their workforce on.

In Production
2007→ today
3D content titles
340+
Customer sites
60+
Learners served
120k+
); }; const MockDashboard = () => { const navItems = [ { label: "Explore", icon: "explore", active: true }, { label: "Project Folder", icon: "folder" }, { label: "Syllabus", icon: "doc" }, { label: "Micro Courses", icon: "play" }, { label: "Assessment", icon: "check" }, { label: "Refresher", icon: "refresh" }, { label: "Field Guides", icon: "doc" }, { label: "Assignment", icon: "doc" }, { label: "Support", icon: "chat" }, ]; const cards = [ { type: "INTERACTIVE", title: "210 Valve", cat: "Valves", oeg: true, img: true }, { type: "VIDEO", title: "360 Rig View", cat: "All", oeg: false, img: true }, { type: "DOCUMENT", title: "9.0 Respiratory", cat: "All", oeg: false, img: false }, { type: "DOCUMENT", title: "9.0 Respiratory", cat: "All", oeg: false, img: false }, { type: "DOCUMENT", title: "9.0 Respiratory", cat: "All", oeg: false, img: false }, { type: "DOCUMENT", title: "9.0 Respiratory", cat: "All", oeg: false, img: false }, { type: "DOCUMENT", title: "9.0 Respiratory", cat: "All", oeg: false, img: false }, { type: "DOCUMENT", title: "9.0 Respiratory", cat: "All", oeg: false, img: false }, { type: "DOCUMENT", title: "9.0 Respiratory", cat: "All", oeg: false, img: false }, { type: "VIDEO", title: "Abnormal Mechanical Conditions", cat: "Fired Heaters", oeg: true, img: true }, { type: "VIDEO", title: "About the CSB", cat: "Chemical Safety Board", oeg: true, img: true }, { type: "VIDEO", title: "Absorption Vs. Adsorption", cat: "Basic Refining", oeg: true, img: true }, { type: "VIDEO", title: "After the Rainbow", cat: "Chemical Safety Board", oeg: true, img: true }, { type: "DOCUMENT", title: "AI and Web Search Visibility Overview", cat: "All", oeg: false, img: false }, { type: "DOCUMENT", title: "AI and Web Search Visibility Overview", cat: "All", oeg: false, img: false }, ]; const badgeBg = { INTERACTIVE: "#1e4080", VIDEO: "#1b3a6e", DOCUMENT: "#344054" }; const SideIcon = ({ type, active }) => { const s = { width: 10, height: 10, flex: "none" }; const stroke = active ? "rgba(255,255,255,0.8)" : "rgba(255,255,255,0.4)"; if (type === "folder") return ; if (type === "play") return ; if (type === "check") return ; if (type === "refresh") return ; if (type === "chat") return ; return ; }; return (
{/* ── Sidebar ── */}
{/* Logo */}
The Operations
Excellence Group
{/* Nav */}
{navItems.map((item, i) => (
{item.active ? : } {item.label}
))}
{/* Footer */}
OEG System Admin
powered by OEG
{/* ── Main ── */}
{/* Header */}
Instructor Dashboard
{[ , , , , , ].map((ic, i) => {ic})}
{/* Search + filters */}
Search...
{["Directory", "Language", "Type"].map(f => (
{f}
))}
641 Results
{/* Card grid */}
{cards.map((card, i) => (
{card.img && (
)} {!card.img && ( )}
{card.type}
{card.title}
{card.cat} {card.oeg && OEG}
))}
); }; Object.assign(window, { HeroBold, HeroSplit, HeroCube, MockDashboard, Arrow });