Files
quantulr 73bc779168 init
2023-10-27 17:29:50 +08:00

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;