import { NavLink, Outlet } from 'react-router-dom'; import { useAuth } from '../lib/auth'; const opsLinks = [ { to: '/', label: '审核队列', end: true }, { to: '/reports', label: '举报处理' }, { to: '/featured', label: '精选管理' }, { to: '/creators', label: '创作者' }, { to: '/analytics', label: '数据看板' }, ]; export function OpsLayout() { const { user } = useAuth(); return (

Plaza 运营后台

内容审核、精选与数据概览

); }