Demo Lab

Search navigation

Search navigation can stay URL-driven and server-rendered.

Clean URL links

Category and city stay in path segments, so filters are shareable and crawlable.

Active state

The active filter comes from the normalised URL state, not from local component state.

Reset link

Reset is a plain Link back to the base search route.

Pagination

The current page lives in searchParams as ?page=2 and is rendered on the server.

/en/search/en/search/music/en/search/music/london/en/search/music/london?page=2/en/search/music/london?q=jazz&page=2

Link or router.push?

Use Link for basic SEO filters. router.push belongs to interactive client flows such as debounced inputs or wizard-like UI.

Back to Demo Lab