{ const [isMenuOpen, setIsMenuOpen] = useState(false); const [scrolled, setScrolled] = useState(false); // Linki do Twoich narzędzi const CALENDLY_URL = "https://calendly.com/twoja-nazwa"; // Podmień na swój link const WHATSAPP_URL = "https://wa.me/48123456789"; // Podmień na swój numer w formacie międzynarodowym const PDF_URL = "/sciezka/do/oferty.pdf"; // Podmień na link do swojego pliku PDF useEffect(() => { const handleScroll = () => { setScrolled(window.scrollY > 20); }; window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const NavLink = ({ href, children }) => ( setIsMenuOpen(false)} className="text-sm font-bold uppercase tracking-widest text-slate-600 hover:text-blue-600 transition-colors" > {children} ); return (
{/* Navigation */} {/* Hero Section */}
VIP Jet Interior
Boutique Fleet Specialist

Eliminate the Chaos Tax

I help boutique operators reduce catering costs by 15% and free up cabin crew for premium service through centralized operational control.

Gourmet Inflight Meal
{/* Quick Stats */}
{[ { label: "Cost Savings", val: "15% AVG" }, { label: "Crew Capacity", val: "+25% UP" }, { label: "Last Minute Fees", val: "ZERO" }, { label: "Availability", val: "24/7" } ].map((stat, i) => (

{stat.val}

{stat.label}

))}
{/* Solution Section */}

Your Outsourced
Catering Department

{[ { icon: , title: "Strategic Sourcing", desc: "I compare providers beyond FBO markups to find the best quality-to-price ratio for every port." }, { icon: , title: "Crew Relief", desc: "Catering is coordinated while your crew is at rest. It's on the plane 1 hour before ETD." }, { icon: , title: "Preference Intelligence", desc: "I build a digital CRM of your passengers' dietary needs so you never ask twice." } ].map((item, i) => (
{item.icon}

{item.title}

{item.desc}

))}
Operations Center
{/* ROI Calculator Preview */}

The Math of Excellence

A typical 10-flight monthly operation wastes up to €5,000 in avoidable "last-minute" surcharges.

  • Eliminate €400+ "Express Fees" per mission
  • Recover 20+ hours of crew duty time
  • Optimize spend based on historical audits

Fixed Retainer

€1,500

"Pays for itself in just 4 missions."

{/* SOP Section */}
Professional Documentation
Knowledge Transfer

Building Your
Company Asset

I am not just a service; I am a builder. In 12 months, I deliver a full SOP Manual and a global database, ensuring your company owns the process forever.

Standard Operating Proc.

Process Blueprint

Crew Training Deck

Seamless Handover

{/* Footer / CTA */} {/* Floating WhatsApp Button */} Chat with me
); }; export default App;