import { User, Settings, LogOut, ChevronRight, Bell, Shield, HelpCircle, Moon, Sun } from "lucide-react"; import { useTheme } from "@/components/ThemeProvider"; import { motion } from "motion/react"; export default function Profile() { const { theme, setTheme } = useTheme(); return (

我的

{/* User Info Card */}

张三

高级销售 · 华东大区

12

本月商机

8

本月拓展

95

平均分

{/* Menu List */} {/* Logout */} 退出登录
); }