// =============================================================================
// MOCK DATA - USER DATA
// =============================================================================
// Just fake data for testing. Nothing to learn here.
// =============================================================================
export const mockUserPreferences = {
userId: 'user-001',
dietaryRestrictions: ['vegetarian'],
favoriteCuisines: ['Italian', 'Japanese', 'Thai'],
priceRange: { min: 10, max: 50 },
};
export const mockUserLocation = {
address: '123 Peachtree Street',
city: 'Atlanta',
state: 'GA',
zipCode: '30309',
};
export const mockOrderHistory = [
{ restaurantName: 'Pizza Express', items: ['Margherita Pizza'], date: '2024-01-15', total: 28.98, service: 'doordash' },
{ restaurantName: 'Sushi World', items: ['Salmon Roll'], date: '2024-01-10', total: 24.97, service: 'ubereats' },
{ restaurantName: 'Thai Garden', items: ['Pad Thai'], date: '2024-01-05', total: 22.98, service: 'grubhub' },
];