import React, { useEffect } from “react”;
// Self-contained React page for preview (no asset imports)
// The downloadable static HTML (with your logo image) is provided separately.
const brand = {
name: “VIP Aviation (Private) Limited”,
short: “VIP Aviation”,
gold: “#C9A227”,
blue: “#0F3D91″,
};
export default function VipAviationSite() {
useEffect(() => {
const onClick = (e) => {
const a = e.target.closest(‘a[href^=”#”]’);
if (!a) return;
const id = a.getAttribute(‘href’);
const el = document.querySelector(id);
if (el) {
e.preventDefault();
el.scrollIntoView({ behavior: ‘smooth’, block: ‘start’ });
}
};
document.addEventListener(‘click’, onClick);
return () => document.removeEventListener(‘click’, onClick);
}, []);
return (
{/* Header (badge used so preview works without external files) */}
{/* Hero */}
Premium VIP Ground Handling & Flight Support in Pakistan
Full‑service FBO solutions for charter, corporate, and diplomatic operations — from landing permits and slots to ramp handling, concierge, and crew support.
ICAO: Pakistan • Primary base: Islamabad (OPIS)
VIP Aviation
Flight Arrivals Concierge
Seamless airside access, discreet meet‑and‑assist, and priority coordination with airport stakeholders.
24/7 Ops Desk
•
Rapid permits
{/* Services */}
Core Services
End‑to‑end ground handling and trip support tailored to non‑scheduled and corporate aviation.
{[
{ title: “Ramp & Turnaround Handling”, points: [“Marshaller & GPU/APU coordination”,”Baggage & passenger handling”,”Catering uplifts & waste”] },
{ title: “Permits & Slots”, points: [“Landing & overflight permits”,”Parking/slots coordination”,”Diplomatic clearances”] },
{ title: “Fuel & Technical”, points: [“Fuel coordination & price checks”,”De‑icing (where available)”,”AOG coordination”] },
{ title: “Crew & Passenger Concierge”, points: [“Meet‑and‑assist, fast‑track”,”Hotel & ground transport”,”Visa guidance (where applicable)”] },
{ title: “Charter Facilitation”, points: [“On‑demand charter sourcing”,”Route & flight‑time planning”,”Contract & compliance support”] },
{ title: “Flight Ops Support”, points: [“NOTAM/Weather briefs”,”Nav/route planning”,”ATC flight plan filing”] },
].map(({title, points}) => (
))}
{/* Airports */}
Primary Stations
We coordinate nationwide coverage with a strong presence at key airports.
{[
{ code: “OPIS”, city: “Islamabad”, note: “Primary base (FBO/concierge)” },
{ code: “OPSD”, city: “Skardu”, note: “Mountain gateway & tourism” },
{ code: “OPKC”, city: “Karachi”, note: “Southern hub & cargo” },
{ code: “OPLA”, city: “Lahore”, note: “Cultural capital” },
].map(({code, city, note}) => (
ICAO
{code}
{city}
{note}
))}
{/* Why Us */}
Why Operators Choose Us
Single‑Window Trip Support
Permits, slots, fuel, handling, hotel and transport — one accountable ops desk.
Discreet VIP Protocols
Low‑profile coordination aligned with airport security & regulatory stakeholders.
Local Expertise, National Reach
Deep on‑ground relationships help resolve constraints quickly and transparently.
24/7 Response
Round‑the‑clock ops for planned and short‑notice movements.
{/* Contact */}
{/* Footer */}
);
}