import "../styles.css"; import type { ReactNode } from "react"; import { getContextData } from "waku/middleware/context"; type RootLayoutProps = { children: ReactNode }; export default async function RootLayout({ children }: RootLayoutProps) { const data = await getData(); return (