import { ReactNode } from "react"; 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 ( {children} ); }; export default Layout;