import React from 'react'; import { Helmet } from 'react-helmet-async'; import { Link } from 'react-router-dom'; import { motion } from 'framer-motion'; import { Building2, Mail, Phone, MapPin, Shield, Clock, CheckCircle, ArrowRight, Star, Users, Globe } from 'lucide-react'; import { Button } from '@/components/ui/button'; const LandingPage = () => { const features = [ { icon: Building2, title: 'Premium Dubai Address', description: 'Get a prestigious business address in Dubai\'s prime locations for your company registration and correspondence.' }, { icon: Mail, title: 'Mail Forwarding', description: 'Receive, scan, and forward your mail digitally. Never miss important documents with our secure mail handling service.' }, { icon: Phone, title: 'Local Phone Number', description: 'Get a Dubai phone number with voicemail, call forwarding, and professional call handling services.' }, { icon: Shield, title: 'Legal Compliance', description: 'Fully compliant with UAE regulations. Perfect for business setup, bank account opening, and visa applications.' }, { icon: Clock, title: 'Instant Setup', description: 'Get your virtual office activated within 24 hours. Complete KYC verification and start using services immediately.' }, { icon: Globe, title: 'Global Access', description: 'Manage your Dubai office from anywhere in the world with our comprehensive online dashboard.' } ]; const testimonials = [ { name: 'Sarah Johnson', company: 'Tech Innovations LLC', content: 'Virtual Office Dubai made our UAE expansion seamless. The premium address and professional services exceeded our expectations.', rating: 5 }, { name: 'Ahmed Al-Rashid', company: 'Global Trading Co.', content: 'Excellent service and support. The mail forwarding and phone services are exactly what we needed for our Dubai operations.', rating: 5 }, { name: 'Maria Rodriguez', company: 'Consulting Partners', content: 'Professional, reliable, and cost-effective. Highly recommend for any business looking to establish presence in Dubai.', rating: 5 } ]; const stats = [ { number: '500+', label: 'Happy Clients' }, { number: '99.9%', label: 'Uptime' }, { number: '24/7', label: 'Support' }, { number: '5★', label: 'Rating' } ]; const siteUrl = "https://virtualofficesdubai.ae"; const title = "Virtual Office Dubai"; const description = "Virtual Office Dubai provides compliant business addresses with AI phone assistants and local office numbers, based in Dubai, UAE. Establish your presence today!"; const ogImageUrl = 'https://horizons-cdn.hostinger.com/b1db84ec-6e36-4e1a-8c05-742d1acfcdca/b1716431fa6c4c2d76549173e74e5352.jpg'; return ( <> {title}
{/* Hero Section */}

Virtual Office Dubai Virtual Office Address

Establish your business presence in Dubai with Virtual Office Dubai. Get a virtual office address, local phone number, phone answering & mail forwarding.

{stats.map((stat, index) => (
{stat.number}
{stat.label}
))}
Aerial view of Dubai's modern skyline featuring prominent skyscrapers at dusk, representing a prime business location.
Dubai, UAE
Instant Activation
Fully Compliant
{/* Features Section */}

Everything You Need for Business Success

Our comprehensive virtual office solutions provide all the tools and services you need to establish and grow your business in Dubai.

{features.map((feature, index) => { const Icon = feature.icon; return (

{feature.title}

{feature.description}

); })}
{/* Testimonials Section */}

Trusted by Businesses Worldwide

See what our clients say about our services

{testimonials.map((testimonial, index) => (
{[...Array(testimonial.rating)].map((_, i) => ( ))}

"{testimonial.content}"

{testimonial.name}

{testimonial.company}

))}
{/* CTA Section */}

Ready to Establish Your Dubai Presence?

Join hundreds of successful businesses. Get started with your virtual office today.

); }; export default LandingPage;