fixes needed for building

This commit is contained in:
padreug 2025-02-03 00:44:04 +01:00
parent cf32f8ec8b
commit af7ed5bb03
3 changed files with 7 additions and 6 deletions

View file

@ -26,9 +26,11 @@ const categoryColors = {
restaurant: 'bg-orange-100 text-orange-800', restaurant: 'bg-orange-100 text-orange-800',
taxi: 'bg-yellow-100 text-yellow-800', taxi: 'bg-yellow-100 text-yellow-800',
lancha: 'bg-blue-100 text-blue-800', lancha: 'bg-blue-100 text-blue-800',
retail: 'bg-green-100 text-green-800', lodging: 'bg-purple-100 text-purple-800',
goods: 'bg-green-100 text-green-800',
services: 'bg-pink-100 text-pink-800',
other: 'bg-gray-100 text-gray-800' other: 'bg-gray-100 text-gray-800'
} } as const
const socials = { const socials = {
facebook: Facebook, facebook: Facebook,
@ -42,7 +44,6 @@ const socialColors = {
instagram: 'text-pink-600 hover:text-pink-700', instagram: 'text-pink-600 hover:text-pink-700',
twitter: 'text-blue-400 hover:text-blue-500', twitter: 'text-blue-400 hover:text-blue-500',
youtube: 'text-red-600 hover:text-red-700', youtube: 'text-red-600 hover:text-red-700',
tiktok: 'text-gray-800 hover:text-gray-900'
} }
</script> </script>

View file

@ -8,7 +8,7 @@ import {
AccordionTrigger, AccordionTrigger,
} from '@/components/ui/accordion' } from '@/components/ui/accordion'
const { t, locale } = useI18n() const { t } = useI18n()
const faqs = computed(() => [ const faqs = computed(() => [
{ {

View file

@ -1,7 +1,7 @@
export interface DirectoryItem { export interface DirectoryItem {
id: string id: string
name: string name: string
category: 'restaurant' | 'taxi' | 'lancha' | 'goods' | 'services' | 'lodging' | 'other' category: 'restaurant' | 'taxi' | 'lancha' | 'lodging' | 'goods' | 'services' | 'other'
local?: boolean local?: boolean
description?: string description?: string
url?: string url?: string