This commit is contained in:
quantulr
2023-11-01 17:27:06 +08:00
parent 7e465da9d2
commit 1a22404f19
87 changed files with 1604 additions and 196 deletions

View File

@ -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/industry-docking" },
];
const Layout = ({ children }: { children: ReactNode }) => {
return (
<ArticleWithBreadcrumb breadcrumb={breadcrumb}>
{children}
</ArticleWithBreadcrumb>
);
};
export default Layout;