/* global React */
(function(){
/* ───── FOUNDER ───── */
function FounderSection({ i }){
return (
ADEL MARDINI · FOUNDER & CEO
Jetex was founded at the Dubai Airshow in November 2005 by Adel Mardini —
a story that begins driving an airport shuttle in Damascus and now spans
more than fifty network locations, on every populated continent.
“
We don’t provide one piece of private aviation. We provide it all —
anywhere in the world, seamlessly.
);
}
function Beat({k,v}){
return (
);
}
/* ───── AWARDS ───── */
function AwardsStrip({ i }){
const D = window.JETEX_DATA;
return (
05
{i.sections.awards}
World Travel Awards · attributed
{D.awards.map((a,idx)=>(
{a.year}
{a.title}
{a.issuer}
))}
CERTIFICATIONS
IS-BAH Stage 2
NATA Safety 1st
Only FBO in MENA with both.
);
}
/* ───── CONTACT ───── */
function ContactSection({ i, onQuote }){
return (
);
}
function ContactCard({ tag, city, address, phone, email, coords, role, onQuote, i }){
return (
{tag}
{city}
{role}
{address}
{phone}}/>
{email}}/>
{coords}}/>
);
}
function CcRow({k,v}){
return (
);
}
/* ───── FOOTER ───── */
function Footer({ i }){
return (
);
}
function FootCol({head, items}){
return (
);
}
/* ───── STICKY CTAs ───── */
function StickyCTAs({ i, onQuote }){
return (
);
}
window.JetexUI3 = { FounderSection, AwardsStrip, ContactSection, Footer, StickyCTAs };
})();