import Link from 'next/link' import { kebabCase } from 'pliny/utils/kebabCase' interface Props { text: string } const Tag = ({ text }: Props) => { return ( {text.split(' ').join('-')} ) } export default Tag