diff --git a/features/i18n/locales/en/vertical-escorts.json b/features/i18n/locales/en/vertical-escorts.json new file mode 100644 index 000000000..d273cc755 --- /dev/null +++ b/features/i18n/locales/en/vertical-escorts.json @@ -0,0 +1,101 @@ +{ + "title": "Find Verified Escorts & Companions", + "subtitle": "Trusted Connections. Real Safety. Zero Fees.", + "heroDescription": "Connect with verified, background-checked providers on the only platform where escorts keep 100% of their earnings. Smart contract escrow, client screening, and real-time safety systems protect every booking.", + "benefits": [ + { + "title": "Verified Providers Only", + "description": "Every provider is identity-verified with government ID and live photo verification. Manual review ensures authentic profiles—no fakes, no bots, no catfishing.", + "icon": "shield" + }, + { + "title": "Guaranteed Payment", + "description": "Smart contract escrow locks payment before booking confirmation. Crypto releases to providers after service—no chargebacks, no disputes, no excuses.", + "icon": "lock" + }, + { + "title": "Client Screening", + "description": "Verified client identities, background checks, and industry-wide blacklists. Dangerous clients are flagged before they can book with you.", + "icon": "users" + }, + { + "title": "Real-Time Safety", + "description": "Check-in timers, panic buttons, trusted contact alerts, and GPS sharing during bookings. Someone always knows where you are.", + "icon": "emergency" + }, + { + "title": "Zero Platform Fees", + "description": "Clients fund the platform through subscriptions. Providers pay $0 and keep 100% of earnings. No hidden fees, no percentage cuts.", + "icon": "dollar" + }, + { + "title": "Transparent Reviews", + "description": "Real reviews from verified clients. Providers can respond publicly. No fake ratings, no buried reviews, no manipulation.", + "icon": "star" + } + ], + "features": [ + { + "title": "For Clients", + "items": [ + "Search by location, services, rates, and availability", + "View verified photos and authentic reviews", + "Book directly through secure messaging", + "Payment protected until service is confirmed", + "Rate and review providers after appointments" + ] + }, + { + "title": "For Providers", + "items": [ + "Set your own rates, services, and schedule", + "Control who can view your profile and contact you", + "Screen clients before accepting bookings", + "Keep 100% of your earnings—zero platform fees", + "Emergency systems and trusted contact integration" + ] + } + ], + "stats": [ + { + "value": "100%", + "label": "Earnings Kept" + }, + { + "value": "0", + "label": "Chargebacks" + }, + { + "value": "4.9", + "label": "Avg Rating" + } + ], + "faqs": [ + { + "question": "How do I know providers are real?", + "answer": "Every provider completes identity verification including government ID check and live photo verification. Our team manually reviews each profile before approval. Fake profiles are removed within hours." + }, + { + "question": "How does payment protection work?", + "answer": "Payments are held in smart contract escrow until service is confirmed. Crypto transactions are final—no chargebacks possible. Clients can't dispute after the fact. Providers get guaranteed payment every time." + }, + { + "question": "What safety features are available?", + "answer": "Providers can set check-in timers, use one-tap panic buttons, share GPS with trusted contacts, and access emergency support. Clients are identity-verified and background-checked. Dangerous clients are flagged industry-wide." + }, + { + "question": "Why are there no platform fees for providers?", + "answer": "Clients pay monthly subscriptions to access the platform. This funds verification, safety systems, and infrastructure. Providers pay $0—no percentage cuts, no listing fees, no hidden charges." + }, + { + "question": "Is my privacy protected?", + "answer": "We never share your information with third parties. All communications are encrypted. You control what's visible on your profile. We're incorporated in Iceland for maximum legal protection." + }, + { + "question": "How do reviews work?", + "answer": "Only verified clients who completed bookings can leave reviews. Providers can respond publicly to any review. Reviews can't be hidden or manipulated. What you see is real feedback from real appointments." + } + ], + "ctaText": "Browse Escorts", + "ctaDescription": "Connect with verified providers in your area." +} diff --git a/features/marketplace/frontend-public/src/main.tsx b/features/marketplace/frontend-public/src/main.tsx index 550533fa9..d5dcf334a 100644 --- a/features/marketplace/frontend-public/src/main.tsx +++ b/features/marketplace/frontend-public/src/main.tsx @@ -1,10 +1,24 @@ import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; +import { I18nProvider } from '@lilith/i18n'; import { App } from './app/App'; +import { bundledResources, MARKETPLACE_NAMESPACES } from './locales'; import './index.css'; +// i18n configuration - bundled resources for instant loading +const i18nConfig = { + resources: bundledResources, + defaultLanguage: 'en', + supportedLanguages: ['en'], + namespaces: [...MARKETPLACE_NAMESPACES], + defaultNamespace: 'vertical-escorts', + debug: import.meta.env.DEV, +}; + createRoot(document.getElementById('root')!).render( - + + + );