diff --git a/src/pages/Directory.vue b/src/pages/Directory.vue index 6217771..b26ea23 100644 --- a/src/pages/Directory.vue +++ b/src/pages/Directory.vue @@ -27,19 +27,28 @@ const mockItems: DirectoryItem[] = [ }, { id: '3', - name: 'Bitcoin Lake Lancha', + name: 'Bitcoin Lake Lancha (fake)', category: 'lancha', address: 'Pier 21, Harbor Front', contact: '+1 234-567-8902' }, { id: '4', - name: 'Eagle\'s Nest', - category: 'restaurant', + name: 'Tor\'s Drums', + category: 'goods', town: 'San Marcos', - social: { - facebook: 'https://www.facebook.com/eaglesnestatitlan' - } + contact: '+502 4900 1279', + contactType: ['whatsapp'], + lightning: 'tor@atitlan.io' + }, + { + id: '5', + name: 'Jade Maya', + category: 'goods', + local: true, + town: 'San Marcos', + mapsUrl: 'https://maps.app.goo.gl/kZiKdM2FFAw1TQMN8', + lightning: 'osman@atitlan.io', }, { id: '6', @@ -114,15 +123,6 @@ const mockItems: DirectoryItem[] = [ town: 'San Marcos', mapsUrl: 'https://www.google.com/maps/place/Hotel+Casa+Maya' }, - { - id: '14', - name: 'Floresta Atitlan', - category: 'goods', - town: 'San Marcos', - social: { - facebook: 'https://www.facebook.com/florestatitlan' - } - }, { id: '15', name: 'Artesanias San Marcos La Laguna', diff --git a/src/types/directory.ts b/src/types/directory.ts index 61dba3a..d700623 100644 --- a/src/types/directory.ts +++ b/src/types/directory.ts @@ -1,7 +1,7 @@ export interface DirectoryItem { id: string name: string - category: 'restaurant' | 'taxi' | 'lancha' | 'retail' | 'other' + category: 'restaurant' | 'taxi' | 'lancha' | 'goods' | 'services' | 'lodging' | 'other' local?: boolean description?: string url?: string