Files
webapp/app/pages/index.vue
Ruslan Bakiev 584a423e86
All checks were successful
Build Docker Image / build (push) Successful in 3m10s
Redesign header - move search bar into main navigation
- 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
2026-01-22 11:22:44 +07:00

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>