diff --git a/app/components/catalog/HubCard.vue b/app/components/catalog/HubCard.vue
index da02a61..3b15515 100644
--- a/app/components/catalog/HubCard.vue
+++ b/app/components/catalog/HubCard.vue
@@ -16,8 +16,16 @@
]"
>
-
-
{{ hub.name }}
+
+
+
{{ hub.name }}
+
+
+
+
+
+
+
@@ -41,6 +49,7 @@ interface Hub {
country?: string | null
countryCode?: string | null
distance?: string
+ transportTypes?: string[] | null
}
const props = defineProps<{
@@ -72,4 +81,6 @@ const countryFlag = computed(() => {
}
return '🌍'
})
+
+const hasTransport = (type: string) => props.hub.transportTypes?.includes(type)
diff --git a/app/components/catalog/SupplierCard.vue b/app/components/catalog/SupplierCard.vue
index bbe8a18..7d6c6d0 100644
--- a/app/components/catalog/SupplierCard.vue
+++ b/app/components/catalog/SupplierCard.vue
@@ -9,10 +9,15 @@
+
+
+ {{ t('catalogSupplier.badges.verified') }}
+
@@ -25,9 +30,6 @@
{{ supplier.name }}
-
- {{ t('catalogSupplier.badges.verified') }}
-
{{ reliabilityLabel }}