import { connection } from 'next/server' export default async function Layout({ children }) { await connection() return ( {children} ) }