"use client"; import Image from "next/image"; import Link from "next/link"; import TertiaryButton from "../tertiaryButton"; export interface CategoryCardProps { id: string; name: string; description: string; image: string; href: string; } export const CategoryCard = ({ id, name, image, href }: CategoryCardProps) => { return ( {name}

{name}

); };