import React, { ReactNode } from "react"; import Breadcrumb from "@/app/components/Breadcrumb"; const breadcrumb = [ { href: "/", title: "首页" }, { href: "/organization/overview", title: "机构设置" }, { href: "/organization/joint-laboratory", title: "研究中心联合实验室" }, ]; const Layout = ({ children }: { children: ReactNode }) => { return (