import React, { useState, useEffect } from 'react'; import { Globe2, CheckCircle2, Building2, CreditCard, Landmark, Package, Users, ArrowRight, ChevronRight, MapPin, BarChart3, ShieldCheck, Zap, X, Menu, Quote } from 'lucide-react'; const App = () => { const [isScrolled, setIsScrolled] = useState(false); const [mobileMenuOpen, setMobileMenuOpen] = useState(false); useEffect(() => { const handleScroll = () => { setIsScrolled(window.scrollY > 20); }; window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); return (
{/* Navigation */} {/* Mobile Menu Overlay */} {mobileMenuOpen && (
Solutions Capabilities Global Network
)} {/* Hero Section */}
{/* Pattern Overlay */}
{/* Left Content */}
Next-Generation Global Infrastructure

Go Local,
Globally.

More than just cross-border sales—build true localized operational capabilities. We provide full-stack infrastructure for entity setup, local payments, tax compliance, fulfillment, and HR in 100+ countries.

Covering 100+ Countries
100% Compliance Guaranteed
{/* Right Visualization (Global Map & Floating Cards) */}
{/* Earth Image Visualization */}
{/* Inner shadow for 3D sphere effect */}
{/* Floating Cards */}
US Entity Setup

Delaware C-Corp Ready

EU Tax Compliance
VAT Filing Auto-Completed
Local Payments
€ 45,200 +12%
{/* Trusted Brands */}

Trusted by Innovative Global Enterprises

{/* Using text logos as placeholders for premium feel */}
ACME Corp
GlobalNet
Vertex
Nexus
Horizon
{/* Problem vs Solution */}

Bridging the Traditional Expansion Gap

From simple product exports to becoming a true multinational enterprise, you no longer need to build complex operations from scratch.

{/* The Old Way */}
The Traditional Way

Fragmented and High-Risk Patchwork Expansion

    {[ "Need to coordinate with law firms and accountants in dozens of countries", "Cross-border fund flows face constant compliance and regulatory risks", "Unable to support local payment methods preferred by consumers", "Cross-border labor contracts and local tax/benefits are extremely complex", "Takes 6-9 months on average to launch operations in a single new country" ].map((item, i) => (
  • {i+1}
    {item}
  • ))}
{/* The GOLDEN FLYING INC Way */}
GOLDEN FLYING INC Infrastructure

One Console to Command Global Local Business

    {[ "Standardized API & console to generate global legal entities in one click", "Integrated tier-1 bank networks for global clearing and local settlement", "Natively supports 150+ local payment methods to boost conversion rates", "Employer of Record (EOR) model for compliant global team management", "Shrinks time-to-market in new regions from months to mere days" ].map((item, i) => (
  • {item}
  • ))}
{/* Core Capabilities */}

Enterprise-Grade Globalization Engine

Abstracting tedious cross-border operations into standardized SaaS services, providing full-stack support from company incorporation to financial compliance.

View All Feature Docs
{[ { icon: , bg: "bg-indigo-50", title: "Global Entity Setup & Maintenance", desc: "Quickly register companies and open offshore accounts in 100+ jurisdictions, with automated annual filings and corporate secretary services." }, { icon: , bg: "bg-blue-50", title: "Local Payments & Acquiring", desc: "Integrate local payment methods like iDEAL, Pix, and Alipay to lower chargeback rates. Supports multi-currency pooling and FX hedging." }, { icon: , bg: "bg-emerald-50", title: "Tax & Accounting Compliance", desc: "Built-in global tax engine for real-time Sales Tax/VAT calculation, auto-generating localized financial reports for 100% audit compliance." }, { icon: , bg: "bg-amber-50", title: "DTC Storefront Infrastructure", desc: "High-performance localized digital storefront infrastructure for expanding brands, including localized pricing and multi-language checkout." }, { icon: , bg: "bg-purple-50", title: "Cross-Border & Local Fulfillment", desc: "Connect with top-tier global 3PL networks for smart inventory routing, ensuring a last-mile delivery experience comparable to domestic brands." }, { icon: , bg: "bg-rose-50", title: "Local HR & Payroll", desc: "Legally hire overseas talent via EOR, automating local social security, benefits compliance, and multi-currency payroll distribution." } ].map((feature, index) => (
{feature.icon}

{feature.title}

{feature.desc}

))}
{/* Process Timeline */}

Agile Deployment: 4 Steps to Global Operations

Skip months of legal and financial consulting. Rapidly expand your business footprint following our proven, standard pathways.

{/* Connecting Line */}
{[ { step: "01", title: "Select Target Markets", desc: "Choose the countries you want to enter in the console; the system auto-matches compliance requirements." }, { step: "02", title: "1-Click Infrastructure Setup", desc: "Submit basic info to auto-generate legal documents and spin up entity registration and payment accounts in parallel." }, { step: "03", title: "API Integration & Unification", desc: "Seamlessly integrate local checkout and tax calculations into your system via a unified GraphQL API." }, { step: "04", title: "Launch Local Operations", desc: "Hire local teams, collect payments in local currencies, and manage global performance from one console." } ].map((item, index) => (
{item.step}

{item.title}

{item.desc}

))}
{/* Dark Global Coverage Section */}
{/* Background glow effects */}

Our Infrastructure, Your Global Home Court

GOLDEN FLYING INC has established legitimate financial and operational pipelines across major economies, enabling you to achieve the highest level of global trust at the lowest cost.

{/* Metrics */}
{[ { label: "Supported Countries & Regions", value: "100+" }, { label: "Native Payment Methods", value: "150+" }, { label: "Annual Transaction Volume", value: "$5B+" }, { label: "System API Uptime", value: "99.99%" } ].map((metric, i) => (
{metric.value}
{metric.label}
))}
{/* Testimonials */}

Chosen by Industry Pioneers

{'★'.repeat(5)}

"Before switching to GOLDEN FLYING INC, our European entity structure and cross-border taxes consumed half of our CFO team's bandwidth. Now, everything is compliant, transparent, and automated. This is true enterprise-grade global infrastructure."

Sarah Chen

CFO, Top Consumer Electronics Brand

{'★'.repeat(5)}

"They didn't just provide a payment gateway; they solved an entire package of localization and compliance challenges. Using their unified interface, our local conversion rate in LATAM increased by 40% in a single month."

David Miller

VP of Engineering, Global SaaS Inc

{/* Final CTA */}

Ready to Conquer the Global Market as a Local?

Connect with our team of cross-border operations experts to tailor your global infrastructure deployment roadmap.

{/* Minimal Enterprise Footer */}
); }; export default App;