export default function Layout({ children }) { return ( <html> <head> <title>My page</title> </head> <body>{children}</body> </html> ) }