initial layout with navbar and pages

This commit is contained in:
padreug 2025-02-02 18:01:38 +01:00
parent 0c6844cbef
commit aa18a42b4b
9 changed files with 329 additions and 46 deletions

View file

@ -1,13 +1,17 @@
export interface DirectoryItem {
id: string
name: string
category: 'restaurant' | 'taxi' | 'ferry' | 'retail' | 'other'
description: string
category: 'restaurant' | 'taxi' | 'lancha' | 'retail' | 'other'
description?: string
address?: string
town?: string
mapsUrl?: string
contact?: string
contactType?: ('whatsapp' | 'telegram')[]
lightning?: string
coordinates?: {
lat: number
lng: number
}
imageUrl?: string
}
}