import React, { ReactNode } from "react"; import Breadcrumb from "@/app/components/Breadcrumb"; const breadcrumb = [ { href: "/", title: "首页" }, { href: "/organization/overview", title: "机构设置" }, { href: "/organization/func-dep/general-office", title: "职能部门" }, { href: "/organization/func-dep/personnel", title: "人事处" }, ]; const Layout = ({ children }: { children: ReactNode }) => { return (