import { connection } from 'next/server' import { ReactNode, Suspense } from 'react' export default function RootLayout({ children }: { children: ReactNode }) { return (

{children} ) } function Header() { return (
Home{' '}
) } async function Now() { await connection() return Date.now() }