import Search from '@/components/search/search'; import SearchResult from '@/components/search/search-result'; import Text from '@/components/ui/text/text'; export type CategoryPageParams = { data: object | any; }; export default function CategoryPage({ data }: CategoryPageParams) { const category = data; const { title } = category; return (