// Sample data for testing const sampleExperiences = [ { "title": "Test Position 1", "company": "Test Company A", "location": "Test Location", "start_date": "2023-01-01", "end_date": null, // Present "tags": ["Technical", "Business"], "descriptions": [ { "text": "Description 1", "tags": ["Technical"] }, { "text": "Description 2", "tags": ["Business"] } ] }, { "title": "Test Position Without Tags", "company": "Test Company NoTags", "location": "Test Location", "start_date": "2022-01-01", "end_date": null, // Present "descriptions": [ { "text": "Description without tags", "tags": [] }, { "text": "Another description without tags" } ] },