feat: open contact modal from vendor card

This commit is contained in:
Zotov Ivan Yuryevich
2026-04-21 22:19:29 +03:00
parent c9a199da91
commit 83330e9fd7
9 changed files with 57 additions and 12 deletions

View File

@@ -76,7 +76,7 @@ const vendors = (category.vendors?.filter(v => v != null) ?? []).map(vendor => (
<Layout>
<div class="min-h-screen bg-white w-full overflow-x-hidden">
<Header client:load contacts={contacts} solutions={solutionCategories} services={serviceCategories} />
<CategoryView client:load badge={badge} title={title} description={description} vendors={vendors} />
<CategoryView client:load badge={badge} title={title} description={description} vendors={vendors} contacts={contacts} />
<Footer client:load contacts={contacts} solutionCategories={solutionCategories} />
</div>
</Layout>