{children}
import type { Metadata } from "next"; import { Inter } from "next/font/google"; import { ChatSidebar } from "@/components/chat-sidebar"; import { SidebarTrigger } from "@/components/ui/sidebar"; import { Menu } from "lucide-react"; import { Providers } from "./providers"; import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Scira MCP Chat", description: "Scira MCP Chat is a chat interface for interacting with MCP servers.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (