'use client';
import { useState } from 'react';
import { ProfileOverview } from './profile-overview';
import { ProfileSheet } from './profile-sheet';
import { ProfileProvider } from './profile-provider';
import { ProfileSidebar } from './profile-sidebar';
import { ProfileElite } from './profile-elite';
// 根据activeItem渲染对应的内容组件
function renderContent(activeItem: string) {
switch (activeItem) {
case 'overview':
return