update
This commit is contained in:
@ -0,0 +1,21 @@
|
||||
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/government-policy" },
|
||||
];
|
||||
const Layout = ({ children }: { children: ReactNode }) => {
|
||||
return (
|
||||
<ArticleWithBreadcrumb breadcrumb={breadcrumb}>
|
||||
{children}
|
||||
</ArticleWithBreadcrumb>
|
||||
);
|
||||
};
|
||||
|
||||
export default Layout;
|
@ -0,0 +1,19 @@
|
||||
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>
|
||||
</ol>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Page;
|
Reference in New Issue
Block a user