import React, { Suspense } from 'react' import type { Metadata } from 'next' export const metadata: Metadata = { title: 'PPR Bot SSG Bypass Test', description: 'Test bot static generation bypass with PPR and cache components', } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }