import Link from 'next/link' import { kebabCase } from '@/lib/utils' const Tag = ({ text }) => { return ( {text.split(' ').join('-')} ) } export default Tag