'use client'; import useGlobalStore from '@/config/use-global'; import { useTranslations } from 'next-intl'; import Image from 'next/image'; import Link from 'next/link'; export default function FooterCopyright() { const { common } = useGlobalStore(); const { site } = common; const t = useTranslations('auth'); return ( ); }