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/scientific-research-project-declaration",
|
||||
},
|
||||
];
|
||||
const Layout = ({ children }: { children: ReactNode }) => {
|
||||
return (
|
||||
<ArticleWithBreadcrumb breadcrumb={breadcrumb}>
|
||||
{children}
|
||||
</ArticleWithBreadcrumb>
|
||||
);
|
||||
};
|
||||
|
||||
export default Layout;
|
@ -0,0 +1,22 @@
|
||||
import ArticleHeading from "@/app/components/ArticleHeading";
|
||||
|
||||
const Page = () => {
|
||||
return (
|
||||
<>
|
||||
<ArticleHeading text={"知识产权服务"} />
|
||||
<p className={"text-base indent-8 my-1 text-center"}>
|
||||
知识产权服务内容:
|
||||
</p>
|
||||
<ol className={"list-decimal list-inside indent-8 text-center"}>
|
||||
<li>知识产权申报</li>
|
||||
<li>知识产权运营</li>
|
||||
<li>知识产权交易</li>
|
||||
<li>知识产权贷款</li>
|
||||
<li>知识产权布局</li>
|
||||
<li>知识产权维护</li>
|
||||
</ol>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Page;
|
Reference in New Issue
Block a user