import { clx } from '@/helpers/utils' import { FC } from 'react' import { useGetBlogCategories } from '../hooks/useBlogsData' import Image from 'next/image' import { useBlogStore } from '../store/BlogStore' const Category: FC = () => { const { data } = useGetBlogCategories() const { selectedCategory, setSelectedCategory } = useBlogStore() return (