search page without from-to

This commit is contained in:
2025-05-23 14:49:12 +03:00
parent f3ca53d907
commit fa70a96c27
9 changed files with 142 additions and 24 deletions

View File

@@ -226,3 +226,17 @@ export interface PricingCardProps {
isActive?: boolean
onPlanChange?: () => void
}
export interface SearchResponse {
count: number
results: SearchCardProps[]
}
export interface SearchPageProps {
params: {
category: string
}
searchParams: {
[key: string]: string | string[] | undefined
}
}