All checks were successful
Build Docker Image / build (push) Successful in 3m10s
- Move search input with tokens into center of header - Remove tabs (Search, Catalog, Orders, Seller) - Icons (bot, globe, user) remain on right side - Chips for filter selection below input - Delete GlobalSearchBar.vue and UnifiedSearchBar.vue - Share searchQuery via useState across composable calls - Simplify main page to just show hero
14 lines
260 B
Vue
14 lines
260 B
Vue
<template>
|
|
<div class="flex-1 flex items-center justify-center py-8">
|
|
<CatalogHero @start-select="startSelect" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: 'topnav'
|
|
})
|
|
|
|
const { startSelect } = useCatalogSearch()
|
|
</script>
|