"use client" import { useState } from "react" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Search, Filter, Download, Users, UserPlus, UserCheck, UserX } from "lucide-react" import { UserProfileOverview } from "@/components/user-profile/user-profile-overview" import { UserProfileSegments } from "@/components/user-profile/user-profile-segments" import { UserProfileTags } from "@/components/user-profile/user-profile-tags" import { UserProfileAnalytics } from "@/components/user-profile/user-profile-analytics" export default function UserProfilePage() { const [activeTab, setActiveTab] = useState("overview") const [searchQuery, setSearchQuery] = useState("") return (

用户画像分析

总用户数
24,521

较上月增长 8%

活跃用户
16,842

活跃率 68.7%

新增用户
1,254

较上月增长 12%

流失用户
342

流失率 1.4%

用户画像分析中心 多维度分析用户特征,构建精准用户画像,支持营销决策
画像概览 用户分群 标签体系 深度分析
setSearchQuery(e.target.value)} />
) }