20 lines
572 B
TypeScript
20 lines
572 B
TypeScript
import ArticleLayout from "@/app/components/ArticleLayout";
|
|
import { ReactNode } from "react";
|
|
|
|
const navigations = [
|
|
{ title: "人才概览", href: "/talents/overview" },
|
|
{ title: "两院院士", href: "/talents/academician" },
|
|
{ title: "研究员", href: "/talents/researcher" },
|
|
{ title: "副研究员", href: "/talents/vice-researcher" },
|
|
];
|
|
|
|
const Layout = ({ children }: { children: ReactNode }) => {
|
|
return (
|
|
<ArticleLayout leftNavTitle={"人才队伍"} navigations={navigations}>
|
|
{children}
|
|
</ArticleLayout>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|