import ArticleLayout from "@/app/_components/ArticleLayout"; import { ReactNode } from "react"; import { navigations } from "@/app/(introduce)/talents/config"; const Layout = ({ children }: { children: ReactNode }) => { return ( {children} ); }; export default Layout;