"use client"
import { ArrowLeft, Crown, Check, Star, Zap, Shield, Gift, Sparkles, Trophy, Users } from "lucide-react"
import { Button } from "@/components/ui/button"
import Link from "next/link"
import { useState } from "react"
export default function VipPage() {
const [selectedPlan, setSelectedPlan] = useState("monthly")
const plans = [
{
id: "daily",
name: "体验版",
duration: "1天",
price: 9.9,
originalPrice: 19.9,
discount: "限时5折",
popular: false,
badge: "试用",
color: "from-blue-400 to-blue-500",
},
{
id: "monthly",
name: "月度会员",
duration: "1个月",
price: 68,
originalPrice: 98,
discount: "7折优惠",
popular: true,
badge: "推荐",
color: "from-purple-400 to-purple-500",
},
{
id: "quarterly",
name: "季度会员",
duration: "3个月",
price: 168,
originalPrice: 294,
discount: "超值4.3折",
popular: false,
badge: "超值",
color: "from-pink-400 to-pink-500",
},
{
id: "yearly",
name: "年度会员",
duration: "1年",
price: 588,
originalPrice: 1176,
discount: "超值5折",
popular: false,
badge: "最划算",
color: "from-orange-400 to-orange-500",
},
]
const privileges = [
{
icon: ,
title: "专属身份标识",
desc: "VIP专属标识,彰显尊贵身份",
color: "from-yellow-400 to-orange-500",
},
{
icon: ,
title: "优先预约权",
desc: "热门场馆优先预约,不再排队等待",
color: "from-blue-400 to-blue-500",
},
{
icon: ,
title: "专属折扣",
desc: "场馆预订享受VIP专属折扣优惠",
color: "from-green-400 to-green-500",
},
{
icon: ,
title: "免费取消",
desc: "预约后可免费取消,无违约金",
color: "from-purple-400 to-purple-500",
},
{
icon: ,
title: "专属客服",
desc: "7x24小时VIP专属客服服务",
color: "from-pink-400 to-pink-500",
},
{
icon: ,
title: "高清回放",
desc: "无限制观看高清比赛回放视频",
color: "from-indigo-400 to-indigo-500",
},
]
const stats = [
{ label: "活跃用户", value: "50万+", icon: },
{ label: "满意度", value: "98%", icon: },
{ label: "场馆覆盖", value: "1000+", icon: },
]
return (
{/* Header with premium gradient */}
{/* VIP Banner with enhanced styling */}
{/* Background decorations */}
LIMO VIP会员
开启专属运动体验
{/* Stats */}
{stats.map((stat, index) => (
{stat.icon}
{stat.value}
{stat.label}
))}
{/* Pricing Plans with premium styling */}
{plans.map((plan) => (
setSelectedPlan(plan.id)}
className={`relative border-2 rounded-3xl p-5 cursor-pointer transition-all duration-300 ${
selectedPlan === plan.id
? "border-transparent bg-gradient-to-br from-[#05C7C7]/10 to-[#04B5B5]/10 shadow-xl scale-[1.02]"
: "border-gray-200/50 bg-white/50 hover:border-gray-300/50 hover:shadow-lg"
} ${plan.popular ? "ring-2 ring-yellow-400/50" : ""}`}
>
{plan.popular && (
)}
{plan.name}
{plan.duration}
¥{plan.price}
¥{plan.originalPrice}
{plan.discount}
{selectedPlan === plan.id && (
)}
))}
{/* VIP Privileges with enhanced styling */}
VIP专属特权
{privileges.map((privilege, index) => (
{privilege.icon}
{privilege.title}
{privilege.desc}
))}
{/* Testimonials */}
用户好评
张
张先生
{[1, 2, 3, 4, 5].map((i) => (
))}
"VIP服务真的很棒,预约场馆再也不用排队了!"
李
李女士
{[1, 2, 3, 4, 5].map((i) => (
))}
"专属客服响应很快,解决问题很及时,值得推荐!"
{/* Purchase Section with enhanced styling */}
选择套餐:
{plans.find((p) => p.id === selectedPlan)?.name}
¥{plans.find((p) => p.id === selectedPlan)?.price}
开通即表示同意《VIP会员服务协议》
{/* Bottom Spacing */}
)
}