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/intelligence-services",
|
||||
},
|
||||
];
|
||||
const Layout = ({ children }: { children: ReactNode }) => {
|
||||
return (
|
||||
<ArticleWithBreadcrumb breadcrumb={breadcrumb}>
|
||||
{children}
|
||||
</ArticleWithBreadcrumb>
|
||||
);
|
||||
};
|
||||
|
||||
export default Layout;
|
@ -0,0 +1,26 @@
|
||||
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>
|
||||
<li>帮助企业进行专利布局</li>
|
||||
<li>帮助政府制定产业规划方案</li>
|
||||
<li>帮助企业对接技术需求,科技成果</li>
|
||||
</ol>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Page;
|
Reference in New Issue
Block a user