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