import BLOG from '@/blog.config' import { useGlobal } from '@/lib/global' import Link from 'next/link' export default function ArticleCopyright ({ author, url }) { if (!BLOG.widget?.showCopyRight) { return <> } const { locale } = useGlobal() return
{locale.COMMON.COPYRIGHT}
}