update
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
import ArticleWithBreadcrumb from "@/app/components/ArticleWithBreadcrumb";
|
||||
import { ReactNode } from "react";
|
||||
import { BreadcrumbItem } from "@/app/components/Breadcrumb";
|
||||
|
||||
const breadcrumb: BreadcrumbItem[] = [
|
||||
{ title: "首页", href: "/" },
|
||||
{
|
||||
title: "成果转化服务",
|
||||
href: "/achievements-transformation/government-policy",
|
||||
},
|
||||
{
|
||||
title: "科技评估",
|
||||
href: "/achievements-transformation/technology-assessment",
|
||||
},
|
||||
];
|
||||
const Layout = ({ children }: { children: ReactNode }) => {
|
||||
return (
|
||||
<ArticleWithBreadcrumb breadcrumb={breadcrumb}>
|
||||
{children}
|
||||
</ArticleWithBreadcrumb>
|
||||
);
|
||||
};
|
||||
|
||||
export default Layout;
|
@ -0,0 +1,17 @@
|
||||
import ArticleHeading from "@/app/components/ArticleHeading";
|
||||
|
||||
const Page = () => {
|
||||
return (
|
||||
<>
|
||||
<ArticleHeading text={"科技评估"} />
|
||||
<ol className={"list-decimal list-inside indent-8"}>
|
||||
<li>科技成果的技术水平,经济效益和价值的评估</li>
|
||||
<li>产业和地区的科技进步和绩效</li>
|
||||
<li>科技机构的综合实力和运营水平</li>
|
||||
<li>科技政策的研究和制定效果评价</li>
|
||||
</ol>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Page;
|
Reference in New Issue
Block a user