Files
webapp/app/pages/index.vue
Ruslan Bakiev d837b9b90b
Some checks failed
Build Docker Image / build (push) Has been cancelled
Fix unified catalog: add map, tokens inside input, redirect from main
- Main page (/) now redirects to /catalog
- Catalog page uses CatalogPage component with map on the right
- Search bar tokens are now inside the input field (like Gmail)
- Removed separate grid components, using cards directly
- Added missing translations (refine, noResults)
2026-01-22 11:06:58 +07:00

14 lines
229 B
Vue

<template>
<div></div>
</template>
<script setup>
// Redirect to unified catalog
definePageMeta({
layout: 'topnav'
})
const localePath = useLocalePath()
await navigateTo(localePath('/catalog'), { replace: true })
</script>