import React from 'react'; import { Language, NavItem } from './types'; import { MemberInfo } from '@qite/tide-client'; export const language: Language = { code: 'en-GB', label: 'English' }; export const languages: Language[] = [ { code: 'en-GB', label: 'English' }, { code: 'nl-BE', label: 'Nederlands' }, { code: 'de-DE', label: 'Deutsch' } ]; export const topLinks = [{ label: 'Help', href: '/help' }]; export const navItems: NavItem[] = [ { label: 'Home', href: '/', items: [] }, { label: 'Destinations', href: '/destinations', items: [], categories: [ { label: 'Asia', items: [ { label: 'Abu Dhabi', href: '/destinations/abu-dhabi' }, { label: 'Almaty', href: '/destinations/almaty' }, { label: 'Bali', href: '/destinations/bali' }, { label: 'Bangkok', href: '/destinations/bangkok' }, { label: 'Boracay', href: '/destinations/boracay' }, { label: 'Busan', href: '/destinations/busan' }, { label: 'Chiang Mai', href: '/destinations/chiang-mai' }, { label: 'Colombo', href: '/destinations/colombo' }, { label: 'Da Nang', href: '/destinations/da-nang' }, { label: 'Doha', href: '/destinations/doha' }, { label: 'Dubai', href: '/destinations/dubai' }, { label: 'Fukuoka', href: '/destinations/fukuoka' }, { label: 'Galle', href: '/destinations/galle' }, { label: 'Goa', href: '/destinations/goa' }, { label: 'Hanoi', href: '/destinations/hanoi' }, { label: 'Hiroshima', href: '/destinations/hiroshima' }, { label: 'Ho Chi Minh City', href: '/destinations/ho-chi-minh-city' }, { label: 'Hong Kong', href: '/destinations/hong-kong' }, { label: 'Jaipur', href: '/destinations/jaipur' }, { label: 'Jeju', href: '/destinations/jeju' }, { label: 'Kathmandu', href: '/destinations/kathmandu' }, { label: 'Kuala Lumpur', href: '/destinations/kuala-lumpur' }, { label: 'Kyoto', href: '/destinations/kyoto' }, { label: 'Langkawi', href: '/destinations/langkawi' }, { label: 'Macau', href: '/destinations/macau' }, { label: 'Maldives', href: '/destinations/maldives' }, { label: 'Manila', href: '/destinations/manila' }, { label: 'Nha Trang', href: '/destinations/nha-trang' }, { label: 'Okinawa', href: '/destinations/okinawa' }, { label: 'Osaka', href: '/destinations/osaka' }, { label: 'Penang', href: '/destinations/penang' }, { label: 'Phuket', href: '/destinations/phuket' }, { label: 'Sapporo', href: '/destinations/sapporo' }, { label: 'Seoul', href: '/destinations/seoul' }, { label: 'Siem Reap', href: '/destinations/siem-reap' }, { label: 'Singapore', href: '/destinations/singapore' }, { label: 'Taipei', href: '/destinations/taipei' }, { label: 'Tokyo', href: '/destinations/tokyo' }, { label: 'Ubud', href: '/destinations/ubud' }, { label: 'Yangon', href: '/destinations/yangon' } ] }, { label: 'Europe', items: [ { label: 'Paris', href: '/destinations/paris' }, { label: 'Rome', href: '/destinations/rome' }, { label: 'Barcelona', href: '/destinations/barcelona' } ] }, { label: 'Africa', items: [ { label: 'Marrakech', href: '/destinations/marrakech' }, { label: 'Cape Town', href: '/destinations/cape-town' } ] }, { label: 'Latin America', items: [ { label: 'CancĂșn', href: '/destinations/cancun' }, { label: 'Rio de Janeiro', href: '/destinations/rio' } ] } ] }, { label: 'Activities', href: '/activities', items: [ { label: 'Excursions', href: '/activities/excursions' }, { label: 'City tours', href: '/activities/city-tours' }, { label: 'Adventure', href: '/activities/adventure' }, { label: 'Wellness', href: '/activities/wellness' } ], categories: [] }, { label: 'About Us', href: '/about', items: [] }, { label: 'Contact', href: '/contact', items: [] } ]; export const TideLogo = () => ( ); export const placeholderMember: MemberInfo = { id: 31, companyId: 13, companyName: 'Tidesoftware', name: 'John Doe', email: 'info@qite.be', language: 'nl-BE', agentId: 31, addressId: 803, addressName: 'John Doe', addressLogo: '' };