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 banner = (
Qwen Code 0.5.0 is released 🎉
);
const navbar = (
Qwen Code}
// ... Your additional navbar options
/>
);
const footer = ;
export default async function RootLayout({ children }) {
return (
{/* Your additional tags should be passed as `children` of `` element */}
{children}
);
}