export default function Layout({ children }) { return ( <html lang="en"> <head></head> <body>{children}</body> </html> ) }