fixes needed for building
This commit is contained in:
parent
cf32f8ec8b
commit
af7ed5bb03
3 changed files with 7 additions and 6 deletions
|
|
@ -26,9 +26,11 @@ const categoryColors = {
|
|||
restaurant: 'bg-orange-100 text-orange-800',
|
||||
taxi: 'bg-yellow-100 text-yellow-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'
|
||||
}
|
||||
} as const
|
||||
|
||||
const socials = {
|
||||
facebook: Facebook,
|
||||
|
|
@ -42,7 +44,6 @@ const socialColors = {
|
|||
instagram: 'text-pink-600 hover:text-pink-700',
|
||||
twitter: 'text-blue-400 hover:text-blue-500',
|
||||
youtube: 'text-red-600 hover:text-red-700',
|
||||
tiktok: 'text-gray-800 hover:text-gray-900'
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ import {
|
|||
AccordionTrigger,
|
||||
} from '@/components/ui/accordion'
|
||||
|
||||
const { t, locale } = useI18n()
|
||||
const { t } = useI18n()
|
||||
|
||||
const faqs = computed(() => [
|
||||
{
|
||||
|
|
@ -45,4 +45,4 @@ const faqs = computed(() => [
|
|||
</Accordion>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
export interface DirectoryItem {
|
||||
id: string
|
||||
name: string
|
||||
category: 'restaurant' | 'taxi' | 'lancha' | 'goods' | 'services' | 'lodging' | 'other'
|
||||
category: 'restaurant' | 'taxi' | 'lancha' | 'lodging' | 'goods' | 'services' | 'other'
|
||||
local?: boolean
|
||||
description?: string
|
||||
url?: string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue