'use client'; import { DotLottieReact } from '@lottiefiles/dotlottie-react'; import GlobalMapLottie from '@workspace/ui/lotties/global-map.json'; import { motion } from 'framer-motion'; import { useTranslations } from 'next-intl'; export function GlobalMap() { const t = useTranslations('index'); return ( {t('global_map_itle')} {t('global_map_description')} ); }