import React from 'react' import Link from 'next/link' import styles from '../card/style.module.css' export default function CategoryCard({category}) { const count = category.items ? category.items.length : category.item_count return (

{category.name}

{category.description}
) }