import type { RouteObject } from 'react-router'; import AppLayout from './appLayout'; import Home from './pages/Home'; import NotFound from './pages/NotFound'; import { Search as GlobalSearch, config } from "./features/search"; export const routes: RouteObject[] = [ { path: "/", element: , children: [ { index: true, element: , handle: { showInNavigation: true, label: 'Home' } }, { path: "search", element: ( ), handle: { showInNavigation: true, label: "Search" } }, { path: '*', element: } ] } ];