Some checks failed
Build Docker Image / build (push) Has been cancelled
- 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)
14 lines
229 B
Vue
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>
|