feat(BOOK-53): Added component for SEO filters and support filter switching

Approved-by: Chuma Mcphoy (We Ahead)
This commit is contained in:
Erik Tiekstra
2025-09-19 08:26:41 +00:00
parent 0e30a2d218
commit 7c92a8fc9a
30 changed files with 339 additions and 111 deletions

View File

@@ -11,7 +11,8 @@ import type { ReadonlyURLSearchParams } from "next/navigation"
interface Actions {
updateActiveFiltersAndSort: (
filterSlugs: string[],
sort: string | null
sort: string | null,
filterSlugFromUrl: string | null
) => void
setPendingSort: (sort: HotelSortOption) => void
togglePendingFilter: (filter: HotelFilter) => void