import Link from 'next/link'; import { Badge } from '@/components/ui/badge'; interface PillLinkProps { text: string; link: string; isNew?: boolean; newText?: string; } const PillLink: React.FC = ({ text, link, isNew = false, newText = 'NEW' }) => { return ( {(isNew || newText) && ( {newText} )} {text} ); }; export default PillLink;