"use client" import Image from "next/image" import { useStore } from "@/lib/store" export function PartyGroupSection() { const { settings, getLiveQRCodeUrl } = useStore() const handleJoin = () => { const url = getLiveQRCodeUrl("party-group") if (url) { window.open(url, "_blank") } } return (

每天 {settings.authorInfo?.liveTime || "06:00-09:00"} · 免费分享

{/* QR Code - smaller */}
派对群二维码

扫码加入派对群

长按识别二维码

) }