import clsx from "clsx" import "../../../css/globals.css" import Navbar from "@/components/Navbar" import { Inter } from "next/font/google" import { Roboto_Mono } from "next/font/google" import Providers from "../../../providers" import { Sidebar } from "docs-ui" export const metadata = { title: "Medusa API Reference", description: "Check out Medusa's API reference", } const inter = Inter({ subsets: ["latin"], variable: "--font-inter", weight: ["400", "500"], }) const robotoMono = Roboto_Mono({ subsets: ["latin"], variable: "--font-roboto-mono", }) export default function RootLayout({ children, }: { children: React.ReactNode }) { return (