update
This commit is contained in:
5
app/(introduce)/talents/academician/page.tsx
Normal file
5
app/(introduce)/talents/academician/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
const Page = () => {
|
||||
return <div>院士</div>;
|
||||
};
|
||||
|
||||
export default Page;
|
19
app/(introduce)/talents/layout.tsx
Normal file
19
app/(introduce)/talents/layout.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
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;
|
5
app/(introduce)/talents/researcher/page.tsx
Normal file
5
app/(introduce)/talents/researcher/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
const Page = () => {
|
||||
return <div>研究员</div>;
|
||||
};
|
||||
|
||||
export default Page;
|
5
app/(introduce)/talents/vice-researcher/page.tsx
Normal file
5
app/(introduce)/talents/vice-researcher/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
const Page = () => {
|
||||
return <div>副研究员</div>;
|
||||
};
|
||||
|
||||
export default Page;
|
Reference in New Issue
Block a user