"use client"; import { useTranslation } from "@/i18n/navigation"; import { getThemeConfig } from "@/config"; export default function ShopCard() { const { t } = useTranslation("shop"); const config = getThemeConfig(); const shopUrl = config.services?.shopUrl; if (!shopUrl) return null; return (
); }