import { NextResponse } from 'next/server'; export async function GET() { const config = { paymentMethods: { wechat: { enabled: true, qrCode: "/images/wechat-pay.png", account: "卡若", websiteAppId: "wx432c93e275548671", websiteAppSecret: "25b7e7fdb7998e5107e242ebb6ddabd0", serviceAppId: "wx7c0dbf34ddba300d", serviceAppSecret: "f865ef18c43dfea6cbe3b1f1aebdb82e", mpVerifyCode: "SP8AfZJyAvprRORT", merchantId: "1318592501", apiKey: "wx3e31b068be59ddc131b068be59ddc2", groupQrCode: "/images/party-group-qr.png", }, alipay: { enabled: true, qrCode: "/images/alipay.png", account: "卡若", partnerId: "2088511801157159", securityKey: "lz6ey1h3kl9zqkgtjz3avb5gk37wzbrp", mobilePayEnabled: true, paymentInterface: "official_instant", }, usdt: { enabled: false, network: "TRC20", address: "", exchangeRate: 7.2 }, paypal: { enabled: false, email: "", exchangeRate: 7.2 } }, marketing: { partyGroup: { url: "https://soul.cn/party", liveCodeUrl: "https://soul.cn/party-live", qrCode: "/images/party-group-qr.png" }, banner: { text: "每日早上6-9点,Soul派对房不见不散", visible: true } }, authorInfo: { name: "卡若", description: "连续创业者,私域运营专家,每天早上6-9点在Soul派对房分享真实商业故事", liveTime: "06:00-09:00", platform: "Soul派对房" }, siteConfig: { siteName: "一场soul的创业实验", siteTitle: "一场soul的创业实验", siteDescription: "来自Soul派对房的真实商业故事", primaryColor: "#00CED1" }, system: { version: "1.0.0", maintenance: false } }; return NextResponse.json(config); }