21 lines
685 B
TypeScript
21 lines
685 B
TypeScript
import { ReactNode } from "react";
|
|
import ArticleLayout from "@/app/_components/ArticleLayout";
|
|
import Breadcrumb, { BreadcrumbItem } from "@/app/_components/Breadcrumb";
|
|
import ArticleWithBreadcrumb from "@/app/_components/ArticleWithBreadcrumb";
|
|
|
|
const breadcrumb: BreadcrumbItem[] = [
|
|
{ title: "首页", href: "/" },
|
|
{ title: "研究院招聘", href: "/recruitment/pages/1" },
|
|
];
|
|
const Layout = ({ children }: { children: ReactNode }) => {
|
|
return (
|
|
<ArticleLayout navigations={[]} leftNavTitle={"研究院招聘"}>
|
|
<ArticleWithBreadcrumb breadcrumb={breadcrumb}>
|
|
{children}
|
|
</ArticleWithBreadcrumb>
|
|
</ArticleLayout>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|