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