import "./globals.css"; import type { Metadata } from "next"; import { Inter } from "next/font/google"; import { MainNav } from "@/components/main-nav"; import { Toaster } from "@/components/ui/toaster"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Embedchain chat", description: "Embedchain is an Open Source RAG Framework that makes it easy to create and deploy AI apps", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (