"use client"; import { Card } from "@/components/ui/Card"; import { Button } from "@/components/ui/Button"; const menuItems = [ { icon: "⚙️", label: "设置", href: "#" }, { icon: "🔔", label: "通知", href: "#" }, { icon: "❓", label: "帮助与反馈", href: "#" }, { icon: "📄", label: "关于我们", href: "#" }, ]; export default function ProfilePage() { return (
{/* User Info */}
😊

用户昵称

138****1234

{/* Stats */}

0

收藏

0

订单

0

足迹

{/* Menu */} {menuItems.map((item, i) => ( {item.icon} {item.label} ))}
); }