first commit
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
export const EXPERIENCE_MODES = [
|
||||
{
|
||||
id: 'balanced',
|
||||
label: 'Balanced',
|
||||
description: 'A good mix of everything',
|
||||
icon: '⚖️',
|
||||
},
|
||||
{
|
||||
id: 'cultural',
|
||||
label: 'Cultural Explorer',
|
||||
description: 'Museums, history, landmarks, heritage',
|
||||
icon: '🏛️',
|
||||
},
|
||||
{
|
||||
id: 'foodie',
|
||||
label: 'Foodie',
|
||||
description: 'Restaurants, local eats, markets, cafes',
|
||||
icon: '🍽️',
|
||||
},
|
||||
{
|
||||
id: 'adventurous',
|
||||
label: 'Adventurous / Bold',
|
||||
description: 'Unique spots, active, hidden gems, evening fun',
|
||||
icon: '🧭',
|
||||
},
|
||||
{
|
||||
id: 'relaxed',
|
||||
label: 'Relaxed Local',
|
||||
description: 'Slower pace, parks, free time, fewer stops',
|
||||
icon: '🌳',
|
||||
},
|
||||
{
|
||||
id: 'nightlife',
|
||||
label: 'Nightlife & Vibes',
|
||||
description: 'Bars, concerts, theater, late experiences',
|
||||
icon: '🌙',
|
||||
},
|
||||
] as const;
|
||||
|
||||
export type ExperienceMode = typeof EXPERIENCE_MODES[number]['id'];
|
||||
Reference in New Issue
Block a user