import Link from 'next/link'
import { siteConfig } from '@/lib/config'
const SmartLink = ({ href, children, ...rest }) => {
const LINK = siteConfig('LINK')
const isExternal = href.startsWith('http') && !href.startsWith(LINK)
if (isExternal) {
return (
{children}
)
}
return (
{children}
)
}
export default SmartLink