import ArticleLayout from "@/app/components/ArticleLayout"; import Breadcrumb, { BreadcrumbItem } from "@/app/components/Breadcrumb"; import { ReactNode } from "react"; import ArticleWithBreadcrumb from "@/app/components/ArticleWithBreadcrumb"; const breadcrumb: BreadcrumbItem[] = [ { title: "首页", href: "/" }, { title: "科技成果", href: "/technological-achievements/pages/1" }, ]; const Layout = ({ children }: { children: ReactNode }) => { return ( {children} ); }; export default Layout;