export default function Layout({ children }) { return ( <div> <h1>Dynamic with Layout</h1> {children} </div> ) }