21 lines
691 B
TypeScript
21 lines
691 B
TypeScript
![]() |
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 (
|
||
|
<ArticleLayout navigations={[]} leftNavTitle={"科研进展"}>
|
||
|
<ArticleWithBreadcrumb breadcrumb={breadcrumb}>
|
||
|
{children}
|
||
|
</ArticleWithBreadcrumb>
|
||
|
</ArticleLayout>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default Layout;
|