27 lines
603 B
TypeScript
27 lines
603 B
TypeScript
import { ReactNode } from "react";
|
|
import circle from "@/app/assets/circle.png";
|
|
import Image from "next/image";
|
|
import LeftNav from "@/app/components/LeftNav";
|
|
import ArticleLayout from "@/app/components/ArticleLayout";
|
|
|
|
const navLinks = [
|
|
{ title: "人才概况", href: "/" },
|
|
{ title: "人才概况", href: "/3" },
|
|
{ title: "人才概况", href: "/4" },
|
|
{ title: "人才概况", href: "/5" },
|
|
];
|
|
|
|
const Layout = ({
|
|
children,
|
|
params,
|
|
}: {
|
|
children: ReactNode;
|
|
params: {
|
|
articleId: string;
|
|
};
|
|
}) => {
|
|
return <ArticleLayout>{children}</ArticleLayout>;
|
|
};
|
|
|
|
export default Layout;
|