import { ReactNode } from "react"; import ArticleLayout from "@/app/_components/ArticleLayout"; import Breadcrumb, { BreadcrumbItem } from "@/app/_components/Breadcrumb"; import ArticleWithBreadcrumb from "@/app/_components/ArticleWithBreadcrumb"; const breadcrumb: BreadcrumbItem[] = [ { title: "首页", href: "/" }, { title: "科研进展", href: "/research-progress/pages/1" }, ]; const Layout = ({ children }: { children: ReactNode }) => { return ( {children} ); }; export default Layout;