export default function Layout({ children }) { return ( <> <h1>Default Layout</h1> {children} <h1>Default Footer Test</h1> </> ) }