"use client" import type React from "react" import { Bell, User } from "lucide-react" import { Button } from "@/components/ui/button" import AdminSidebar from "./components/AdminSidebar" export default function AdminLayout({ children }: { children: React.ReactNode }) { return (

运营端后台

{children}
) }