export const metadata = { title: "Blog", }; const Layout = ({ children }: { children: React.ReactNode }) => { return <>{children}; }; export default Layout;