'use client' import type { ElementType } from 'react' import slugify from 'slugify' type JokerCardProps = { name: string img: string h?: number } export function JokerCard({ name, img, h = 3 }: JokerCardProps) { const Heading = `h${h}` as ElementType return (