const getApiBaseUrl = () => { return 'https://ec2-16-113-57-127.ap-south-2.compute.amazonaws.com'; }; export const CONFIG = { apiBaseUrl: getApiBaseUrl(), companyName: 'Global Artisans Hub', logoLetter: 'A', supportEmail: 'support@globalartisanshub.com', supportPhone: '+1 (800) 555-0199', address: '1775 Artisan Ridge Rd, Craftsville, CA 90210', hero: { title: 'Sell Globally. Celebrate Craft.', subtitle: 'Join the premier marketplace for artisans and reach millions of conscious customers worldwide.', image: 'https://images.unsplash.com/photo-1513519245088-0e12902e5a38?auto=format&fit=crop&q=80&w=800' }, features: [ { icon: '🌍', title: 'Expand Your Reach', description: 'Globalize your marketplace for artisans and reach millions of conscious customers.' }, { icon: '🛠️', title: 'Easy Inventory Tools', description: 'Dashboard marketplace to manage and update listings with ease.' }, { icon: '🛡️', title: 'Secure Payments', description: 'Secure payments and reliable payout processing directly to your bank account.' } ], featuredArtisan: { name: 'Naomi K.', role: 'Master Weaver', quote: '"Joining the Global Artisans Hub has transformed our community. We went from selling at local weekend fairs to serving buyers worldwide, preserving our traditional craft."', avatar: 'https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&q=80&w=300' }, about: { missionTitle: 'Our Mission', missionDescription: 'We aim to empower artisan communities worldwide, providing a premium, transparent, and direct channel to conscious consumers globally.', team: [ { name: 'Sunder R.', role: 'Founder & CEO', avatar: 'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&q=80&w=150' }, { name: 'Sarayu N.', role: 'Head of Artisan Partnerships', avatar: 'https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&q=80&w=150' }, { name: 'John C.', role: 'Operations Lead', avatar: 'https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&q=80&w=150' }, { name: 'Elena P.', role: 'Tech Lead', avatar: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?auto=format&fit=crop&q=80&w=150' } ] }, // --- Mock Dashboard Data --- dashboardData: { filters: { year: { totalSales: 45280.00, totalEarned: 38488.00, stockDetails: 342, returnedItems: 12, chartValues: [30, 45, 35, 60, 75, 55, 80, 65, 90, 70, 85, 95] // Monthly values }, week: { totalSales: 1240.00, totalEarned: 1054.00, stockDetails: 342, returnedItems: 1, chartValues: [40, 60, 50, 70, 45, 80, 90] // Daily values }, day: { totalSales: 210.00, totalEarned: 178.50, stockDetails: 342, returnedItems: 0, chartValues: [10, 15, 20, 25, 35, 45, 30, 20, 10] // Hourly intervals }, custom: { totalSales: 5820.00, totalEarned: 4947.00, stockDetails: 342, returnedItems: 3, chartValues: [50, 40, 65, 55, 75, 85, 60, 70] // Range intervals } }, initialProducts: [ { id: '1', title: 'Handwoven Indigo Shawl', category: 'Apparel', price: 85.00, stock: 45, sku: 'SHAWL-IND-01', image: 'https://images.unsplash.com/photo-1544022613-e87ca75a784a?auto=format&fit=crop&q=80&w=100' }, { id: '2', title: 'Terracotta Clay Pot Set', category: 'Home Decor', price: 42.00, stock: 24, sku: 'POT-TER-02', image: 'https://images.unsplash.com/photo-1612196808214-b8e1d6145a8c?auto=format&fit=crop&q=80&w=100' }, { id: '3', title: 'Brass Elephant Figurine', category: 'Sculptures', price: 120.00, stock: 12, sku: 'FIG-ELE-03', image: 'https://images.unsplash.com/photo-1590736969955-71cc94801759?auto=format&fit=crop&q=80&w=100' } ], initialOrders: [ { id: 'ORD-8492', date: '2026-08-07', item: 'Handwoven Indigo Shawl', quantity: 1, customer: 'Alice Vance', total: 85.00, status: 'Ready to Ship', carrier: 'DHL Express', tracking: 'DHL-9284102', eta: '2026-08-10' }, { id: 'ORD-8488', date: '2026-08-06', item: 'Terracotta Clay Pot Set', quantity: 2, customer: 'David Miller', total: 84.00, status: 'Shipped', carrier: 'FedEx Ground', tracking: 'FDX-5829104', eta: '2026-08-09' }, { id: 'ORD-8471', date: '2026-08-05', item: 'Brass Elephant Figurine', quantity: 1, customer: 'Sarah Connor', total: 120.00, status: 'Delivered', carrier: 'Local Express', tracking: 'LOC-1294801', eta: '2026-08-07' } ], initialReturns: [ { id: 'RET-019', orderId: 'ORD-8411', customer: 'Lillian G.', item: 'Handwoven Indigo Shawl', reason: 'Slightly different shade than pictured', status: 'Pending Approval', image: 'https://images.unsplash.com/photo-1544022613-e87ca75a784a?auto=format&fit=crop&q=80&w=100', returningTracking: 'DHL-RET-9031' }, { id: 'RET-018', orderId: 'ORD-8390', customer: 'Robert H.', item: 'Terracotta Clay Pot Set', reason: 'Damaged in transit', status: 'In Transit', image: 'https://images.unsplash.com/photo-1612196808214-b8e1d6145a8c?auto=format&fit=crop&q=80&w=100', returningTracking: 'FDX-RET-2940' } ] } } export function apiFetch(url: string, options: RequestInit = {}): Promise { const token = localStorage.getItem('access_token'); const headers = { ...options.headers, ...(token ? { 'Authorization': `Bearer ${token}` } : {}) }; return fetch(url, { ...options, headers, credentials: 'include' }); }