Files

24 lines
898 B
TypeScript
Raw Normal View History

2023-10-30 17:29:35 +08:00
import ArticleLayout from "@/app/components/ArticleLayout";
import { ReactNode } from "react";
const navigations = [
{ title: "机构简介", href: "/organization/overview" },
{ title: "院长致辞", href: "/organization/dean-speech" },
{ title: "科技产业发展委员会", href: "/organization/stidc" },
{ title: "组织架构", href: "/organization/architecture" },
{ title: "职能部门", href: "/organization/func-dep/general-office" },
{ title: "研究中心联合实验室", href: "/organization/joint-laboratory" },
{ title: "合作企业", href: "/organization/joint-venture" },
{ title: "科研平台", href: "/organization/research-platform" },
];
const Layout = ({ children }: { children: ReactNode }) => {
return (
<ArticleLayout leftNavTitle={"机构设置"} navigations={navigations}>
{children}
</ArticleLayout>
);
};
export default Layout;