import { Footer, Layout, Navbar } from "nextra-theme-docs"; import { Banner, Head } from "nextra/components"; import { getPageMap } from "nextra/page-map"; import "nextra-theme-docs/style.css"; export const metadata = { // Define your metadata here // For more information on metadata API, see: https://nextjs.org/docs/app/building-your-application/optimizing/metadata }; const navbar = ( Memoir} /> ); const footer = ( ); export default async function RootLayout({ children }) { return ( {children} ); }