export interface TestEvent { title: string; description: string; startDate: string; startTime: string; endDate: string; endTime: string; venue?: string; organizer?: string; capacity?: number; price?: number; } export const TEST_EVENTS: { [key: string]: TestEvent } = { basicEvent: { title: 'HVAC Fundamentals Training', description: 'Learn the basics of HVAC systems in this comprehensive training session.', startDate: '01/20/2025', startTime: '09:00 AM', endDate: '01/20/2025', endTime: '05:00 PM', capacity: 30, price: 299 }, advancedEvent: { title: 'Advanced HVAC Troubleshooting', description: 'Master advanced troubleshooting techniques for modern HVAC systems.', startDate: '6/15/2025', startTime: '09:00:00', endDate: '6/16/2025', endTime: '17:00:00', capacity: 20, price: 599 }, virtualEvent: { title: 'Virtual HVAC Certification Prep', description: 'Online certification preparation course for HVAC professionals.', startDate: '7/1/2025', startTime: '10:00:00', endDate: '7/1/2025', endTime: '16:00:00', capacity: 100, price: 199 }, freeEvent: { title: 'HVAC Industry Updates Webinar', description: 'Free webinar covering the latest industry trends and regulations.', startDate: '5/15/2025', startTime: '14:00:00', endDate: '5/15/2025', endTime: '15:30:00', capacity: 500, price: 0 } };