import ArticleWithBreadcrumb from "@/app/_components/ArticleWithBreadcrumb"; import { ReactNode } from "react"; import { BreadcrumbItem } from "@/app/_components/Breadcrumb"; const breadcrumb: BreadcrumbItem[] = [ { title: "首页", href: "/" }, { title: "成果转化服务", href: "/achievements-transformation/government-policy", }, { title: "情报服务", href: "/achievements-transformation/intelligence-services", }, ]; const Layout = ({ children }: { children: ReactNode }) => { return ( {children} ); }; export default Layout;