import React from "react"; import { sendGAEvent } from "@next/third-parties/google"; //i18n import { useTranslation } from "@/app/i18n/client"; // BuyVipButton 组件 function BuyVipButton({ lng }: { lng: string }) { //i18n const { t } = useTranslation(lng); // 这是购买VIP的目标URL const targetUrl = "https://store.paperai.life"; return ( ); } export default BuyVipButton;