import ArticleLayout from "@/app/components/ArticleLayout"; import React, { ReactNode } from "react"; import Breadcrumb from "@/app/components/Breadcrumb"; const breadcrumb = [ { href: "/", title: "首页" }, { href: "/contact-us", title: "联系我们" }, ]; const Layout = ({ children }: { children: ReactNode }) => { return (
{children}
); }; export default Layout;